    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --gold: #c9a84c;
      --gold-light: #e2c97e;
    }

    html, body {
      height: 100%;
      width: 100%;
      font-family: 'Montserrat', sans-serif;
    }

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* iPhone viewport fix */
@supports (-webkit-touch-callout: none) {
    body {
        min-height: -webkit-fill-available;
    }
}
    /* ─────────────────────────────────────────
       SECTION 1 – HERO
    ───────────────────────────────────────── */
  

/* ── Slider Wrapper ── */

.slider-wrap {
  overflow: hidden; /* makes sure nothing leaks out */
}

.slides {
  display: flex;
  height: 100%;
  flex-wrap: nowrap;
  transition: transform 0.85s;
  will-change: transform;
  width: 100%; /* ADD THIS */
}

.slide {
  flex: 0 0 100%;
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.85s;
}
.slide:not(:has(img)) {
  display: none;
}

  .hero {
      position: relative;
      width: 100%;
      height: 100vh;
      min-height: 600px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

video.hero-video.desktop {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    img.img-fluid.mob {
      display: none;
    }

    h1.banner_text.mob {
    display: none;
}

h1.banner_text.mob {
    position: absolute;
    top: 31%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    text-align: center;
    color: #fff;
    font-family: "Playfair Display", serif;
    z-index: 99;
    width: 100%;
}

a.open_modal_enquiry.btn-invite span {
    color: #fecb60;
    padding: 0px 5px;
}
a.open_modal_enquiry.btn-invite span:hover {
    color: #fff;
}

.btn-invite:hover span {
color: #fff !important;
}

    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(5, 10, 20, 0.45) 0%,
        rgba(5, 10, 20, 0.15) 40%,
        rgba(5, 10, 20, 0.15) 70%,
        rgba(5, 10, 20, 0.55) 100%
      );
    }

    .top-bar {
    position: fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      padding: 1rem 2.5rem 0;
      transition: all 0.3s ease;
    }

.logo{
    height:50px;
}

.sticky-header {
    background: #f5f0e8;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding-bottom: 13px;
}

.sticky-logo{
    display:none;
}

.sticky-header .normal-logo{
    display:none;
}

.sticky-header .sticky-logo{
    display:inline-block;
}



    .logo-wrap {
      display: flex;
      flex-direction: column;
      line-height: 1;
    }

    .logo-sub {
      font-family: 'Montserrat', sans-serif;
      font-weight: 300;
      font-size: 0.75rem;
      letter-spacing: 0.35em;
      color: #fff;
      text-transform: uppercase;
      margin-bottom: 2px;
    }


img.img-fluid.unizen-logo {
    width: 200px;
    height: 60px;
}

img.img-fluid.asph {
    width: 144px;
    height: 82px;
}

.btn-invite {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 2px;
    padding: 0.55rem 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    position: relative;
    bottom: -12px;
}

    .btn-invite:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: #fff;
    }

    .sticky-header .btn-invite span {
    color: #000 !important;
}

.bottom-bar {
    position: absolute;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 2rem;
    bottom: -22px;
    left: 0;
    right: 0;
}

.sticky-header .btn-invite {
    border: 1px solid #000;
    color: #000;
}

    .scroll-arrow {
      width: 90px;
      height: 90px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      animation: bounce 2.2s ease-in-out infinite;
    }

    .scroll-arrow:hover img {
      opacity: 0.75;
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(6px); }
    }

    /* ─────────────────────────────────────────
       SECTION 2 – ICONIC LIVING
    ───────────────────────────────────────── */
    .section-two {
      background-color: #f5f0e8;
      padding: 60px 0 4rem;
      text-align: center;
    }

    .section-two .heading {
    font-family: "Playfair Display", serif;
    font-weight: 400;
    font-size: 48px;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    letter-spacing:0px;
}

.section-two .subtext {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #555;
    line-height: 1.9;
    margin: 0 auto 60px;
    letter-spacing: 0.01em;
    width: 75%;
}

.video-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    line-height: 0;
    width: 926px;
    height: 481px;
    display: flex;
    margin: auto;
}

    .video-wrapper img.video-thumb {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.6s ease;
    }

    .video-wrapper:hover img.video-thumb {
      transform: scale(1.03);
    }

    .video-overlay {
      position: absolute;
      inset: 0;
      background: rgba(10, 10, 15, 0.38);
      transition: background 0.3s ease;
      border-radius: 20px;
    }

    .video-wrapper:hover .video-overlay {
      background: rgba(10, 10, 15, 0.22);
    }

    .play-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(1);
      width: 90px;
      height: 90px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,0.12);
      backdrop-filter: blur(4px);
      transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
      animation: pulse-ring 2.5s ease-in-out infinite;
    }

    .video-wrapper:hover .play-btn {
      transform: translate(-50%, -50%) scale(1.12);
      background: rgba(255,255,255,0.22);
      border-color: #fff;
      animation: none;
    }
    p.upf-joint-label {
    display: none;
}

    .play-btn svg {
      width: 20px;
      height: 20px;
      fill: #fff;
      margin-left: 4px;
    }

    .modal-content {
    border-radius: 0px;
}

    @keyframes pulse-ring {
      0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.45); }
      60%  { box-shadow: 0 0 0 16px rgba(255,255,255,0); }
      100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
    }

.section-two .tagline {
    font-family: "Playfair Display", serif;
    font-weight: 400;
    font-size: 48px;
    color: #1A1414;
    line-height: 1.25;
    margin-top: 3.5rem;
}
span.few {
    font-style: italic;
}
p.upf-col-addr.initiative {
    font-size: 15px;
    font-weight: 600;
}

    /* ─────────────────────────────────────────
       SECTION 3 – MAP
    ───────────────────────────────────────── */
.section-map {
    background-color: #0e0e0e;
    text-align: center;
    overflow: hidden;
    padding-top: 60px;
}

    .section-map .map-heading {
    font-family: "Playfair Display", serif;
    font-weight: 400;
    font-size: 48px;
    color: #D4D4D4;
    line-height: 1.25;
    }

    .map-image-wrap {
      position: relative;
      line-height: 0;
      padding-bottom: 0px;
    }
.form-control:focus {
    color:#1a1a1a ;
    background-color: transparent;
    border-color: #1a1a1a;
    outline: 0;
    box-shadow: none;
}
.rpi-field input:focus {
    border-bottom-color: #1a1a1a;
}

    .map-image-wrap img {
      width: 100%;
      height: auto;
      display: block;
      opacity: 0.92;
    }

    .map-image-wrap::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 60px;
      background: linear-gradient(to bottom, #0d0e0f, transparent);
      z-index: 2;
      pointer-events: none;
    }

    .map-pin-label {
      position: absolute;
      top: 54%;
      left: 50%;
      transform: translate(-30%, -10%);
      background: #fff;
      border-radius: 6px;
      padding: 6px 12px 6px 8px;
      display: flex;
      align-items: center;
      gap: 6px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.35);
      font-family: 'Montserrat', sans-serif;
      font-size: 0.68rem;
      font-weight: 500;
      color: #1a1a1a;
      letter-spacing: 0.04em;
      white-space: nowrap;
      z-index: 5;
      animation: float-label 3s ease-in-out infinite;
    }

    .map-pin-label .pin-dot {
      width: 16px;
      height: 16px;
      background: #c9a84c;
      border-radius: 50% 50% 50% 0;
      transform: rotate(-45deg);
      flex-shrink: 0;
    }

    @keyframes float-label {
      0%, 100% { transform: translate(-30%, -10%); }
      50%       { transform: translate(-30%, -16%); }
    }

    /* ─────────────────────────────────────────
       SECTION 4 – VOICES
    ───────────────────────────────────────── */
    .section-voices {
      background-color: #f5f0e8;
      padding: 60px 14rem;
      text-align: center;
      padding-bottom: 75px;
    }

    .section-voices .voices-heading {
    font-family: "Playfair Display", serif;
    font-weight: 400;
    font-size: 48px;
    color: #1A1414;
    line-height: 1.25;
    margin-bottom: 3.5rem;
    letter-spacing: 0.01em;
    }

.voice-card {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 30px;
    margin-top: 50px;
}

    .voice-card.reverse {
      flex-direction: row-reverse;
    }

.voice-img {
    width: 300px;
    min-width: 260px;
    height: 310px;
    object-fit: cover;
    object-position: top;
    border-radius: 4px;
    flex-shrink: 0;
    box-shadow: -1px -1px 10px rgba(0, 0, 0, 0.10);
}

  .voice-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 1rem;
    width: 100%;
}

.voice-quote {
    font-family: "Playfair Display", serif;;
    font-weight: 400;
    font-size: 32px;
    color: #555557;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.voice-body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #555557;
    line-height: 1.85;
    margin-bottom: 1.2rem;
}

.voice-name {
    font-family:"Playfair Display", serif;;
    font-weight: 400;
    font-size: 24px;
    color: #555557;
    margin-bottom: 0.2rem;
}

.voice-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #555557;
    letter-spacing: 0.04em;
}

    @media (max-width: 640px) {
      .voice-card,
      .voice-card.reverse {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .voice-img {
        width: 100%;
        min-width: unset;
        height: 400px;
      }
      .rpi-row {
    display: flex !important;
    flex-direction: column;
    gap: 12px !important;
}
.mobile_align {
    display: flex;
    flex-direction: column;
    gap: 0px;
}
.row.mobile_align .col-6 {
    width: 100%;
    margin-bottom: 6px !important;
}
    }
        /* ── Header ── */
    .section-header {
      background: #060606;
      text-align: center;
      padding: 60px 20px 40px;
    }

.section-header h1 {
    font-family:"Playfair Display", serif;;
    font-weight: 300;
    font-size: 48px;
    color: #f0ece4;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.section-header p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #888;
    max-width: 750px;
    margin: 0px auto;
    line-height: 1.75;
    letter-spacing: 0.02em;
}

    /* ── Slider Wrapper ── */
.slider-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 7;
  min-height: 320px;
  height: auto;
}
@supports (-webkit-touch-callout: none) {
  .slider-wrap {
    aspect-ratio: auto;
    height: 40vh;
    min-height: 300px;
  }
}
@media (max-width:768px){

.slide-caption{
bottom:25px;
}
.rpi-subtext {
    text-align: center;
}
.sticky-header .btn-invite span {
    color: #fecb60 !important;
}
.separator {
    position: absolute;
    top: 23%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 0.5px solid #ffffff73;
    z-index: 99;
    width: 20%;
}
div#dotsBar {
    display: none;
}
.upf-bottom-item {
    width: 100%;
    text-align: center;
}
span.upf-bottom-sep.pri {
    display: none;
}

span.upf-bottom-sep.dis {
    display: none;
}
.rpi-form-wrap {
    padding: 0px 10px;
}

}

    .slides {
      display: flex;
      height: 100%;
      transition: transform 0.85s cubic-bezier(0.77, 0, 0.18, 1);
      will-change: transform;
    }

    .slide {
      flex: 0 0 100%;
      height: 100%;
      position: relative;
      overflow: hidden;
    }

    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transform: scale(1.04);
      transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .slide.active img {
      transform: scale(1);
    }

    /* Dark gradient overlay at bottom */
    .slide::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        transparent 45%,
        rgba(0,0,0,0.55) 100%
      );
      pointer-events: none;
    }

    /* ── Slide Caption ── */
    .slide-caption {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      text-align: center;
      z-index: 10;
      width: 100%;
    }

    .slide-caption h3 {
      font-family: "Playfair Display", serif;;
      font-weight: 500;
      font-size: clamp(1.1rem, 2.5vw, 1.6rem);
      color: #fff;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    }

    /* ── Dots ── */
    .dots-bar {
      position: absolute;
      bottom: 16px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      gap: 6px;
      z-index: 20;
    }

    .dot {
      display: block;
      height: 3px;
      border-radius: 2px;
      background: rgba(255,255,255,0.38);
      cursor: pointer;
      transition: width 0.35s ease, background 0.35s ease;
      width: 20px;
    }

    .dot.active {
      width: 38px;
      background: #fff;
    }

    /* ── Arrows ── */
    .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 20;
      background: rgba(0,0,0,0.28);
      border: 1px solid rgba(255,255,255,0.18);
      color: #fff;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.25s, border-color 0.25s;
      backdrop-filter: blur(6px);
    }

    .arrow:hover {
      background: rgba(0,0,0,0.55);
      border-color: rgba(255,255,255,0.45);
    }

    .arrow svg { width: 16px; height: 16px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

    .arrow-prev { left: 18px; }
    .arrow-next { right: 18px; }

.upz-dialogue-section {
    background: #0d0c0b;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 32px;
    padding-bottom: 75px;
  }

  .upz-dialogue-inner {
    width: 100%;
    max-width: 960px;
    text-align: center;
  }

.upz-dialogue-heading {
    font-family: "Playfair Display", serif;;
    font-weight: 300;
    font-size: 48px;
    color: #D4D4D4;
    line-height: 1.22;
    letter-spacing: 0.01em;
    margin-bottom: 28px;
}

.upz-dialogue-body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #888;
    max-width: 900px;
    margin: 0 auto 52px;
    line-height: 1.85;
    letter-spacing: 0.02em;
}

  .upz-dialogue-body strong {
    font-weight: 500;
    color: #ccc;
  }

  .upz-logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }



.upz-logo-divider {
    width: 1px;
    height: 55px;
    background: rgba(255, 255, 255, 0.15);
    position: relative;
    top: 10px;
}
img.img-fluid.bobby {
    width: 180px;
    height: 50px;
    position: relative;
    top: 12px;
}
  .upz-logo-bobby-name {
    display: flex;
    align-items: baseline;
  }

  .rpi-section {
    background: #ede9e1;
    width: 100%;
    padding: 70px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .rpi-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
    width: 100%;
    margin: auto;
  }

  /* ── Left Image ── */
  .rpi-image-wrap {
    flex: 0 0 auto;
    width: clamp(280px, 38%, 440px);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.14);
  }

.rpi-image-wrap img {
    width: 535px;
    height: 498px;
    object-fit: cover;
    display: block;
}
a.rera {
    text-decoration: none;
    color: #d4d4d4;
}

  /* ── Right Form ── */
.rpi-form-wrap {
    flex: 1;
    position: relative;
    top: -3px;
}
.rpi-heading {
    font-family: "Playfair Display", serif;;
    font-weight: 400;
    font-size: 40px;
    color: #1A1414;
    line-height: 1.15;
    letter-spacing: 0px;
    margin-bottom: 10px;
}
h5.modal-title {
    font-family: "Playfair Display", serif;
    font-weight: 400;
    font-size: 20px;
    color: #1A1414;
    line-height: 1.15;
    letter-spacing: 0px;
    margin-bottom: 10px;
}

.rpi-subtext {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #777;
    letter-spacing: 0.02em;
    margin-bottom: 32px;
}
  .rpi-form {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .rpi-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
  }

  .rpi-field label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.68rem;
    color: #888;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 6px;
  }

  .rpi-field input {
    background: transparent;
    border: none;
    border-radius: 0px;
    border-bottom: 1px solid #b5b0a6;
    outline: none;
    padding: 0px 0 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 0.88rem;
    color: #1a1a1a;
    transition: border-color 0.25s;
    width: 100%;
  }

  .rpi-field input:focus {
    border-bottom-color: #1a1a1a;
  }

  .rpi-field input::placeholder {
    color: transparent;
  }

  /* Row for date + time */
  .rpi-row {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
  }

  .rpi-row .rpi-field {
    flex: 1;
    margin-bottom: 0;
  }

  /* Submit button */
  .rpi-btn {
    display: inline-block;
    padding: 13px 32px;
    border: 1px solid #1a1a1a;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1a1a1a;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
  }
    .rpi-btn1 {
    display: inline-block;
    padding: 13px 32px;
    border: 1px solid #1a1a1a;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1a1a1a;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
  }

  .rpi-btn:hover {
    background: #1a1a1a;
    color: #ede9e1;
  }
    .rpi-btn1:hover {
    background: #1a1a1a;
    color: #ede9e1;
  }
  img.img-fluid.mob_map {
    display: none;
}
p.and {
display: none;
}

  /* ── Responsive ── */
  @media (max-width: 720px) {
    .rpi-inner {
      flex-direction: column;
      gap: 36px;
    }
    .rpi-image-wrap {
      width: 100%;
    }
      #slides .slide:nth-child(6) {
    display: none;
  }
  img.img-fluid.mob_map {
    display: block;
}
  img.img-fluid.desk_map {
    display: none;
}
    h1.banner_text.mob {
    display: block;
}

p.and {
    font-size: 15px;
    font-weight: 500;
    color: #a8a8af;
    line-height: 1.7;
    text-align: center;
    display: block;
    margin-top: 20px;
}

.logo-wrap {
    position: relative;
    top: 60px;
}
.rpi-btn1 {
    border-radius: 0px;
}

  }

span.modal_para {
    display: block;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    margin-top: 10px;
}
.checkbox-wrap {
    display: flex;
    align-items: flex-start !important;
    gap: 10px;
    padding: 10px 0px;
    position: relative;
    top: -15px;
}
button.btn-close {
    position: relative !important;
    top: -24px !important;
}

.upf-footer {
    background: #060606;
    padding: 52px 50px;
    font-family: 'Montserrat', sans-serif;
    padding-bottom: 20px;
  }

  /* ── Top Row ── */
  .upf-top {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  /* Joint Initiative label */
.upf-joint-label {
    font-size: 16px;
    font-weight: 400;
    color: #D4D4D4;
    letter-spacing: 0.06em;
    margin-bottom: 18px;
}

  /* Col 1 – ASPH Logo */
  .upf-col-asph {
    flex: 0 0 auto;
    min-width: 180px;
  }

.upf-asph-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0px;
    position: relative;
    top: -11px;
}

  /* Red bracket icon */
  .upf-asph-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }

  .upf-asph-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
  }

  .upf-asph-text span {
    font-size: 0.58rem;
    font-weight: 400;
    color: #ccc;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

.upf-col-addr {
    font-size: 13px;
    font-weight: 500;
    color: #a8a8af;
    line-height: 1.7;
}

  /* Vertical divider */
  .upf-vdivider {
    width: 1px;
    background: rgba(255,255,255,0.12);
    align-self: stretch;
    flex-shrink: 0;
  }

  /* Col 2 – Ambuja */
  .upf-col-ambuja {
    flex: 0 0 auto;
    min-width: 200px;
  }

  .upf-ambuja-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: clamp(1.3rem, 2.2vw, 1.7rem);
    color: #fff;
    letter-spacing: 0.01em;
    margin-bottom: 16px;
  }

  /* Col 3 – Project Address */
  .upf-col-project {
    flex: 1;
    min-width: 200px;
  }

.upf-col-title {
    font-size: 16px;
    font-weight: 500;
    color: #D4D4D4;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}

.upf-col-text {
    font-size: 14px;
    font-weight: 300;
    color: #a8a8af;
    line-height: 1.75;
    margin-bottom: 24px;
}

  /* Col 4 – Contact */
  .upf-col-contact {
    flex: 0 0 auto;
    min-width: 180px;
  }

.upf-contact-link {
    display: block;
    font-size: 14px;
    font-weight: 300;
    color: #a8a8af;
    text-decoration: none;
    line-height: 1.9;
    transition: color 0.2s;
}

  .upf-contact-link:hover { color: #fff; }

  /* Social icons */
  .upf-socials {
    display: flex;
    gap: 10px;
    margin-top: 16px;
  }

  .upf-social-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
  }

  .upf-social-btn:hover {
    border-color: #fff;
    color: #fff;
  }

  .upf-social-btn svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
  }

  /* ── Bottom Bar ── */
  .upf-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 0;
  }

.upf-bottom-item {
    font-size: 14px;
    font-weight: 300;
    color: #D4D4D4;
    letter-spacing: 0.03em;
}
  .upf-bottom-sep {
    font-size: 0.7rem;
    color: #444;
    margin: 0 16px;
  }

.upf-bottom-link {
    font-size: 14px;
    font-weight: 300;
    color: #D4D4D4;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: color 0.2s;
}

  img.img-fluid.ambuja-logo {
    width: 193px;
    height: 24px;
}

  .upf-bottom-link:hover { color: #ccc; }

  /* Responsive */
  @media (max-width: 768px) {
    .upf-vdivider { display: none; }
    .upf-top { gap: 28px; }
    .video-wrapper {
    width: 100% !important;
    height: 481px;

}
.section-voices {
    background-color: #f5f0e8;
    padding: 60px 0rem;
    text-align: center;
}
  }

  @media only screen and (max-width: 600px) {


.top-bar {
    display: block;
    height: 740px;
}

.voice-card {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 10px;
    margin-top: 30px;
}
section.section-map .container {
    padding: 0px;
}
video.desktop {
    display: none;
}
img.img-fluid.mob {
    display: block;
    width: 430px;
    height: 777px;
}
.hero {
    position: relative;
    height: 777px;

}

.bottom-bar {
    display: none;
}
a.btn-invite {
    position: absolute;
    bottom: 60px;
    display: flex;
    margin: auto;
    justify-content: center;
    right: 0;
    left: 0;
    width: 70%;
}
img.img-fluid.bobby {
    width: 167px;
    height: 40px;
    position: relative;
    top: 12px;
}
img.img-fluid.unizen-logo {
    width: 200px;
    height: 60px;
    display: flex;
    margin: auto;
}
.section-two .heading {
    font-size: 24px;
}

.section-map {
    padding-top: 60px;
}

.section-two .tagline {
    margin-top: 50px;
}

.section-two {
    padding: 60px 0 2rem;
    padding-bottom: 50px;
}

.section-two .subtext {
    font-size: 14px;
    color: #555;
    line-height: 22px;
    width: 100%;
}
.section-two .tagline {
    font-size: 24px;
}
.section-map .map-heading {
    font-size: 24px;
    margin-bottom: 25px;
}
.section-voices .voices-heading {
    font-size: 24px;
    margin-bottom: 30px;
}
.voice-quote {
    font-size: 20px;
    text-align: center;

}
.voice-body {
    font-size: 14px;
    text-align: center;
}
.voice-name {
    font-size: 16px;
    text-align: center;
}
.voice-title {
    font-size: 14px;
    margin-bottom: 20px;
            text-align: center;
}
section.section-voices {
    padding-bottom: 30px;
}
.section-header h1 {
    font-size: 24px;
}
.section-header p {
    font-size: 14px;
}
.slide-caption h3 {
    font-size: 20px;
}
.upz-dialogue-heading {
    font-size: 24px;
}
.upz-dialogue-body {
    font-size: 14px;
    max-width: 100%;
    margin: 0 auto 42px;
}
.upz-logos-row {
    gap: 12px;
    flex-wrap: initial;
}
.rpi-image-wrap {
    display: none;
}
.rpi-heading {
    font-size: 24px;
    text-align: center;
}
.rpi-section {
    padding: 60px 0px;
}
.rpi-subtext {
    font-size: 14px;
}
button.rpi-btn {
    display: flex;
    margin: auto;
}
.upf-top {
    gap: 15px;
}
p.upf-joint-label {
    display: none;
}
.upf-asph-logo {
    margin: auto;
    justify-content: center;
}
p.upf-col-title {
    text-align: center;
}
p.upf-col-text {
    text-align: center;
}
a.upf-contact-link {
    text-align: center;
}
.upf-col-asph {
    flex: 0 0 auto;
    min-width: 100%;
    display: flex;
    flex-direction: column;
}
p.upf-col-addr {
    text-align: center;
    margin-bottom: 10px;
}
.checkbox-wrap {
    align-items: flex-start;
}
.back-top {

    right: 10px !important;
}
.mobile-fixed-bar {
    display: none !important;
}
.upf-col-ambuja {
    flex: 0 0 auto;
    min-width: 100%;
    display: flex;
    flex-direction: column;
}
img.img-fluid.ambuja-logo {
    width: 193px;
    height: 24px;
    display: flex;
    margin: auto;
}
.upf-col-project {
    flex: 1;
    min-width: 100%;
    text-align: center;
}
.upf-col-contact {
    flex: 0 0 auto;
    min-width: 100%;
    display: flex;
    flex-direction: column;
    margin: auto;
    text-align: center;
}
.upf-socials {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    justify-content: center;
    margin-bottom: 20px;
}
.map-image-wrap {
    position: relative;
    line-height: 0;
    padding-bottom: 0px;
}
.video-wrapper {
    width: 100%;
    height: 100%;

}
.upf-footer {
    background: #060606;
    padding: 52px 0 0;
    font-family: 'Montserrat', sans-serif;
    padding-bottom: 10px;
}
}



/* Back to top button */
  /* ===== BACK TO TOP BUTTON ===== */
.back-top {
    position: fixed;
    bottom: 70px;
    right: 36px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 0.5px solid #bd7f2f;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.35s ease, transform 0.35s ease, background 0.25s;
}
img.img-fluid.walk {
    width: 60px;
    height: 60px;
}

    /* Visible state — added by JS on scroll */
    .back-top.visible {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .back-top:hover {
      background: rgba(184, 137, 58, 0.15);
    }

    .back-top svg {
      width: 20px;
      height: 24px;
      overflow: visible;
    }

     /* =============================================
     MOBILE FIXED BOTTOM BAR
     Only visible on mobile (max-width: 768px)
  ============================================= */
  .mobile-fixed-bar {
    display: none; /* hidden on desktop */
  }

  @media (max-width: 768px) {
.mobile-fixed-bar {
    display: flex;
    position: fixed;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 9999;
    height: 56px;
}

    .mobile-bar-btn {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      text-decoration: none;
      cursor: pointer;
      transition: opacity 0.2s ease;
    }

    .mobile-bar-btn:active {
      opacity: 0.85;
    }

    /* Left button — Brochure: dark/black background */
    .mobile-bar-brochure {
      background: #1a1710;
      color: #c9a44a;
      border-right: 1px solid rgba(201, 164, 74, 0.3);
    }

    /* Right button — Call Us: gold background */
    .mobile-bar-call {
      background: #c9a44a;
      color: #ffffff;
    }
        .top-bar{
        position: relative !important;
        box-shadow: none !important;
        background: transparent;
    }

    .sticky-logo{
        display:none !important;
    }
.normal-logo {
    display: flex !important;
    margin: auto;
    width: 200px;
    height: 60px;
}
.sticky-header .btn-invite {
    border: 1px solid #fff !important;
    color: #fff !important;
}
span.coma {
    display: none;
}
span#break {
    display: block;
}
.project {
    padding-top: 20px;
}

  }


/*==== otp form =====*/

.otp-form {

    padding: 50px;

    height: 100%;

    background: #fff;

    border-radius: 8px;

    display: flex;

    align-items: center;

}

.otp-container {

    border-radius: 12px;

    text-align: center;

    width: 300px;

    margin: 0 auto;

}



    .otp-container h2 {

      margin-bottom: 20px;

      color: #333;

    }



    .otp-inputs {

      display: flex;

      justify-content: space-between;

      margin-bottom: 20px;

    }



    .otp-inputs input {

      width: 40px;

      height: 45px;

      font-size: 20px;

      text-align: center;

      border: 1px solid #ccc;

      border-radius: 8px;

      outline: none;

    }



    .otp-inputs input:focus {

      border-color: #d4a55a;

    }



    .resend-btn {

      background-color: transparent;

      border: none;

      color: #1a1a1a;

      cursor: pointer;

      font-size: 14px;

      text-decoration: underline;

      margin-top: 10px;

    }





.rip-btn1 {
      display: inline-block;
    padding: 13px 32px;
    border: 1px solid #1a1a1a;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1a1a1a;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
}



    .submit-btn:hover {

      background-color: #d4a55a;

    }

.checkbox-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0px;
    position: relative;
    top: -15px;
}

.checkbox-wrap input[type="checkbox"] {
  margin-top: 4px; /* fine alignment */
}

.checkbox-wrap p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}
section.privacy-policy p {
    text-align: left;
}
section.privacy-policy li {
    text-align: left;
}
.pdf {
    padding: 12px;
    font-size: 11px;
    background: #f5f0e8;
    font-weight: 500;
    border-radius: 2px;
}
.pdf a.rera {
    text-decoration: none;
    color: #060606;
    transition: 0.5s;
}

.pdf:hover {
    background:transparent;
    color: #fff;
    border: 1px solid #f5f0e8;
    transition: 0.5s;
}

.pdf:hover a.rera {
    color: #fff;
    transition: 0.5s;
}