* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
}

body {
  background: #fff;
}

/* ================= HEADER ================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #0b1220;
  color: #fff;
}

.top-bar {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  padding: 6px 40px;
  background: #020617;
  font-size: 14px;
}

.top-bar a {
  color: #c9a24d;
  text-decoration: none;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
}

.logo {
  font-size: 26px;
  font-weight: 700;
}

.menu {
  display: flex;
  gap: 30px;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.menu-btn {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* ================= HERO ================= */
.hero-section {
  margin-top: 90px;
  padding: 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 15px;
}

/* ===== LEFT BIG SLIDER ===== */
.hero-left {
  position: relative;
  height: 560px;
  border-radius: 18px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.6));
}

.hero-text {
  position: absolute;
  left: 40px;
  bottom: 40px;
  color: #fff;
  z-index: 2;
}

.hero-text h1 {
  font-size: 42px;
}

.hero-text p {
  font-size: 18px;
  margin-top: 8px;
}

/* ===== RIGHT SIDE (30%) ===== */
.hero-right {
  display: flex;
  flex-direction: column;
  height: 560px; /* SAME as big image */
  gap: 24px;
}

.hero-small {
  position: relative;
  flex: 1;
  border-radius: 18px;
  overflow: hidden;
  margin-right: 10px;
}

.hero-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 4px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-left {
    height: 420px;
  }

  .hero-right {
    height: auto;
  }

  .hero-small {
    height: 220px;
  }

  .hero-text h1 {
    font-size: 30px;
  }
}

@media (max-width: 600px) {
  .top-bar {
    display: none;
  }

  .navbar {
    padding: 12px 20px;
  }

  .menu {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #020617;
    flex-direction: column;
    padding: 20px;
    border-radius: 8px;
  }

  .menu.show {
    display: flex;
  }

  .menu-btn {
    display: block;
  }

  .hero-section {
    margin-top: 80px;
    padding: 16px;
  }
}

/* About section start here  */

.about-section {
  padding: 120px 40px;
  background: #ffffff;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.about-tag {
  display: inline-block;
  margin-bottom: 12px;
  color: #c9a24d;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
}

.about-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
}

.about-features {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.feature span {
  color: #c9a24d;
  font-size: 18px;
}

.about-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 36px;
  background: #0b1220;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content h2 {
    font-size: 30px;
  }
}

/* <!-- Brochure section start here  -- */
.brochure-section {
  padding: 100px 40px;
  background: #ffffff;
}

.brochure-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #000;
}

/* Cards wrapper */
.brochure-cards {
  display: flex;
  gap: 40px;
}

/* Single card */
.brochure-card {
  flex: 1;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.brochure-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* Image */
.brochure-img {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #ddd;
  margin-bottom: 24px;
}

.brochure-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.brochure-card:hover img {
  transform: scale(1.05);
}

/* Button */
.brochure-btn {
  display: block;
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  background: #d6ab4a;
  color: #000;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #c49a3b;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.brochure-btn:hover {
  background: #c49a3b;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .brochure-cards {
    flex-direction: column;
    gap: 30px;
  }

  .brochure-title {
    font-size: 32px;
  }

  .brochure-btn {
    font-size: 18px;
  }
}

/* floor plan section  */
/* ================= FLOOR PLANS ================= */
.floor-section {
  padding: 110px 40px;
  background: #ffffff;
}

.floor-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #000;
}

/* GRID */
.floor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

/* CARD */
.floor-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 18px;
  padding: 28px 24px 36px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.floor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.18);
}

/* IMAGE */
.floor-img {
  position: relative;
  border: 1px solid #dcdcdc;
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 26px;
  overflow: hidden;
}

.floor-img img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  filter: blur(6px);
  transition: all 0.35s ease;
}

/* CLEAR ON HOVER */
.floor-card:hover .floor-img img {
  filter: blur(0);
  transform: scale(1.04);
}

/* OVERLAY TEXT */
.floor-img::after {
  content: "Click to View Plan";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.floor-card:hover .floor-img::after {
  opacity: 1;
}

/* TITLE */
.floor-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #111;
}

/* BUTTON */
.floor-btn {
  display: inline-block;
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  background: #d6ab4a;
  border: 1px solid #c49a3b;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.floor-btn:hover {
  background: #c49a3b;
  transform: translateY(-2px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .floor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .floor-grid {
    grid-template-columns: 1fr;
  }

  .floor-title {
    font-size: 32px;
  }

  .floor-img img {
    height: 220px;
  }
}
/* ================= LOCATION ADVANTAGES ================= */
.location-section {
  padding: 120px 40px;
  background: #ffffff;
}

.location-wrapper {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

/* LEFT */
.location-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1f2937;
}

.location-list {
  list-style: none;
  padding: 0;
}

.location-list li {
  font-size: 20px;
  margin-bottom: 26px;
  color: #374151;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: calc(var(--i) * 0.15s);
}

.location-list li span {
  color: #d6ab4a;
  font-weight: 700;
  margin-right: 8px;
}

/* RIGHT MAP */
.location-map {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
  transform: translateY(20px);
  opacity: 0;
  animation: mapFade 1s ease forwards;
  animation-delay: 0.4s;
}

.location-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.location-map:hover img {
  transform: scale(1.05);
}

/* ANIMATIONS */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mapFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .location-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .location-title {
    font-size: 32px;
  }

  .location-list li {
    font-size: 18px;
  }
}

/* ================= GALLERY ================= */
.gallery-section {
  padding: 120px 0;
  background: #ffffff;
  overflow: hidden;
}

.gallery-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
  padding-left: 40px;
}

/* Wrapper */
.gallery-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Track */
.gallery-track {
  display: flex;
  gap: 40px;
  padding-left: 40px;
  will-change: transform;
}

/* Card */
.gallery-card {
  min-width: 420px;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  background: #fff;
  transition: transform 0.35s ease;
}

.gallery-card:hover {
  transform: translateY(-8px);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .gallery-title {
    font-size: 32px;
  }

  .gallery-card {
    min-width: 300px;
    height: 220px;
  }
}

/* ================= CONTACT FORM ================= */
.contact-section {
  padding: 120px 40px;
  background: #ffffff;
  max-width: 700px;
  margin: auto;
}

.contact-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Hide honeypot */
#website {
  display: none;
}

.field {
  position: relative;
}

.field input,
.field textarea {
  width: 100%;
  padding: 16px 18px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  outline: none;
  transition: all 0.3s ease;
}

.field textarea {
  min-height: 120px;
  resize: none;
}

.field input:focus,
.field textarea:focus {
  border-color: #d6ab4a;
  box-shadow: 0 0 0 3px rgba(214, 171, 74, 0.2);
}

/* Error text */
.error {
  color: #dc2626;
  font-size: 13px;
  margin-top: 6px;
  display: block;
  min-height: 16px;
}

/* Shake animation */
.shake {
  animation: shake 0.35s;
}

@keyframes shake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(5px);
  }
  75% {
    transform: translateX(-5px);
  }
  100% {
    transform: translateX(0);
  }
}

/* Submit button */
button {
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  background: #0b1220;
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Loader */
.loader {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Footer start here  */

/* ================= FOOTER ================= */
.site-footer {
  background: #0b1220;
  color: #d1d5db;
  padding: 80px 40px 30px;
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
}

/* Brand */
.footer-col.brand h3 {
  font-size: 26px;
  color: #fff;
  margin-bottom: 20px;
}

.footer-col.brand p {
  line-height: 1.7;
  font-size: 15px;
  max-width: 380px;
}

/* Headings */
.footer-col h4 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 18px;
}

/* Links */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 15px;
}

.footer-col ul li a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #d6ab4a;
}

/* Contact text */
.footer-col p {
  font-size: 15px;
  margin-bottom: 12px;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 60px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
  color: #9ca3af;
}

.footer-bottom .dev {
  color: #9ca3af;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 60px 20px 30px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* floating button  */

/* COMMON */
.float-left,
.float-right {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: inherit;
}

/* LEFT */
.float-left {
  left: 0;
}

.float-btn {
  background: #ff7a3d;
  color: #fff;
  padding: 14px 18px;
  border-radius: 0 30px 30px 0;
  text-decoration: none;
  font-weight: 600;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.float-btn:hover {
  background: #e8662c;
  padding-left: 26px;
}

/* RIGHT */
.float-right {
  right: 0;
}

.float-icon {
  background: #25d366;
  color: #fff;
  padding: 14px 20px;
  border-radius: 30px 0 0 30px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.float-icon.call {
  background: #ff7a3d;
}

.float-icon:hover {
  transform: translateX(-6px);
}

/* Pulse animation */
.float-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 122, 61, 0.6);
  }
  100% {
    box-shadow: 0 0 0 14px rgba(255, 122, 61, 0);
  }
}

/* ================= MOBILE ================= */
.mobile-bar {
  display: none;
}

/* MOBILE VIEW */
@media (max-width: 768px) {
  .float-left,
  .float-right {
    display: none;
  }

  .mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #0b1220;
    display: flex;
    z-index: 999;
  }

  .mobile-bar a {
    flex: 1;
    text-align: center;
    padding: 16px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-bar a:last-child {
    border-right: none;
    background: #ff7a3d;
  }
}

/* floating form css  */
/* OVERLAY */
.enquiry-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 998;
}

.enquiry-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* PANEL */
.enquiry-panel {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -25px 0 70px rgba(0, 0, 0, 0.25);
  transition: all 0.6s ease;
  z-index: 999;
  display: flex;
  flex-direction: column;
}

.enquiry-panel.show {
  right: 0;
}

/* HEADER */
.enquiry-header {
  padding: 26px 22px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.enquiry-logo {
  max-height: 42px;
}

.close-btn {
  font-size: 22px;
  cursor: pointer;
}

/* FORM */
.enquiry-form {
  padding: 34px 26px;
  display: flex;
  flex-direction: column;
  gap: 26px; /* premium spacing */
}

/* INPUTS (same class behaviour) */
.field input,
.field textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
}

.field textarea {
  min-height: 110px;
  resize: none;
}

.field input:focus,
.field textarea:focus {
  border-color: #ff7a3d;
  box-shadow: 0 0 0 3px rgba(255, 122, 61, 0.2);
}

/* ERROR */
.error {
  font-size: 13px;
  color: #dc2626;
  margin-top: 6px;
  min-height: 14px;
}

/* SHAKE */
.shake {
  animation: shake 0.35s;
}

@keyframes shake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-6px);
  }
  50% {
    transform: translateX(6px);
  }
  75% {
    transform: translateX(-6px);
  }
  100% {
    transform: translateX(0);
  }
}

/* BUTTON */
button {
  padding: 16px;
  background: #ff7a3d;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}

.loader {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .enquiry-panel {
    width: 100%;
  }
}

/* floating form css 
 */

/* OVERLAY */
.nr-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  z-index: 2000;
}
.nr-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* MODAL */
.nr-modal {
  position: fixed;
  top: 100px;
  left: -420px;
  width: 400px;
  height: 500px;
  background: #fff;
  box-shadow: -25px 0 70px rgba(0, 0, 0, 0.3);
  transition: 1s ease;
  z-index: 2001;
  display: flex;
  flex-direction: column;
}
.nr-modal.show {
  left: 0;
}

/* HEADER */
.nr-modal-header {
  padding: 24px 22px;
  background: #0b1220;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nr-modal-header h3 {
  font-size: 20px;
}
.nr-close {
  cursor: pointer;
  font-size: 22px;
}

/* FORM */
.nr-form {
  padding: 34px 26px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.nr-field input {
  width: 100%;
  padding: 16px 18px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 15px;
  outline: none;
}
.nr-field input:focus {
  border-color: #ff7a3d;
  box-shadow: 0 0 0 3px rgba(255, 122, 61, 0.2);
}

.nr-error {
  color: #dc2626;
  font-size: 13px;
  min-height: 14px;
  margin-top: 6px;
}

/* SHAKE */
.nr-shake {
  animation: nrShake 0.35s;
}
@keyframes nrShake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-6px);
  }
  50% {
    transform: translateX(6px);
  }
  75% {
    transform: translateX(-6px);
  }
  100% {
    transform: translateX(0);
  }
}

/* BUTTON */
.nr-submit {
  padding: 16px;
  background: #ff7a3d;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}
.nr-loader {
  display: none;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: nrSpin 1s linear infinite;
}
@keyframes nrSpin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .nr-modal {
    width: 100%;
  }
}
