:root {
  --has-green: #0b7a3d;
  --has-green-dark: #0a6b36;
  --has-cream: #fdfbe7;
  --has-red: #dc2626;
  --has-red-dark: #b91c1c;
  --has-navy: #0f1f3d;
  --has-orange: #c2410c;
  --has-amber-bg: #fff2dd;
  --has-gold: #f4d35e;
  --has-text: #1c1c1c;
}

body {
  font-family: 'Inter', 'Noto Sans Devanagari', sans-serif;
  color: var(--has-text);
  background: var(--has-cream);
  margin: 0;
}

/* ---- Ticker ---- */
.has-ticker-wrap {
  background: var(--has-green);
  overflow: hidden;
  white-space: nowrap;
  padding: 7px 0;
}
.has-ticker {
  display: inline-block;
  white-space: nowrap;
  color: #ffffff;
  font-weight: 600;
  font-size: 11.5px;
  animation: has-scroll 26s linear infinite;
  padding-left: 100%;
}
.has-ticker .has-dot { margin: 0 10px; opacity: 0.7; }
@keyframes has-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.has-ticker-wrap:hover .has-ticker { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .has-ticker { animation: none; padding-left: 0; }
}
@media (min-width: 576px) {
  .has-ticker { font-size: 14px; }
  .has-ticker .has-dot { margin: 0 14px; }
  .has-ticker-wrap { padding: 9px 0; }
}

/* ---- Notice bar ---- */
.has-notice {
  background: var(--has-cream);
  padding: 8px 12px;
  text-align: center;
  border-bottom: 1px solid #ece5c3;
}
.has-notice p {
  color: var(--has-navy);
  font-weight: 700;
  font-size: 11.5px;
  line-height: 1.4;
}
@media (min-width: 576px) {
  .has-notice { padding: 12px 16px; }
  .has-notice p { font-size: 15px; }
}

/* ---- Title bar ---- */
.has-titlebar {
  background: var(--has-green-dark);
  padding: 12px 12px;
  text-align: center;
}
.has-titlebar h1 {
  color: #ffffff;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.01em;
  line-height: 1.35;
}
@media (min-width: 576px) {
  .has-titlebar {padding: 12px 12px;}
  .has-titlebar h1 { font-size: 20px; }
}
@media (min-width: 992px) {
  .has-titlebar h1 {font-size: 20px;letter-spacing: 0.3px;}
}

/* ================= NAV ================= */
.has-nav {
  background: var(--has-cream);
  position: sticky;
  top: 0;
  z-index: 30;
  padding-top: 4px;
  padding-bottom: 4px;
  border-bottom: 1px solid #ece5c3;
}

/* custom flex layout: logo -> links -> actions, reflows on mobile */
.has-nav-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  row-gap: 10px;
}

.has-logo {
  order: 1;
  text-decoration: none;
}
.has-logo-text {
  display: none;
  font-weight: 800;
  font-size: 15px;
  color: var(--has-navy);
  letter-spacing: 0.01em;
}
@media (min-width: 768px) {
  .has-logo-text { display: inline-block; }
}

.has-nav-links {
  order: 3;
  width: 100%;
}
@media (min-width: 992px) {
  .has-nav-links { order: 2; width: auto; }
}

.has-nav-actions {
  order: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 992px) {
  .has-nav-actions { order: 3; }
}

.has-nav .nav-link {
  color: var(--has-navy);
  font-weight: 600;
  font-size: 15px;
}
.has-nav .nav-link:hover,
.has-nav .nav-link:focus {
  color: var(--has-red);
}

/* ---- Custom animated toggler (turns into a cross) ---- */
.has-toggler {
  position: relative;
  width: 26px;
  height: 20px;
  border: none;
  background: transparent;
  padding: 0;
  flex-shrink: 0;
}
.has-toggler:focus { box-shadow: none; outline: none; }
.has-toggler-bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: var(--has-navy);
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}
.has-toggler-bar-top { top: 0; }
.has-toggler-bar-mid { top: 8.5px; }
.has-toggler-bar-bottom { top: 17px; }

.has-toggler:not(.collapsed) .has-toggler-bar-top {
  top: 8.5px;
  transform: rotate(45deg);
}
.has-toggler:not(.collapsed) .has-toggler-bar-mid {
  opacity: 0;
}
.has-toggler:not(.collapsed) .has-toggler-bar-bottom {
  top: 8.5px;
  transform: rotate(-45deg);
}

@media (min-width: 992px) {
  .has-toggler { display: none; }
}

/* ---- Buttons: red, blinking ---- */
@keyframes has-blink-kf {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}
.has-blink { animation: has-blink-kf 1.6s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) {
  .has-blink { animation: none; }
}

.has-btn-primary {
  display: inline-block;
  background: var(--has-red);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.02em;
  padding: 9px 14px;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(220,38,38,0.35);
  white-space: nowrap;
}
.has-btn-primary:hover { background: var(--has-red-dark); color: #fff; }

.has-btn-outline {
  display: inline-block;
  background: #ffffff;
  color: var(--has-red) !important;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 20px;
  border: 2px solid var(--has-red);
  border-radius: 4px;
  text-decoration: none;
}

@media (min-width: 576px) {
  .has-btn-primary { font-size: 13px; padding: 11px 20px; }
  .has-btn-outline {font-size: 16px;padding: 10px 22px;}
}
@media (min-width: 992px) {
  .has-btn-primary {font-size: 14px;padding: 11px 20px;}
}

/* ================= HERO / CAROUSEL ================= */
.has-hero { background: var(--has-cream); }

/* Fixed height container so slide transitions never shift page layout */
.has-carousel {
  position: relative;
  overflow: hidden;
  background: #d8d2b0;
  height: 260px;
}
@media (min-width: 992px) {
  .has-carousel { height: 560px; }
}

.has-carousel-inner,
.has-carousel .carousel-item {
  height: 100%;
}

.has-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.has-tag {
  top: 10px; left: 10px;
  z-index: 5;
  background: var(--has-navy);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 5px 12px;
  border-radius: 3px;
}
@media (min-width: 576px) {
  .has-tag { font-size: 14px; padding: 7px 16px; top: 22px; left: 22px; }
}

/* Approved stamp */
.has-seal {
  bottom: 10px; left: 10px;
  z-index: 5;
  width: 64px; height: 64px;
}
@media (min-width: 576px) {
  .has-seal { width: 92px; height: 92px; bottom: 22px; left: 22px; }
}
.has-seal-inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  border: 3px solid var(--has-red);
  outline: 1px dashed var(--has-red);
  outline-offset: 3px;
  background: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-14deg);
}
.has-seal-inner span {
  font-weight: 800;
  font-size: 9px;
  color: var(--has-red);
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.2;
}
@media (min-width: 576px) {
  .has-seal-inner span { font-size: 13px; }
}

/* prev/next arrows */
.has-arrow {
  width: 32px;
  height: 32px;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  background: rgba(15,31,61,0.55);
  border-radius: 50%;
  opacity: 0.85;
  z-index: 6;
}
.has-arrow:hover { opacity: 1; background: rgba(15,31,61,0.8); }
.has-arrow.carousel-control-prev { left: 10px; }
.has-arrow.carousel-control-next { right: 10px; }
.has-arrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #ffffff;
}
@media (min-width: 576px) {
  .has-arrow { width: 40px; height: 40px; }
  .has-arrow.carousel-control-prev { left: 16px; }
  .has-arrow.carousel-control-next { right: 16px; }
}

.has-indicators { margin-bottom: 10px; }
.has-indicators [data-bs-target] {
  width: 8px; height: 8px;
  border-radius: 50%;
  background-color: #ffffff;
  opacity: 0.55;
  border: none;
}
.has-indicators .active { opacity: 1; }

/* ---- Content panel ---- */
.has-panel { background: var(--has-cream); }

.has-panel-title {
  font-weight: 800;
  font-size: 20px;
  color: var(--has-navy);
}
@media (min-width: 576px) { .has-panel-title { font-size: 27px; } }

.has-panel-title-sm { font-size: 15px; }
@media (min-width: 576px) { .has-panel-title-sm {font-size: 21px;} }

.has-panel-sub {
  font-weight: 700;
  font-size: 12.5px;
  color: #1c1c1c;
}
@media (min-width: 576px) { .has-panel-sub { font-size: 15px; } }

.has-panel-highlight {
  font-weight: 600;
  font-size: 12.5px;
  color: var(--has-orange);
  line-height: 1.45;
}
@media (min-width: 576px) { .has-panel-highlight { font-size: 15px; } }

.has-body {
  font-size: 12px;
  font-weight: 500;
  color: #1c1c1c;
}
@media (min-width: 576px) { .has-body { font-size: 14.5px; } }

/* highlighted callout boxes for the key selling points */
.has-highlight-box {
  background: var(--has-amber-bg);
  border-left: 4px solid var(--has-red);
  border-radius: 4px;
  padding: 8px 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  width: 100%;
}
@media (min-width: 576px) {
  .has-highlight-box {padding: 7px 14px;}
}

/* ---- Footer strip ---- */
.has-footstrip {
  background: var(--has-gold);
  text-align: center;
  padding: 8px 12px;
}
.has-footstrip p {
  color: var(--has-red-dark);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.01em;
}
@media (min-width: 576px) {
  .has-footstrip { padding: 11px 16px; }
  .has-footstrip p { font-size: 14px; }
}
.has-logo-img {
  height: 34px;
  width: auto;
  display: block;
}
@media (min-width: 576px) {
  .has-logo-img {height: 52px;}
}
/* ---- About Us ---- */
.has-about {
  background: #ffffff;
  padding: 40px 0;
}
.has-about-title {
  font-weight: 800;
  font-size: 22px;
  color: var(--has-navy);
  margin-bottom: 8px;
}
.has-about-underline {
  display: block;
  width: 50px;
  height: 3px;
  background: var(--has-red);
  margin-bottom: 20px;
}
.has-about-text {
  font-size: 13.5px;
  line-height: 1.75;
  color: #333333;
  text-align: justify;
  margin-bottom: 16px;
}
.has-about-stat {
  max-width: 645px;
  background: var(--has-amber-bg);
  border: 1px solid var(--has-red);
  border-radius: 6px;
  padding: 14px 20px;
  letter-spacing: 0.3px;
  font-weight: 800;
  font-size: 15px;
  color: var(--has-red-dark);
  margin-top: 10px;
}

@media (min-width: 576px) {
  .has-about { padding: 60px 0; }
  .has-about-title { font-size: 28px; }
  .has-about-text { font-size: 15px; text-align: left; }
  .has-about-stat {font-size: 18px;padding: 12px 24px;}
}
/* ---- Key dates strip (full width, 3 columns) ---- */
.has-dates {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.has-dates-col {
  padding: 16px 20px;
  text-align: center;
}
.has-dates-start {background: #253a8f;}
.has-dates-last  { background: var(--has-green); }
.has-dates-alloc { background: var(--has-red); }

.has-dates-title {
  color: #ffffff;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.01em;
}
.has-dates-sub {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  font-size: 12.5px;
}

@media (min-width: 768px) {
  .has-dates { flex-direction: row; }
  .has-dates-col { flex: 1; padding: 22px 16px; }
  .has-dates-title { font-size: 20px; }
  .has-dates-sub { font-size: 15px; }
}
/* ---- Payment Plan tables ---- */
.has-payment {background: var(--has-cream);padding: 10px 0;}
.has-payment-inner { max-width: 100%; }

.has-table-card {margin-bottom: 14px;}
.has-table-card:last-child { margin-bottom: 0; }

.has-table-title {
  background: #253a8f;
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
  text-align: center;
  padding: 10px 12px;
}

.has-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: #ffffff;
}

.has-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  font-size: 12px;
}
.has-table th {
  background: #253a8f;
  color: #ffffff;
  font-weight: 700;
  padding: 10px 12px;
  font-size: 14px;
  text-align: center;
  white-space: nowrap;
  border: 1px solid #dcdcdc;
}
.has-table td {
  padding: 5px 9px;
  text-align: center;
  font-size: 13px;
  border: 1px solid #e5e0c4;
  white-space: nowrap;
  color: #1c1c1c;
}

.has-table-note {
  font-size: 11px;
  color: #555;
  padding: 6px 4px 0;
}

.has-btn-mini {
  display: inline-block;
  background: var(--has-red);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 10.5px;
  padding: 6px 10px;
  border-radius: 3px;
  text-decoration: none;
  white-space: nowrap;
}
.has-btn-mini:hover { background: var(--has-red-dark); color: #fff; }

@media (min-width: 768px) {
  .has-table { font-size: 14px; }
  .has-table-title {font-size: 17px;letter-spacing: 0.2px;padding: 8px 12px;}
  .has-table-note { font-size: 12.5px; }
  .has-btn-mini {font-size: 10.5px;padding: 5px 8px;}
}
/* ---- Location Advantages (teal, full-bleed) ---- */
:root {
  --has-teal: #0f6b64;
}

.has-location { background: var(--has-teal); width: 100%; }

.has-location-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 20px 16px;
}
.has-tab-btn {
  background: transparent;
  border: 2px solid var(--has-gold);
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  padding: 9px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.has-tab-btn.active {
  background: var(--has-gold);
  color: var(--has-navy);
}
.has-tab-btn:hover:not(.active) {
  background: rgba(244,211,94,0.15);
}

.has-location-panel { display: none; }
.has-location-panel.active { display: block; }

.has-location-img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}
@media (min-width: 992px) {
  .has-location-img { min-height: 480px; }
}

.has-location-content {
  background: var(--has-teal);
  padding: 28px 20px 40px;
}
@media (min-width: 992px) {
  .has-location-content { padding: 48px 56px; display: flex; flex-direction: column; justify-content: center; }
}

.has-location-heading {
  color: #ffffff;
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 18px;
}
@media (min-width: 576px) {
  .has-location-heading { font-size: 28px; }
}

.has-location-list { list-style: none; padding: 0; margin: 0; }
.has-location-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 14px;
  font-size: 13px;
  line-height: 1.55;
  color: #f2f2f2;
}
.has-location-list li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--has-gold);
  font-weight: 800;
  font-size: 16px;
}
@media (min-width: 576px) {
  .has-location-list li { font-size: 15px; }
}
/* ---- Site Layout ---- */
.has-sitelayout { background: #ffffff; padding: 40px 0; }

.has-sitelayout-title {
  color: #4a4a4a;
  font-weight: 800;
  font-size: 24px;
  margin-bottom: 22px;
}

.has-layout-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.has-layout-tab-btn {
  background: #ffffff;
  border: 2px solid var(--has-gold);
  color: var(--has-navy);
  font-weight: 700;
  font-size: 13px;
  padding: 9px 26px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.has-layout-tab-btn.active {
  background: var(--has-gold);
  border-color: var(--has-gold);
  color: var(--has-navy);
}
.has-layout-tab-btn:hover:not(.active) {
  background: rgba(244,211,94,0.15);
}

.has-layout-panel { display: none; text-align: center; }
.has-layout-panel.active { display: block; }

.has-layout-img-link { display: inline-block; }
.has-layout-img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  border: 1px solid #e5ddc0;
  background: var(--has-amber-bg);
  padding: 8px;
  cursor: zoom-in;
}

@media (min-width: 576px) {
  .has-sitelayout { padding: 60px 0; }
  .has-sitelayout-title { font-size: 30px; }
  .has-layout-tab-btn { font-size: 14.5px; padding: 10px 30px; }
  .has-layout-img { padding: 14px; }
}
/* ---- Project Amenities ---- */
.has-amenities { background: #ffffff; padding: 40px 0; }

.has-amenities-title {
  color: #4a4a4a;
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 26px;
}

.has-amenity-card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.has-amenity-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.has-amenity-img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  display: block;
}

.has-amenity-label {
  text-align: center;
  font-weight: 700;
  font-size: 11.5px;
  color: #1c1c1c;
  padding: 10px 6px;
  border-top: 1px solid #eaeaea;
}

@media (min-width: 576px) {
  .has-amenities { padding: 60px 0; }
  .has-amenities-title { font-size: 30px; }
  .has-amenity-img { height: 170px; }
  .has-amenity-label { font-size: 14px; padding: 14px 10px; }
}
/* ---- Contact Us ---- */
.has-contact { background: #f5f5f5; padding: 40px 0; }

.has-contact-title {
  color: #4a4a4a;
  font-weight: 800;
  font-size: 22px;
}

.has-info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 16px 18px;
  margin-bottom: 16px;
}

.has-info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e9e9e9;
  color: var(--has-navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.has-info-heading {
  font-weight: 800;
  font-size: 15px;
  color: #1c1c1c;
}
.has-info-text {
  font-size: 12.5px;
  color: #555555;
  line-height: 1.5;
}

.has-contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.has-form-input {
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 13px;
  font-family: inherit;
  color: #1c1c1c;
  background: #ffffff;
}
.has-form-input:focus {
  outline: none;
  border-color: var(--has-green);
  box-shadow: 0 0 0 3px rgba(11,122,61,0.12);
}
.has-form-textarea {resize: vertical;min-height: 100px;}

.has-btn-send {
  align-self: flex-start;
  background: var(--has-green);
  color: #ffffff;
  font-weight: 700;
  font-size: 13.5px;
  border: none;
  border-radius: 4px;
  padding: 11px 26px;
  cursor: pointer;
}
.has-btn-send:hover { background: var(--has-green-dark); }

@media (min-width: 576px) {
  .has-contact { padding: 60px 0; }
  .has-contact-title { font-size: 30px; }
  .has-info-heading { font-size: 17px; }
  .has-info-text { font-size: 13.5px; }
  .has-form-input {font-size: 13.5px;padding: 11px 16px;}
}
/* ---- Footer ---- */
.has-footer { background: #253a8f; padding: 36px 0 18px; }
.has-footer-inner { max-width: 900px; }

.has-footer-heading {
  color: #ffffff;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 18px;
}

.has-footer-banks {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.has-bank-logo {
  height: 34px;
  width: auto;
  background: #ffffff;
  padding: 4px 8px;
  border-radius: 3px;
}

.has-footer-links {
  color: #ffffff;
  font-size: 12px;
  margin-bottom: 20px;
}
.has-footer-links a {
  color: #ffffff;
  text-decoration: none;
}
.has-footer-links a:hover { text-decoration: underline; }
.has-footer-links span { margin: 0 8px; opacity: 0.6; }

.has-footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin: 0 0 16px;
}

.has-footer-copy {
  color: rgba(255,255,255,0.85);
  font-size: 11.5px;
}

@media (min-width: 576px) {
    
  .has-footer { padding: 48px 0 24px; }
  .has-footer-heading { font-size: 19px; }
  .has-bank-logo { height: 44px; }
  .has-footer-links { font-size: 14px; }
  .has-footer-copy { font-size: 13px; }
}

/* ---- Fixed elements: RERA seal + call button (whole site) ---- */
.has-fixed-seal {
  position: fixed;
  bottom: 14px;
  left: 14px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  /*border-radius: 50%;
  border: 3px solid var(--has-red);
  outline: 1px dashed var(--has-red);
  outline-offset: 3px;
  background: rgba(255,255,255,0.9);*/
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-14deg);
  pointer-events: none;
}
.has-fixed-seal span {
  font-weight: 800;
  font-size: 9px;
  color: var(--has-red);
  letter-spacing: 0.03em;
  text-align: center;
}

.has-fixed-call {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 1000;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--has-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  animation: has-call-pulse 1.8s ease-in-out infinite;
}
@keyframes has-call-pulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(0,0,0,0.3), 0 0 0 0 rgba(11,122,61,0.5); }
  50% { box-shadow: 0 4px 12px rgba(0,0,0,0.3), 0 0 0 8px rgba(11,122,61,0); }
}

@media (max-width: 575.98px) {
    .has-btn-primary
    {
        font-size: 10px!important;
    }
    .srx-check
    {
        font-size: 10px!important;
        margin-bottom: 10px!important;
    }
    .has-table td
    {
        padding: 4px 5px!important;
        font-size: 13px!important;
    }
  .has-fixed-seal { width: 48px; height: 48px; bottom: 10px; left: 10px; }
  .has-fixed-seal span { font-size: 7px; }
  .has-fixed-call { width: 46px; height: 46px; bottom: 12px; right: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .has-fixed-call { animation: none; }
}
.has-fixed-seal {
  position: fixed;
  bottom: 14px;
  left: 14px;
  z-index: 1000;
  width: 70px;
  pointer-events: none;
}
.has-fixed-seal-img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 575.98px) {
    .srx-submit
    {
        font-size: 14px!important;
    }
    .has-table th
    {
        font-size: 12px;
    }
  .has-fixed-seal { width: 54px; bottom: 10px; left: 10px; }
}
/* Fixed nav on scroll */
.has-nav.has-nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  animation: has-nav-slide-down 0.3s ease;
}

@keyframes has-nav-slide-down {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

/* spacer to prevent content jump when nav becomes fixed */
.has-nav-spacer {
  display: none;
  height: 0;
}
.has-nav-spacer.has-nav-spacer-active {
  display: block;
}
/* ---- Legal / policy pages (Privacy, Refund, Terms) ---- */
.has-legal-banner {
  background: #253a8f;
  padding: 26px 0;
  text-align: center;
}
.has-legal-banner h1 {
  color: #ffffff;
  font-weight: 800;
  font-size: 20px;
  margin: 0;
}
.has-legal-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  margin: 6px 0 0;
}

.has-legal-content { background: #ffffff; padding: 34px 0 50px; }
.has-legal-inner { max-width: 850px; }

.has-legal-content h2 {
  color: var(--has-navy);
  font-weight: 800;
  font-size: 17px;
  margin: 30px 0 12px;
  padding-left: 12px;
  border-left: 4px solid var(--has-red);
}
.has-legal-content h2:first-child { margin-top: 0; }

.has-legal-content p {
  font-size: 13px;
  line-height: 1.75;
  color: #333333;
  margin-bottom: 14px;
  text-align: justify;
}

.has-legal-content ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 14px;
}
.has-legal-content ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.6;
  color: #333333;
}
.has-legal-content ul li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--has-green);
  font-weight: 800;
}

.has-legal-content a { color: var(--has-red); font-weight: 600; }
.has-legal-content strong { color: #1c1c1c; }

@media (min-width: 576px) {
  .has-legal-banner { padding: 36px 0; }
  .has-legal-banner h1 { font-size: 28px; }
  .has-legal-content { padding: 50px 0 70px; }
  .has-legal-content h2 { font-size: 21px; }
  .has-legal-content p, .has-legal-content ul li { font-size: 15px; }
}
/* ---- Registration page (srx- prefix) ---- */
.srx-section { background: var(--has-cream); padding: 30px 0 50px; }
.srx-inner { max-width: 800px; }

.srx-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  padding: 20px 16px;
}

.srx-block {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px dashed #e5e0c4;
}
.srx-block:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.srx-heading {
  font-weight: 800;
  font-size: 15px;
  color: var(--has-navy);
  margin-bottom: 6px;
  padding-left: 10px;
  border-left: 4px solid var(--has-red);
}
.srx-sub {
  font-size: 11.5px;
  color: #888;
  margin: 0 0 14px 14px;
}
.srx-req { color: var(--has-red); }

/* ---- Sector selection cards ---- */
.srx-sector-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.srx-sector-card {
  position: relative;
  display: block;
  cursor: pointer;
  border: 2px solid #e0dcc4;
  border-radius: 8px;
  padding: 16px 14px;
  background: #fdfcf5;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}
.srx-sector-card:hover { border-color: var(--has-gold); transform: translateY(-2px); }

.srx-sector-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.srx-sector-check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #cfc9a8;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.srx-sector-check svg { opacity: 0; transition: opacity 0.15s ease; }

.srx-sector-name {
  display: block;
  font-weight: 800;
  font-size: 16px;
  color: var(--has-navy);
  margin-bottom: 4px;
}
.srx-sector-meta {
  display: block;
  font-size: 11px;
  color: #777;
  margin-bottom: 10px;
}
.srx-sector-size {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--has-orange);
  line-height: 1.5;
}

/* Selected state */
.srx-sector-card:has(input:checked) {
  border-color: var(--has-green);
  background: #f0f9f1;
  box-shadow: 0 0 0 3px rgba(11,122,61,0.12);
}
.srx-sector-card:has(input:checked) .srx-sector-check {
  background: var(--has-green);
  border-color: var(--has-green);
}
.srx-sector-card:has(input:checked) .srx-sector-check svg {
  opacity: 1;
}
.srx-sector-card:has(input:checked) .srx-sector-name {
  color: var(--has-green-dark);
}

/* fallback for browsers without :has() support -- toggled by JS too */
.srx-sector-card.srx-active {
  border-color: var(--has-green);
  background: #f0f9f1;
  box-shadow: 0 0 0 3px rgba(11,122,61,0.12);
}
.srx-sector-card.srx-active .srx-sector-check {
  background: var(--has-green);
  border-color: var(--has-green);
}
.srx-sector-card.srx-active .srx-sector-check svg { opacity: 1; }
.srx-sector-card.srx-active .srx-sector-name { color: var(--has-green-dark); }

/* ---- General form fields ---- */
.srx-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.srx-row:last-child { margin-bottom: 0; }

.srx-group label {
  display: block;
  font-weight: 700;
  font-size: 12px;
  color: #1c1c1c;
  margin-bottom: 5px;
}

.srx-input {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 13px;
  font-family: inherit;
  color: #1c1c1c;
  background: #ffffff;
}
.srx-input:focus {
  outline: none;
  border-color: var(--has-green);
  box-shadow: 0 0 0 3px rgba(11,122,61,0.12);
}
.srx-input[readonly] { background: #f4f4f4; color: #666; }
.srx-textarea { resize: vertical; }

.srx-error {
  display: block;
  color: var(--has-red);
  font-size: 11px;
  margin-top: 4px;
  min-height: 14px;
}

.srx-alert {
  margin-top: 8px;
  background: var(--has-amber-bg);
  border-left: 4px solid var(--has-red);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--has-red-dark);
}

.srx-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
    margin-bottom: 10px;
  font-size: 12px;
  color: #333;
  cursor: pointer;
}
.srx-check input { margin-top: 3px; }
.srx-check a { color: var(--has-red); font-weight: 600; }

.srx-submit {
  width: 100%;
  text-align: center;
  font-size: 14px;
  padding: 13px 20px;
}

@media (min-width: 576px) {
  .srx-section { padding: 46px 0 70px; }
  .srx-card { padding: 34px 40px; border-radius: 14px; }
  .srx-heading { font-size: 17px; }
  .srx-sub { font-size: 12.5px; }
  .srx-sector-card { padding: 22px 20px; }
  .srx-sector-name { font-size: 19px; }
  .srx-sector-meta { font-size: 12.5px; }
  .srx-sector-size { font-size: 13px; }
  .srx-row { grid-template-columns: 1fr 1fr; }
  .srx-row-3 { grid-template-columns: 1fr 1fr 1fr; }
  .srx-group label { font-size: 13px; }
  .srx-input { font-size: 14.5px; padding: 11px 14px; }
}
.srx-input-wrap { position: relative; }

.srx-spinner {
  display: none;
  position: absolute;
  top: 50%;
  right: 10px;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  border: 2px solid #d8d2b0;
  border-top-color: var(--has-green);
  border-radius: 50%;
  animation: srx-spin 0.7s linear infinite;
}
.srx-spinner.srx-spinner-active { display: block; }

@keyframes srx-spin {
  to { transform: rotate(360deg); }
}
/* ---- Thanks / Status page ---- */
.srx-thanks-inner { max-width: 560px; padding: 30px 16px 60px; }

.srx-thanks-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.1);
  padding: 34px 24px;
  text-align: center;
}

.srx-thanks-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
}
.srx-thanks-icon-success { background: var(--has-green); }
.srx-thanks-icon-failed { background: var(--has-red); }
.srx-thanks-icon-info { background: var(--has-navy); }
.srx-thanks-icon-pending { background: var(--has-amber-bg); }

.srx-spinner-lg {
  width: 30px;
  height: 30px;
  border: 3px solid rgba(11,122,61,0.25);
  border-top-color: var(--has-green);
  border-radius: 50%;
  animation: srx-spin 0.8s linear infinite;
  display: block;
}

.srx-thanks-card h2 {
  font-weight: 800;
  font-size: 19px;
  color: var(--has-navy);
  margin-bottom: 10px;
}
.srx-thanks-card p {
  font-size: 13px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 8px;
}
.srx-thanks-reg { font-size: 13px; color: var(--has-navy); }

.srx-thanks-details {
  margin: 18px 0;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  text-align: left;
}
.srx-thanks-details div {
  display: flex;
  justify-content: space-between;
  padding: 10px 14px;
  font-size: 12.5px;
  border-bottom: 1px solid #f0f0f0;
}
.srx-thanks-details div:last-child { border-bottom: none; }
.srx-thanks-details span { color: #777; }
.srx-thanks-details strong { color: #1c1c1c; }

.srx-thanks-note {
  font-size: 12px;
  color: #777;
  margin-bottom: 20px;
}

@media (min-width: 576px) {
  .srx-thanks-card { padding: 46px 40px; }
  .srx-thanks-card h2 { font-size: 24px; }
  .srx-thanks-card p { font-size: 14.5px; }
}