: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);
}

* {
  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 {
  min-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: 22px 36px;
  position: sticky;
  top: 0;
  z-index: 10;
  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;
  }

    .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;
}

.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;
}

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;
}

.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;
}


@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;
  }
}



  /*  */


  /* ********************************************************************************************************************************************************************************************** */

@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;
    }
  }

  @media (max-width: 1024px) {
    .site-header {
      min-height: 92px;
      padding: 14px 18px;
    }

    .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;
    }
  }

  @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%;
      }
  }

  @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;
    }
  }

@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;
  }
}
























/* ******************************************************************************************************************************************************************************* */
: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
  }
}
/* ******************************************************************************************************************************************************************************* */


