/* ==========================================================================
   Self-Hosted Fonts (downloaded — no Google Fonts CDN, for faster loading)
   ========================================================================== */

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/poppins-400.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/poppins-500.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/poppins-600.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/poppins-700.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/poppins-800.woff2") format("woff2");
}

@font-face {
  font-family: "Noto Sans Devanagari";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/noto-sans-devanagari-devanagari.woff2") format("woff2");
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}

@font-face {
  font-family: "Noto Sans Devanagari";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/noto-sans-devanagari-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ==========================================================================
   DDJAY Nuh — Global Theme
   ========================================================================== */

:root {
  --ddjay-green: #0a7d3e;
  --ddjay-green-dark: #065a2c;
  --ddjay-green-light: #e9f7ef;
  --ddjay-blue: #0b3d7a;
  --ddjay-blue-dark: #07284f;
  --ddjay-red: #e00000;
  --ddjay-red-dark: #a80000;
  --ddjay-white: #ffffff;
  --ddjay-text: #1c1c1c;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", "Noto Sans Devanagari", "Noto Sans", sans-serif;
  color: var(--ddjay-text);
  background-color: #fbfbfb;
}

/* Headings stay compact on mobile so they never overpower the layout */
h1 { font-size: clamp(1.4rem, 4vw, 2.75rem);  font-weight: 700; }
h2 { font-size: clamp(1.2rem, 3.2vw, 2.1rem); font-weight: 700; }
h3 { font-size: clamp(1.05rem, 2.6vw, 1.5rem); font-weight: 600; }
h4 { font-size: clamp(0.95rem, 2.2vw, 1.2rem); font-weight: 600; }

/* ==========================================================================
   Marquee Notice Strip
   ========================================================================== */

.ddjay-marquee {
  background: var(--ddjay-green);
  color: var(--ddjay-white);
  overflow: hidden;
  white-space: nowrap;
  padding: 6px 0;
  font-size: 0.85rem;
  border-bottom: 2px solid var(--ddjay-green-dark);
}

.ddjay-marquee .marquee-track {
  display: inline-block;
  padding-left: 100%;
  animation: ddjay-marquee-scroll 28s linear infinite;
}

.ddjay-marquee .marquee-track i {
  color: #ffe680;
  margin: 0 6px;
}

@keyframes ddjay-marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

@media (prefers-reduced-motion: reduce) {
  .ddjay-marquee .marquee-track {
    animation: none;
    padding-left: 0;
  }
}

/* ==========================================================================
   Navbar
   ========================================================================== */

.ddjay-navbar {
  background: linear-gradient(90deg, var(--ddjay-blue) 0%, var(--ddjay-blue-dark) 55%, var(--ddjay-green-dark) 100%);
  padding: 8px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.ddjay-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ddjay-navbar .navbar-brand img {
  height: 56px;
  width: auto;
  background: var(--ddjay-white);
  border-radius: 6px;
  padding: 4px;
}

.ddjay-navbar .nav-link {
  color: var(--ddjay-white) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 14px !important;
  border-radius: 4px;
  transition: background 0.2s ease;
}

@media (min-width: 992px) {
  .ddjay-navbar .navbar-brand img {
    height: 44px;
  }
  .ddjay-navbar .nav-link {
    white-space: nowrap;
    font-size: 0.76rem;
    padding: 8px 8px !important;
  }
  .ddjay-navbar .btn-ddjay-register {
    font-size: 0.78rem;
    padding: 7px 15px;
  }
}

@media (min-width: 1200px) {
  .ddjay-navbar .navbar-brand img {
    height: 46px;
  }
  .ddjay-navbar .nav-link {
    font-size: 0.78rem;
    padding: 8px 9px !important;
  }
  .ddjay-navbar .btn-ddjay-register {
    font-size: 0.8rem;
    padding: 8px 16px;
  }
}

@media (min-width: 1400px) {
  .ddjay-navbar .navbar-brand img {
    height: 48px;
  }
  .ddjay-navbar .nav-link {
    font-size: 0.85rem;
    padding: 8px 12px !important;
  }
  .ddjay-navbar .btn-ddjay-register {
    font-size: 0.85rem;
    padding: 8px 18px;
  }
}

.ddjay-navbar .nav-link:hover,
.ddjay-navbar .nav-link:focus {
  background: rgba(255, 255, 255, 0.15);
}

.ddjay-navbar .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}

.ddjay-navbar .navbar-toggler-icon {
  filter: invert(1);
}

/* Registration CTA — red, pulsing/blinking to draw attention */
.btn-ddjay-register {
  background: var(--ddjay-red);
  color: var(--ddjay-white) !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 9px 20px;
  border-radius: 30px;
  border: none;
  white-space: nowrap;
  animation: ddjay-blink 1.4s ease-in-out infinite;
}

.btn-ddjay-register:hover {
  background: var(--ddjay-red-dark);
  color: var(--ddjay-white) !important;
}

@keyframes ddjay-blink {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(224, 0, 0, 0.6);
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 0 9px rgba(224, 0, 0, 0);
    opacity: 0.85;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-ddjay-register {
    animation: none;
  }
}

.ddjay-navbar .navbar-top-row {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

@media (max-width: 991.98px) {
  .ddjay-navbar .navbar-top-row {
    width: 100%;
    justify-content: space-between;
  }
  .ddjay-navbar .nav-link {
    color: var(--ddjay-blue-dark) !important;
    font-size: 0.85rem;
    padding: 8px 10px !important;
  }
  .ddjay-navbar .nav-link:hover,
  .ddjay-navbar .nav-link:focus {
    background: var(--ddjay-green-light);
  }
  .ddjay-navbar .navbar-collapse {
    background: var(--ddjay-white);
    border-radius: 8px;
    margin-top: 10px;
    padding: 6px 10px;
    width: 100%;
  }
  .ddjay-navbar .navbar-brand img {
    height: 36px;
    padding: 2px;
  }
  .navbar-top-row-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }
  .btn-ddjay-register-mobile {
    font-size: 0.7rem;
    padding: 6px 10px;
    flex-shrink: 0;
  }
  .ddjay-navbar .navbar-toggler {
    padding: 4px 7px;
    font-size: 0.95rem;
    flex-shrink: 0;
  }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.ddjay-hero {
  padding: 28px 0 40px;
  background: linear-gradient(180deg, var(--ddjay-green-light) 0%, #ffffff 220px);
}

.hero-image-wrap {
  position: relative;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(7, 40, 79, 0.25);
  border: 4px solid var(--ddjay-white);
  outline: 2px solid var(--ddjay-green);
}

.hero-img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}

/* Project Detail Card */
.project-detail-card {
  height: 100%;
  background: var(--ddjay-white);
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(7, 40, 79, 0.14);
  border: 1px solid #e4e9f0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pdc-header {
  background: linear-gradient(90deg, var(--ddjay-blue) 0%, var(--ddjay-green-dark) 100%);
  color: var(--ddjay-white);
  padding: 14px 18px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.pdc-header h3 {
  color: var(--ddjay-white);
}

.pdc-header h3 {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
}

.pdc-header-hi {
  font-size: 0.72rem;
  color: #dcebff;
  white-space: nowrap;
}

.pdc-list {
  list-style: none;
  margin: 0;
  padding: 6px 18px;
  flex: 1 1 auto;
}

.pdc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px dashed #dfe6ee;
  font-size: 0.82rem;
  line-height: 1.4;
}

.pdc-list li:last-child {
  border-bottom: none;
}

.pdc-list strong {
  color: var(--ddjay-blue-dark);
}

.pdc-tag {
  flex-shrink: 0;
  background: var(--ddjay-red);
  color: var(--ddjay-white);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  margin-top: 2px;
  animation: ddjay-tag-pulse 1.8s ease-in-out infinite;
}

@keyframes ddjay-tag-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.project-detail-card .btn-ddjay-register {
  margin: 6px 18px 20px;
  width: calc(100% - 36px);
}

@media (prefers-reduced-motion: reduce) {
  .pdc-tag {
    animation: none;
  }
}

@media (max-width: 767.98px) {
  .hero-img {
    min-height: 200px;
  }
  .pdc-list li {
    font-size: 0.78rem;
  }
}

/* ==========================================================================
   Tagline Strip
   ========================================================================== */

.ddjay-tagline-strip {
  background: linear-gradient(90deg, var(--ddjay-blue) 0%, var(--ddjay-blue-dark) 55%, var(--ddjay-green-dark) 100%);
  padding: 26px 0;
}

.tagline-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.tagline-hindi {
  margin: 0;
  color: var(--ddjay-white);
  font-family: "Noto Sans Devanagari", "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 2.4vw, 1.4rem);
  line-height: 1.5;
  max-width: 780px;
}

@media (max-width: 575.98px) {
  .ddjay-tagline-strip {
    padding: 20px 0;
  }
}

/* ==========================================================================
   About Us Section
   ========================================================================== */

.ddjay-about {
  padding: 20px 0 50px;
  background: var(--ddjay-white);
}

.section-heading {
  margin-bottom: 20px;
}

.section-tag {
  display: inline-block;
  background: var(--ddjay-green-light);
  color: var(--ddjay-green-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.section-heading h2 {
  color: var(--ddjay-blue-dark);
  margin-bottom: 4px;
  font-size: clamp(1.1rem, 2.6vw, 1.65rem);
}

.section-heading-hi {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--ddjay-green-dark);
  font-weight: 600;
}

.about-content {
  margin: 0 auto 30px;
  background: var(--ddjay-green-light);
  border-left: 4px solid var(--ddjay-green);
  border-radius: 8px;
  padding: 20px 24px;
}

.about-content p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--ddjay-text);
  margin-bottom: 12px;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.about-highlights {
  margin: 0 auto;
}

.highlight-card {
  height: 100%;
  background: var(--ddjay-white);
  border: 1px solid #e4e9f0;
  border-top: 3px solid var(--ddjay-blue);
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(7, 40, 79, 0.08);
  padding: 18px 14px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(7, 40, 79, 0.15);
}

.highlight-card i {
  display: block;
  font-size: 1.7rem;
  color: var(--ddjay-green);
  margin-bottom: 10px;
}

.highlight-card span {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ddjay-blue-dark);
  line-height: 1.35;
}

@media (max-width: 767.98px) {
  .ddjay-about {
    padding: 14px 0 36px;
  }
  .about-content {
    padding: 18px 18px;
  }
  .about-content p {
    font-size: 0.85rem;
  }
}

/* ==========================================================================
   Payment Plan Section
   ========================================================================== */

.ddjay-payment {
  padding: 10px 0 50px;
  background: linear-gradient(180deg, #ffffff 0%, var(--ddjay-green-light) 100%);
}

.table-scroll-note {
  font-size: 0.78rem;
  color: var(--ddjay-blue-dark);
  background: #eef4fb;
  border: 1px dashed #c7d6e8;
  border-radius: 20px;
  padding: 6px 14px;
  display: table;
  margin: 0 auto 16px;
}

.table-scroll-note i {
  margin-right: 4px;
}

.payment-table-wrap {
  border-radius: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 8px 24px rgba(7, 40, 79, 0.12);
  border: 1px solid #e4e9f0;
}

.payment-table {
  margin-bottom: 0;
  min-width: 900px;
  border-collapse: collapse;
}

.payment-table thead th {
  background: var(--ddjay-blue-dark);
  color: var(--ddjay-white);
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  padding: 12px 10px;
  border: 1px solid #e4e9f0;
  white-space: nowrap;
}

.payment-table thead th small {
  display: block;
  font-weight: 500;
  font-size: 0.66rem;
  color: #dcebff;
  white-space: normal;
}

.payment-table tbody td {
  text-align: center;
  vertical-align: middle;
  padding: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ddjay-text);
  border: 1px solid #e4e9f0;
  white-space: nowrap;
}

.payment-table tbody tr:nth-child(even) {
  background-color: var(--ddjay-green-light);
}

.payment-table tbody td:first-child {
  color: var(--ddjay-blue-dark);
  font-weight: 700;
}

.btn-ddjay-register-xs {
  font-size: 0.68rem;
  padding: 5px 12px;
  white-space: nowrap;
}

.refund-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  background: linear-gradient(90deg, var(--ddjay-green) 0%, var(--ddjay-green-dark) 100%);
  color: var(--ddjay-white);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  padding: 12px 20px;
  border-radius: 10px;
  margin-top: 18px;
  box-shadow: 0 6px 18px rgba(10, 125, 62, 0.3);
  animation: ddjay-refund-glow 2.2s ease-in-out infinite;
}

.refund-strip i {
  font-size: 1.1rem;
  color: #ffe680;
}

@keyframes ddjay-refund-glow {
  0%, 100% { box-shadow: 0 6px 18px rgba(10, 125, 62, 0.3); }
  50% { box-shadow: 0 6px 22px rgba(10, 125, 62, 0.55); }
}

@media (prefers-reduced-motion: reduce) {
  .refund-strip {
    animation: none;
  }
}

@media (max-width: 575.98px) {
  .refund-strip {
    font-size: 0.72rem;
    padding: 10px 14px;
  }
}

.payment-note-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--ddjay-white);
  border: 1px solid #e4e9f0;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(7, 40, 79, 0.08);
  padding: 14px 20px;
  margin-top: 20px;
}

.payment-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--ddjay-blue-dark);
  white-space: nowrap;
}

.payment-note i {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ddjay-green-light);
  color: var(--ddjay-green-dark);
  border-radius: 50%;
  font-size: 0.8rem;
}

@media (max-width: 767.98px) {
  .ddjay-payment {
    padding: 6px 0 36px;
  }
  .payment-note-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .payment-note {
    white-space: normal;
  }
  .payment-table thead th {
    font-size: 0.66rem;
    padding: 8px 6px;
  }
  .payment-table thead th small {
    font-size: 0.58rem;
  }
  .payment-table tbody td {
    font-size: 0.72rem;
    padding: 7px;
  }
  .btn-ddjay-register-xs {
    font-size: 0.62rem;
    padding: 4px 9px;
  }
}

/* ==========================================================================
   Location Advantages Section
   ========================================================================== */

.ddjay-location {
  padding: 10px 0 50px;
  background: var(--ddjay-white);
}

.location-table-wrap {
  border-radius: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 8px 24px rgba(7, 40, 79, 0.12);
  border: 1px solid #e4e9f0;
}

.location-table {
  margin-bottom: 0;
  min-width: 620px;
  border-collapse: collapse;
}

.location-table thead th {
  background: var(--ddjay-blue-dark);
  color: var(--ddjay-white);
  font-size: 0.8rem;
  font-weight: 700;
  text-align: left;
  padding: 12px 16px;
  border: 1px solid #e4e9f0;
  white-space: nowrap;
}

.location-table tbody td {
  text-align: left;
  vertical-align: middle;
  padding: 12px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ddjay-text);
  border: 1px solid #e4e9f0;
}

.location-table tbody tr:nth-child(even) {
  background-color: var(--ddjay-green-light);
}

.location-table td:first-child {
  font-weight: 700;
  color: var(--ddjay-blue-dark);
  white-space: nowrap;
}

.location-table td:first-child i {
  color: var(--ddjay-green);
  margin-right: 6px;
}

.location-table td:last-child {
  color: var(--ddjay-green-dark);
  font-weight: 700;
  white-space: nowrap;
}

.location-table td:last-child i {
  margin-right: 5px;
}

@media (max-width: 767.98px) {
  .ddjay-location {
    padding: 6px 0 36px;
  }
  .location-table thead th {
    font-size: 0.7rem;
    padding: 8px 10px;
  }
  .location-table tbody td {
    font-size: 0.75rem;
    padding: 8px 10px;
  }
}

/* ==========================================================================
   Amenities Section
   ========================================================================== */

.ddjay-amenities {
  padding: 10px 0 50px;
  background: linear-gradient(180deg, #ffffff 0%, var(--ddjay-green-light) 100%);
}

.amenity-card {
  height: 100%;
  background: var(--ddjay-white);
  border: 1px solid #e4e9f0;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(7, 40, 79, 0.08);
  padding: 22px 12px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(7, 40, 79, 0.16);
  border-color: var(--ddjay-green);
}

.amenity-card i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--ddjay-green-light);
  color: var(--ddjay-green-dark);
  font-size: 1.5rem;
}

.amenity-card span {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ddjay-blue-dark);
  line-height: 1.35;
}

@media (max-width: 767.98px) {
  .ddjay-amenities {
    padding: 6px 0 36px;
  }
  .amenity-card {
    padding: 16px 8px;
  }
  .amenity-card i {
    width: 46px;
    height: 46px;
    font-size: 1.25rem;
    margin-bottom: 8px;
  }
  .amenity-card span {
    font-size: 0.74rem;
  }
}

/* ==========================================================================
   Contact Us Section
   ========================================================================== */

.ddjay-contact {
  padding: 10px 0 55px;
  background: linear-gradient(180deg, #ffffff 0%, var(--ddjay-green-light) 100%);
}

.contact-info-card {
  height: 100%;
  background: linear-gradient(135deg, var(--ddjay-blue) 0%, var(--ddjay-blue-dark) 60%, var(--ddjay-green-dark) 100%);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(7, 40, 79, 0.2);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-info-item i {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  color: var(--ddjay-white);
  border-radius: 50%;
  font-size: 1.15rem;
}

.contact-info-item h4 {
  color: #ffe680;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contact-info-item a,
.contact-info-item span {
  color: var(--ddjay-white);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.4;
}

.contact-info-item a:hover {
  text-decoration: underline;
}

.contact-form-card {
  height: 100%;
  background: var(--ddjay-white);
  border: 1px solid #e4e9f0;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(7, 40, 79, 0.1);
  padding: 20px 20px;
  display: flex;
  align-items: center;
}

.contact-form {
  width: 100%;
}

.contact-form .form-control {
  border: 1px solid #d7dfe8;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 0.85rem;
}

.contact-form .form-control:focus {
  border-color: var(--ddjay-green);
  box-shadow: 0 0 0 0.2rem rgba(10, 125, 62, 0.15);
}

.contact-form textarea.form-control {
  resize: none;
}

.btn-ddjay-send {
  background: var(--ddjay-green);
  color: var(--ddjay-white) !important;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 9px 22px;
  border-radius: 8px;
  border: none;
  transition: background 0.2s ease;
}

.btn-ddjay-send:hover {
  background: var(--ddjay-green-dark);
  color: var(--ddjay-white) !important;
}

@media (max-width: 767.98px) {
  .ddjay-contact {
    padding: 6px 0 40px;
  }
  .contact-info-card {
    padding: 24px 20px;
  }
  .contact-form-card {
    padding: 22px 18px;
  }
}

/* ==========================================================================
   Project Gallery Section
   ========================================================================== */

.ddjay-gallery {
  padding: 10px 0 50px;
  background: var(--ddjay-white);
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(7, 40, 79, 0.12);
  border: 1px solid #e4e9f0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-zoom-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 40, 79, 0.35);
  color: var(--ddjay-white);
  font-size: 1.6rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gallery-item:hover .gallery-zoom-icon {
  opacity: 1;
}

.gallery-modal .modal-content {
  background: transparent;
  border: none;
  box-shadow: none;
}

.gallery-modal .modal-dialog {
  max-width: 90vw;
}

.gallery-modal img {
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 10px;
}

.gallery-modal-close {
  position: absolute;
  top: -42px;
  right: 0;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  padding: 8px;
}

@media (max-width: 575.98px) {
  .gallery-modal-close {
    top: 8px;
    right: 8px;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.ddjay-footer {
  background: var(--ddjay-blue-dark);
  padding: 30px 0 22px;
  color: rgba(255, 255, 255, 0.85);
}

.footer-links {
  text-align: center;
  margin-bottom: 16px;
}

.footer-links a {
  color: var(--ddjay-white);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 600;
}

.footer-links a:hover {
  color: #ffe680;
  text-decoration: underline;
}

.footer-links span {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.72rem;
}

.footer-belongs {
  text-align: center;
  font-size: 0.72rem;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.85);
}

.footer-belongs strong {
  color: var(--ddjay-white);
}

.footer-rera {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  color: #ffe680;
  letter-spacing: 0.3px;
  margin-bottom: 14px;
}

.footer-disclaimer {
  text-align: center;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 900px;
  margin: 0 auto 12px;
  line-height: 1.6;
}

.footer-copyright {
  text-align: center;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 12px;
  margin: 0;
}

/* Fixed RERA Approved Stamp */
.fixed-rera-stamp {
  position: fixed;
  left: 14px;
  bottom: 14px;
  z-index: 1045;
  width: 82px;
  height: 82px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.fixed-rera-stamp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Fixed Call Now Button */
.fixed-call-btn {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1045;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--ddjay-red);
  color: var(--ddjay-white) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 6px 18px rgba(224, 0, 0, 0.45);
  animation: ddjay-blink 1.4s ease-in-out infinite;
}

.fixed-call-btn:hover {
  background: var(--ddjay-red-dark);
  color: var(--ddjay-white) !important;
}

@media (prefers-reduced-motion: reduce) {
  .fixed-call-btn {
    animation: none;
  }
}

@media (max-width: 575.98px) {
  .fixed-rera-stamp {
    width: 60px;
    height: 60px;
    left: 10px;
    bottom: 10px;
  }
  .fixed-call-btn {
    width: 46px;
    height: 46px;
    right: 12px;
    bottom: 12px;
    font-size: 1.1rem;
  }
}

/* ==========================================================================
   Legal Pages (Terms, Refund, Privacy)
   ========================================================================== */

.ddjay-page-banner {
  background: linear-gradient(90deg, var(--ddjay-blue) 0%, var(--ddjay-blue-dark) 55%, var(--ddjay-green-dark) 100%);
  padding: 36px 0 26px;
  text-align: center;
  color: var(--ddjay-white);
}

.ddjay-page-banner h1 {
  color: var(--ddjay-white);
  margin-bottom: 4px;
}

.page-banner-hi {
  display: block;
  color: #ffe680;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.page-breadcrumb {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

.page-breadcrumb a {
  color: var(--ddjay-white);
  text-decoration: none;
  font-weight: 600;
}

.page-breadcrumb a:hover {
  text-decoration: underline;
}

.page-breadcrumb i {
  margin: 0 4px;
  font-size: 0.7rem;
}

.ddjay-legal {
  padding: 40px 0 60px;
  background: var(--ddjay-white);
}

.legal-content {
  max-width: 880px;
  margin: 0 auto;
}

.legal-content .updated-date {
  font-size: 0.78rem;
  color: #7a8494;
  font-style: italic;
  margin-bottom: 20px;
}

.legal-content h2 {
  color: var(--ddjay-blue-dark);
  font-size: clamp(1.02rem, 2.3vw, 1.3rem);
  margin-top: 26px;
  margin-bottom: 10px;
}

.legal-content h2:first-of-type {
  margin-top: 8px;
}

.legal-content p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--ddjay-text);
  margin-bottom: 14px;
}

.legal-content ul {
  padding-left: 22px;
  margin-bottom: 14px;
}

.legal-content li {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ddjay-text);
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--ddjay-green-dark);
  font-weight: 600;
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--ddjay-green-light);
  border-left: 4px solid var(--ddjay-green);
  border-radius: 8px;
  padding: 14px 18px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ddjay-green-dark);
  margin-bottom: 24px;
}

.legal-highlight i {
  font-size: 1.2rem;
  flex-shrink: 0;
}

@media (max-width: 767.98px) {
  .ddjay-page-banner {
    padding: 26px 0 20px;
  }
  .ddjay-legal {
    padding: 26px 0 44px;
  }
  .legal-content p,
  .legal-content li {
    font-size: 0.85rem;
  }
}

/* ==========================================================================
   Registration Page
   ========================================================================== */

.ddjay-registration {
  padding: 34px 0 60px;
  background: linear-gradient(180deg, var(--ddjay-green-light) 0%, #ffffff 260px);
}

.reg-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 960px;
  margin: 0 auto 26px;
}

.reg-stat-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--ddjay-white);
  border: 1px solid #e4e9f0;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(7, 40, 79, 0.08);
  padding: 12px 14px;
}

.reg-stat-chip i {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ddjay-green-light);
  color: var(--ddjay-green-dark);
  border-radius: 50%;
  font-size: 1.05rem;
}

.reg-stat-chip div {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.reg-stat-chip strong {
  font-size: 0.82rem;
  color: var(--ddjay-blue-dark);
}

.reg-stat-chip span {
  font-size: 0.68rem;
  color: #6b7686;
}

.reg-form-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--ddjay-white);
  border: 1px solid #e4e9f0;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(7, 40, 79, 0.12);
  padding: 32px 34px;
}

.reg-form-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #dfe6ee;
}

.reg-form-header h2 {
  color: var(--ddjay-blue-dark);
  margin-bottom: 2px;
}

.reg-form-header-hi {
  display: block;
  color: var(--ddjay-green-dark);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.reg-form-header p {
  font-size: 0.82rem;
  color: #6b7686;
  margin: 0;
}

.req {
  color: var(--ddjay-red);
}

.reg-form-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ddjay-blue-dark);
  font-size: 0.95rem;
  font-weight: 700;
  margin: 22px 0 14px;
}

.reg-form-section-title:first-of-type {
  margin-top: 0;
}

.reg-form-section-title i {
  color: var(--ddjay-green);
}

.reg-form .form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ddjay-blue-dark);
  margin-bottom: 5px;
}

.reg-form .form-control {
  border: 1px solid #d7dfe8;
  border-radius: 8px;
  padding: 10px 13px;
  font-size: 0.86rem;
}

.reg-form .form-control:focus {
  border-color: var(--ddjay-green);
  box-shadow: 0 0 0 0.2rem rgba(10, 125, 62, 0.15);
}

.reg-form select.form-control {
  appearance: auto;
}

.reg-payment-box {
  background: var(--ddjay-green-light);
  border: 1px dashed var(--ddjay-green);
  border-radius: 10px;
  padding: 14px 18px;
  margin-top: 24px;
}

.reg-payment-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reg-payment-info i {
  flex-shrink: 0;
  font-size: 1.5rem;
  color: var(--ddjay-green-dark);
}

.reg-payment-info strong {
  display: block;
  color: var(--ddjay-blue-dark);
  font-size: 0.92rem;
}

.reg-payment-info span {
  display: block;
  font-size: 0.76rem;
  color: #556071;
}

.reg-terms-check {
  margin-top: 18px;
  padding-left: 1.8em;
}

.reg-terms-check label {
  font-size: 0.8rem;
  color: var(--ddjay-text);
}

.reg-terms-check a {
  color: var(--ddjay-green-dark);
  font-weight: 600;
  text-decoration: none;
}

.reg-terms-check a:hover {
  text-decoration: underline;
}

.reg-submit-btn {
  display: block;
  width: 100%;
  margin-top: 22px;
  font-size: 0.98rem;
  padding: 13px 20px;
}

/* Plot Size Selection Cards */
.plot-size-options {
  margin-top: 6px;
  margin-bottom: 4px;
}

.plot-size-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.plot-size-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3px;
  height: 100%;
  background: var(--ddjay-white);
  border: 1.5px solid #d7dfe8;
  border-radius: 10px;
  padding: 12px 14px 12px 38px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.plot-radio-dot {
  position: absolute;
  left: 12px;
  top: 14px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #b9c4d0;
  background: var(--ddjay-white);
  transition: all 0.2s ease;
}

.plot-radio-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ddjay-green);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.15s ease;
}

.plot-size-radio:checked + .plot-size-card {
  border-color: var(--ddjay-green);
  background: var(--ddjay-green-light);
  box-shadow: 0 4px 14px rgba(10, 125, 62, 0.18);
}

.plot-size-radio:checked + .plot-size-card .plot-radio-dot {
  border-color: var(--ddjay-green);
}

.plot-size-radio:checked + .plot-size-card .plot-radio-dot::after {
  transform: translate(-50%, -50%) scale(1);
}

.plot-size-radio:focus-visible + .plot-size-card {
  outline: 2px solid var(--ddjay-green);
  outline-offset: 2px;
}

.plot-size-card:hover {
  border-color: var(--ddjay-green);
}

.plot-size-main {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ddjay-blue-dark);
}

.plot-size-main small {
  font-weight: 600;
  font-size: 0.75rem;
  color: #6b7686;
}

.plot-size-cost {
  margin-top: 2px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ddjay-green-dark);
}

.plot-size-cost small {
  font-weight: 600;
  font-size: 0.66rem;
  color: #6b7686;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

@media (max-width: 767.98px) {
  .ddjay-registration {
    padding: 20px 0 44px;
  }
  .reg-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .reg-form-card {
    padding: 22px 18px;
    border-radius: 12px;
  }
  .reg-form-header p {
    font-size: 0.75rem;
  }
  .reg-form-section-title {
    font-size: 0.85rem;
  }
  .reg-form .form-label {
    font-size: 0.74rem;
  }
  .reg-form .form-control {
    font-size: 0.8rem;
    padding: 9px 11px;
  }
  .reg-stat-chip {
    padding: 8px 8px;
  }
  .reg-stat-chip strong {
    font-size: 0.74rem;
  }
  .reg-stat-chip span {
    font-size: 0.62rem;
  }
  .plot-size-main {
    font-size: 0.84rem;
  }
  .plot-size-main small {
    font-size: 0.68rem;
  }
  .plot-size-cost {
    font-size: 0.76rem;
  }
  .plot-size-cost small {
    font-size: 0.6rem;
  }
  .plot-size-card {
    padding: 10px 12px 10px 34px;
  }
  .plot-radio-dot {
    left: 10px;
    top: 12px;
    width: 16px;
    height: 16px;
  }
  .reg-payment-info strong {
    font-size: 0.82rem;
  }
  .reg-payment-info span {
    font-size: 0.7rem;
  }
  .reg-terms-check label {
    font-size: 0.74rem;
  }
  .reg-submit-btn {
    font-size: 0.88rem;
    padding: 12px 16px;
  }
}

/* ==========================================================================
   How to Apply — Flow Chart Section
   ========================================================================== */

.ddjay-flow {
  padding: 10px 0 55px;
  background: var(--ddjay-white);
}

.flow-steps {
  position: relative;
  max-width: 660px;
  margin: 0 auto 40px;
}

.flow-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding-bottom: 30px;
}

.flow-step:last-child {
  padding-bottom: 0;
}

.flow-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background: #d7dfe8;
}

.flow-step-num {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ddjay-blue-dark);
  color: var(--ddjay-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 3px 10px rgba(7, 40, 79, 0.25);
}

.flow-step-body {
  padding-top: 6px;
}

.flow-step-body h4 {
  color: var(--ddjay-blue-dark);
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.flow-step-body p {
  font-size: 0.82rem;
  color: #6b7686;
  margin: 0;
  line-height: 1.5;
}

.flow-step-highlight .flow-step-num {
  background: var(--ddjay-red);
  font-size: 1.15rem;
  animation: ddjay-blink 1.8s ease-in-out infinite;
}

.flow-step-highlight .flow-step-body h4 {
  color: var(--ddjay-red);
}

.flow-branch-label {
  display: table;
  margin: 0 auto 20px;
  background: var(--ddjay-green-light);
  color: var(--ddjay-green-dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 20px;
}

.flow-branch-label i {
  margin-right: 6px;
}

.flow-branch-row {
  max-width: 1000px;
  margin: 0 auto;
}

.flow-branch-card {
  height: 100%;
  background: var(--ddjay-white);
  border: 1px solid #e4e9f0;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(7, 40, 79, 0.1);
  overflow: hidden;
}

.flow-branch-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 18px;
  color: var(--ddjay-white);
}

.flow-branch-success .flow-branch-header {
  background: var(--ddjay-green);
}

.flow-branch-fail .flow-branch-header {
  background: var(--ddjay-blue);
}

.flow-branch-card ul {
  list-style: none;
  margin: 0;
  padding: 16px 20px;
}

.flow-branch-card li {
  position: relative;
  padding-left: 20px;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--ddjay-text);
  margin-bottom: 12px;
}

.flow-branch-card li:last-child {
  margin-bottom: 0;
}

.flow-branch-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.flow-branch-success li::before {
  background: var(--ddjay-green);
}

.flow-branch-fail li::before {
  background: var(--ddjay-blue);
}

.flow-branch-card a {
  color: var(--ddjay-green-dark);
  font-weight: 600;
  text-decoration: none;
}

.flow-branch-card a:hover {
  text-decoration: underline;
}

@media (prefers-reduced-motion: reduce) {
  .flow-step-highlight .flow-step-num {
    animation: none;
  }
}

@media (max-width: 767.98px) {
  .ddjay-flow {
    padding: 6px 0 40px;
  }
  .flow-step-num {
    width: 34px;
    height: 34px;
    font-size: 0.88rem;
  }
  .flow-step:not(:last-child)::before {
    left: 16px;
    top: 34px;
  }
  .flow-branch-header {
    font-size: 0.88rem;
  }
}

/* ==========================================================================
   Language Tabs (How to Apply page)
   ========================================================================== */

.ddjay-lang-tabs {
  border: none;
  gap: 10px;
  margin-bottom: 30px;
}

.ddjay-lang-tabs .nav-link {
  border: 1px solid #d7dfe8;
  border-radius: 30px;
  padding: 9px 22px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ddjay-blue-dark);
  background: var(--ddjay-white);
  transition: all 0.2s ease;
}

.ddjay-lang-tabs .nav-link i {
  margin-right: 5px;
}

.ddjay-lang-tabs .nav-link:hover {
  border-color: var(--ddjay-green);
  color: var(--ddjay-green-dark);
}

.ddjay-lang-tabs .nav-link.active {
  background: linear-gradient(90deg, var(--ddjay-blue) 0%, var(--ddjay-green-dark) 100%);
  border-color: transparent;
  color: var(--ddjay-white);
  box-shadow: 0 4px 14px rgba(7, 40, 79, 0.25);
}

#hi-content .flow-step-body h4,
#hi-content .flow-branch-card li,
#hi-content .flow-branch-header,
#hi-content .flow-branch-label {
  font-family: "Noto Sans Devanagari", "Poppins", sans-serif;
}
