/* ================= TOP HEADER ================= */
:root {
  --sun: #ff9500;
  --amber: #ffb800;
  --glow: #ff6b00;
  --cream: #fff8ec;
  --dark: #0a0800;
  --mid: #1a1200;
  --text-muted: rgba(255, 248, 236, 0.45);
  --bg: #f7f7f7;
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --solar: #f59e0b;
  --solar-light: #fef3c7;
  --solar-dark: #d97706;
  --green: #16a34a;
  --green-light: #dcfce7;
  --dark: #1a1a1a;
  --mid: #4a4a4a;
  --soft: #9a9a9a;
  --white: #ffffff;
  --border: #e2e2e2;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.06);
}
/* ================= TOP HEADER ================= */
.top-header-section {
  background: #1a1a2e;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
}
.top-one {
  color: white;
  font-size: 15px;
}

.top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  /* padding: 0 16px; */
  gap: 12px;
}
.top-right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.top-right a {
  color: #ccc;
  font-size: 15px;
  text-decoration: none;
  white-space: nowrap;
}
.top-right a:hover {
  color: #fff;
}
.marquee-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
  min-width: 0;
}

.track {
  display: flex;
  gap: 48px;
  width: max-content;
  white-space: nowrap;

  animation: moveLeftRight 20s linear infinite alternate;
}

.track a {
  color: #f0c040;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

.track a:hover {
  color: #fff;
}
.marquee-wrap:hover .track {
  animation-play-state: paused;
}
@keyframes moveLeftRight {
  /* Start Right Side */
  0% {
    transform: translateX(100%);
  }

  /* End Left Side */
  100% {
    transform: translateX(-100%);
  }
}
@keyframes bounce {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% + 250px));
  }
}

.top-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.top-left a {
  color: #aaa;
  font-size: 13px;
  text-decoration: none;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s;
}
.top-left a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}
.top-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

css.marquee-wrap:hover .track {
  animation-play-state: paused;
}
/* ================= MAIN HEADER ================= */



.logo img {
  width: 104px;
  padding: 10px;
  height: 56px;
}

.main-header {
  position: fixed;
  top: 40px; /* top-header height */
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  /* padding: 15px 0; */
}

/* ================= DESKTOP MENU ================= */

.nav-menu ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-menu ul li a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
  text-transform: uppercase;
}

.toggle-btn {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
}

/* active class code  */
.nav-menu ul li a.active{
   color: #ff6600;
   font-weight: 700;
}
/* ================= MOBILE ================= */
.close-btn {
  position: absolute;
    top: -24px;
    left: -1%;
  font-size: 35px;
  background: none;
  border: none;
  cursor: pointer;
  color: #000;
  display: none; /* default hidden */
  z-index: 2100;
}
  .nav-menu .close-btn {
    display: none;
  }
/* Sirf mobile menu open hone par show hoga */

@media (max-width: 1024px) {
      .nav-menu.active .close-btn {
    display: block;
    left:90%;
  }
  .toggle-btn {
    display: block;
    cursor: pointer;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    padding: 50px 20px;
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    z-index: 2000;
  }
  .main-header {
    display: flex;
    justify-content: space-between;
  }
  .nav-menu.active {
    left: 0;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 25px;
  }

  .button-sec {
    display: none;
  }

  /* .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 1500;
  } */
}

/* ===============================
   PAGE CONTENT DEMO
================================ */
.content {
  margin-top: 160px;
  padding: 50px;
  text-align: center;
}
/* /* ----------footer code start----------- * */
.us-col img {
  width: 200px;
}
.us-col h2 {
  color: #fff;
}
.us-footer {
  background: #111827;
  color: #cbd5e1;
  padding: 70px 0 0;
  font-family: Arial, sans-serif;
}

.us-footer-inner {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.us-col {
  flex: 1;
}

.us-col h3 {
  color: #fff;
  margin-bottom: 20px;
  position: relative;
}

.us-col h3::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #22c55e;
  position: absolute;
  left: 0;
  bottom: -8px;
}

.us-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.us-links li {
  margin-bottom: 12px;
}

.us-links a {
  text-decoration: none;
  color: #9ca3af;
  font-size: 14px;
  transition: 0.3s;
}

.us-links a i {
  margin-right: 8px;
  font-size: 12px;
  color: #9ca3af;
}

.us-links a:hover {
  color: #22c55e;
  padding-left: 5px;
}

.us-contact {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.us-contact i {
  color: #22c55e;
  font-size: 18px;
  margin-top: 4px;
}

.us-contact strong {
  color: #fff;
  display: block;
  margin-bottom: 5px;
}

.us-contact p {
  font-size: 14px;
  color: #9ca3af;
  margin: 0;
}

.us-social a {
  margin-right: 12px;
  color: #9ca3af;
  transition: 0.3s;
}

.us-social a:hover {
  color: #22c55e;
}

.us-bottom {
  text-align: center;
  padding: 18px;
  background: #0b1120;
  margin-top: 50px;
  font-size: 14px;
}
/* banner scetion start  */

.banner1 {
  background: url(../img/product1/n2.webp) no-repeat;
  background-size: cover;
  background-position: center;
  margin-bottom: 170px;
  height: 100vh !important;
  width: 100%;
  position: relative;
  top: 10%;
  left: 0;
  z-index: 1;
  margin-top: 47px;
  line-height: 2.5;
}
#banner2 {
  background: url(../img/141.webp) no-repeat;
  background-size: cover;
  background-position: center;
  margin-bottom: 170px;
  height: 100vh;
  width: 100%;
}
#banner3 {
  background: url(../img/142.webp) no-repeat;
  background-size: cover;
  background-position: center;
  margin-bottom: 170px;
  height: 100vh;
  width: 100%;
}

.banner-text {
  position: absolute;
  top: 20%;
  left: 10%;
  z-index: 1;
  padding: 10px 0;
}
.banner-text a {
  color: #fff;
}
.banner-text a span {
  color: #fff;
}
.banner-text h2 {
  color: #fff;
  width: 60%;
}
.banner-text p {
  color: #fff;
  letter-spacing: 0.5px;
}
.search-box {
  background: rgba(26, 70, 104, 0.51);
  padding: 22px 52px 55px 42px;
  /* display: inline-block; */
}
.search-box input {
  margin-top: 39px;
  height: 50px;
  width: 88rem;
}
.banner-text .search-box input {
  text-align: center;
}

.banner-text .search-box button {
  width: 200px;
  height: 50px;
  padding: 4px 0;
  margin: 0 -5px;
}
.over-flow-sec {
  gap: 20px;
}
.over-flow-top {
  font-size: 40px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin: 0px 7px;
  width: 200px;
  background-color: #fff;
  padding: 30px 20px;
  align-items: center;
  text-align: center;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  box-shadow:
    rgba(240, 46, 170, 0.4) 0px 5px,
    rgba(240, 46, 170, 0.3) 0px 10px,
    rgba(240, 46, 170, 0.2) 0px 15px,
    rgba(240, 46, 170, 0.1) 0px 20px,
    rgba(240, 46, 170, 0.05) 0px 25px;
}
.over-flow-top span {
  border: 1px solid white;
  border-radius: 50%;
  padding: 10px;
}
.over-flow-top:hover {
  background: #111827;
  color: white;
}
.over-flow-top:hover h5 {
  color: white;
}

.over-flow-top:hover svg {
  color: white !important;
  background-color: white;
  border-radius: 50%;
}
.over-flow-sec {
  position: absolute;
  bottom: -111px;
  left: 134px;
}

/* product section start */

.product-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 40px;
}

.product-card {
  border: 2px solid #4caf50;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  background: #fff;
  transition: 0.3s ease;
}

.product-card:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px -50px 36px -28px inset;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Zoom Effect */
.product-card:hover img {
  transform: scale(1.1);
}

/* Overlay */
.overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  /* opacity: 0; */
  transition: 0.3s ease;
  box-shadow:
    rgba(240, 46, 170, 0.4) -5px 5px,
    rgba(240, 46, 170, 0.3) -10px 10px,
    rgba(240, 46, 170, 0.2) -15px 15px,
    rgba(240, 46, 170, 0.1) -20px 20px,
    rgba(240, 46, 170, 0.05) -25px 25px;
}
.overlay .btn {
  width: 112px;
  font-size: 16px;
  padding: 5px 9px;
}
.product-card h5 {
  font-size: 18px;
  line-height: 3;
}
h3 {
  padding: 25px 3px;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 992px) {
  .product-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .product-section {
    grid-template-columns: 1fr;
  }
}

/* service section start */

/* #service h4{
  align-items: center;
  text-align: center;
} */

/* Heading */
.urja-heading {
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 2px;
  color: #2f9e44;
}

/* Wrapper */
.urja-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-content: center;
  margin-top: 50px;
}

/* Card Box */
.urja-box {
  width: 250px;
  background: #ffffff;
  padding: 35px 15px !important;
  border-radius: 20px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
  /* box-shadow: 0 10px 25px rgba(0,0,0,0.05); */
  transition: 0.3s ease;
}

.urja-box:hover {
  transform: translateY(-8px);
  box-shadow:
    rgba(6, 24, 44, 0.4) 0px 0px 0px 2px,
    rgba(6, 24, 44, 0.65) 0px 4px 6px -1px,
    rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
}

/* Icon */
.urja-icon img {
  width: 82px;
  height: 78px;
  margin: 0 auto;
  padding: 5px;
  border-radius: 50%;
  /* background: #f7f7f7; */
  border: #e9e9e9 1px solid;
}
/* Title */
.urja-title {
  font-size: 15px;
  /* margin-bottom: 25px; */
}

/* Buttons */
.urja-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* new section code start------------------------------------ */

.wc-section {
  background: #1f1f1f;
  padding: 80px 0;
  text-align: center;
  margin: 70px 0;
}

.wc-title {
  color: #fff;
  font-size: 40px;
  margin-bottom: 50px;
  letter-spacing: 2px;
}

.wc-wrapper {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.wc-box {
  background: #f2f2f2;
  width: 200px;
  /* height: 260px; */
  border-radius: 12px;
  padding: 40px 30px;
  transition: 0.4s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.wc-icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: #4caf50;
  transition: 0.4s ease;
}

.wc-heading {
  font-size: 20px;
  color: #333;
  transition: 0.4s ease;
}

/* Hover Effect */
.wc-box:hover {
  background: #000;
  transform: translateY(-8px);
}

.wc-box:hover .wc-heading {
  color: #fff;
}

.wc-box {
  position: relative;
  background: #f2f2f2;
  width: 260px;
  height: 260px;
  border-radius: 12px;
  padding: 40px 20px;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Black overlay */
.wc-box::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;

  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
  z-index: 1;
}

/* Hover pe fill */
.wc-box:hover::before {
  transform: scaleY(1);
}

/* Text/Icon above overlay */
.wc-icon,
.wc-heading {
  position: relative;
  z-index: 2;
  transition: 0.4s;
}

.wc-box:hover .wc-heading {
  color: #fff;
}
.wc-box {
  position: relative;
  background: #f2f2f2;
  width: 260px;
  height: 260px;
  border-radius: 12px;
  padding: 40px 20px;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Black overlay */
.wc-box::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;

  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
  z-index: 1;
}

/* Hover pe fill */
.wc-box:hover::before {
  transform: scaleY(1);
}

/* Text/Icon above overlay */
.wc-icon,
.wc-heading {
  position: relative;
  z-index: 2;
  transition: 0.4s;
}

.wc-box:hover .wc-heading {
  color: #fff;
}

/* About as page code strat  */
.about-sec {
  background: url(../img/banner-all.webp) no-repeat;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 30vh;
  padding: 100px 0;
  position: relative;
  z-index: 1;
  align-items: center;
  text-align: center;
  color: #fff;
}
.homesec a {
  color: #fff;
  font-size: 25px;
}
.about-sec h2 {
  color: #fff;
  font-size: 40px;
}
.homesec {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin: 15px 0;
}
.about-sec::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.7;
  z-index: -1;
}
.about-area {
  padding: 80px 0;
  background: #f6f6f6;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* LEFT */

.about-left {
  position: relative;
}

.about-main-img img {
  width: 100%;
  border-radius: 25px;
}

/* decorative lines */

/* .line{
width:4px;
height:120px;
background:#38b44a;
position:absolute;
left:-30px;
} */

.line1 {
  top: 80px;
}

.line2 {
  bottom: 80px;
}

/* RIGHT */

.about-tag {
  background: #38b44a;
  color: white;
  padding: 4px 10px;
  font-size: 12px;
}

.about-right h2 {
  font-size: 40px;
  margin: 15px 0;
}

.about-right p {
  color: #777;
  line-height: 1.7;
  margin-bottom: 25px;
}

.about-small-img img {
  width: 200px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.about-features {
  list-style: none;
  padding: 0;
}

.about-features li {
  margin-bottom: 10px;
}

.icon {
  width: 10px;
  height: 10px;
  background: #38b44a;
  display: inline-block;
  border-radius: 50%;
  margin-right: 10px;
}
.about-area {
  padding: 80px 0;
  background: #f6f6f6;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* LEFT */

.about-left {
  position: relative;
}

.about-main-img img {
  width: 100%;
  border-radius: 25px;
}

/* decorative lines */

/* .line{
width:4px;
height:120px;
background:#38b44a;
position:absolute;
left:-30px;
} */

.line1 {
  top: 80px;
}

.line2 {
  bottom: 80px;
}

/* RIGHT */

.about-tag {
  background: #38b44a;
  color: white;
  padding: 4px 10px;
  font-size: 12px;
}

.about-right h2 {
  font-size: 40px;
  margin: 15px 0;
}

.about-right p {
  color: #777;
  line-height: 1.7;
  margin-bottom: 25px;
}

.about-small-img img {
  width: 200px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.about-features {
  list-style: none;
  padding: 0;
}

.about-features li {
  margin-bottom: 10px;
}

.icon {
  width: 10px;
  height: 10px;
  background: #38b44a;
  display: inline-block;
  border-radius: 50%;
  margin-right: 10px;
}
/* About as page code end  */

/* ── COUNTER SECTION ── */
.counter-section {
  position: relative;
  padding: 120px 40px;
  overflow: hidden;
  background: var(--dark);
}

/* Radial sun glow behind everything */
.counter-section::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 149, 0, 0.18) 0%,
    rgba(255, 107, 0, 0.08) 40%,
    transparent 70%
  );
  pointer-events: none;
}

/* Subtle grid lines */
.counter-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 149, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 149, 0, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.counter-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

/* Eyebrow label */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  justify-content: center;
}

.eyebrow-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sun));
}

.eyebrow-line.right {
  background: linear-gradient(90deg, var(--sun), transparent);
}

.eyebrow-text {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sun);
  font-weight: 500;
}

/* Heading */
.counter-heading {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(48px, 7vw, 70px);
  line-height: 0.95;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 45px;
  color: var(--cream);
}

.counter-heading em {
  font-style: normal;
  background: linear-gradient(135deg, var(--amber), var(--glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Cards grid */
.counters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  border: 1px solid rgba(255, 149, 0, 0.1);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 149, 0, 0.06);
}

.counter-card {
  position: relative;
  padding: 48px 36px;
  background: rgba(10, 8, 0, 0.85);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  overflow: hidden;
  transition: background 0.4s ease;
  cursor: default;
}

.counter-card:hover {
  background: rgba(255, 149, 0, 0.06);
}

/* Corner accent */
.counter-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(225deg, rgba(255, 149, 0, 0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.counter-card:hover::before {
  opacity: 1;
}

/* Icon circle */
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 149, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  background: rgba(255, 149, 0, 0.06);
  font-size: 20px;
}

/* The big number */
.card-number {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(52px, 6vw, 76px);
  line-height: 1;
  color: var(--cream);
  display: flex;
  align-items: flex-end;
  gap: 4px;
  letter-spacing: 1px;
  font-size: 45px;
}

.card-number .suffix {
  font-size: 0.45em;
  color: var(--sun);
  padding-bottom: 10px;
  letter-spacing: 2px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
}

.card-number .prefix {
  font-size: 0.4em;
  color: var(--sun);
  align-self: flex-start;
  padding-top: 12px;
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
}

/* Progress bar */
.card-bar {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  margin: 6px 0;
  overflow: hidden;
}

.card-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--glow), var(--amber));
  width: 0%;
  transition: width 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Label & sub */
.card-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.3px;
}

.card-sub {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Divider between cards — handled by gap+background */

/* Bottom tagline strip */
.counter-footer {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 300;
}

.footer-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 8px var(--sun);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

/* Animated number counter */
.count-display {
  display: inline-block;
  min-width: 3ch;
}

@media (max-width: 600px) {
  .counter-section {
    padding: 80px 20px;
  }

  .counters-grid {
    grid-template-columns: 1fr 1fr;
  }

  .counter-card {
    padding: 32px 24px;
  }
}

/* pannel section strat code */
/* SECTION */
.marquee-section {
  position: relative;
  padding: 100px 0 90px;
  overflow: hidden;
  background: var(--dark);
}

.marquee-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 5%,
    var(--sun) 30%,
    var(--amber) 50%,
    var(--sun) 70%,
    transparent 95%
  );
  opacity: 0.35;
}

.marquee-section::after {
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 300px;
  background: radial-gradient(
    ellipse,
    rgba(255, 149, 0, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* HEADING — container ke andar */
.section-head {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-bottom: 60px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.eyebrow-dash {
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sun));
}

.eyebrow-dash.r {
  background: linear-gradient(90deg, var(--sun), transparent);
}

.eyebrow-label {
  font-size: 10.5px;
  letter-spacing: 4.5px;
  text-transform: uppercase;
  color: var(--sun);
  font-weight: 500;
}

.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: 1.5px;
  color: var(--cream);
  margin-bottom: 16px;
}

.section-title span {
  background: linear-gradient(120deg, var(--amber), var(--glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
  font-style: italic;
}

/* MARQUEE — full width section se bahar nikalta hai container se */
.marquee-outer {
  position: relative;
  z-index: 2;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
}

.marquee-outer::before,
.marquee-outer::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 160px;
  z-index: 3;
  pointer-events: none;
}

.marquee-outer::before {
  left: 0;
  background: linear-gradient(90deg, var(--dark) 0%, transparent 100%);
}

.marquee-outer::after {
  right: 0;
  background: linear-gradient(90deg, transparent 0%, var(--dark) 100%);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-track-2 {
  display: flex;
  width: max-content;
  animation: scroll-right 38s linear infinite;
  margin-top: 16px;
}

.marquee-track-2:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.marquee-list {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 0px;
}

/* LOGO CARD */
.logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 36px;
  border: 1px solid rgba(255, 149, 0, 0.08);
  border-radius: 14px;
  background: rgba(255, 149, 0, 0.03);
  transition:
    background 0.35s,
    border-color 0.35s,
    transform 0.35s;
  cursor: default;
  min-width: 170px;
}

.logo-card:hover {
  background: rgba(255, 149, 0, 0.09);
  border-color: rgba(255, 149, 0, 0.3);
  transform: translateY(-5px);
}

.logo-card img {
  width: 170px;
  height: 60px;

  /* object-fit: contain; */
  /* filter: brightness(0) invert(1) opacity(0.45); */
  transition: filter 0.35s;
}

.logo-card:hover img {
  filter: brightness(1) saturate(1.2)
    drop-shadow(0 0 8px rgba(255, 149, 0, 0.5)) opacity(1);
}

.logo-name {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 248, 236, 0.3);
  transition: color 0.35s;
}

.logo-card:hover .logo-name {
  color: var(--amber);
}

.logo-card.sm {
  padding: 18px 28px;
  min-width: 145px;
  border-radius: 10px;
}

.logo-card.sm img {
  width: 64px;
  height: 38px;
}

.logo-card.sm .logo-name {
  font-size: 10px;
}

.sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 149, 0, 0.18);
  flex-shrink: 0;
}

/* FOOTER — wapas container ke andar */
.marquee-footer {
  position: relative;
  z-index: 2;
  margin-top: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.footer-line {
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 149, 0, 0.2));
}

.footer-line.r {
  background: linear-gradient(90deg, rgba(255, 149, 0, 0.2), transparent);
}

.footer-text {
  font-size: 11px;
  color: rgba(255, 248, 236, 0.22);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 300;
}

/* why choose us section start  */
/* ═══════════════════════
     SECTION
  ═══════════════════════ */
.wcu-section {
  position: relative;
  /* padding: 110px 0 120px; */
  overflow: hidden;
  background: var(--dark);
}

/* Big faded background text */
.wcu-section .bg-word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(120px, 20vw, 260px);
  color: rgba(255, 149, 0, 0.03);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 8px;
  user-select: none;
  z-index: 0;
}

/* Diagonal light streak */
.wcu-section .light-streak {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 149, 0, 0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

.wcu-section .light-streak-2 {
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 107, 0, 0.05) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

/* Top border line */
.wcu-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 5%,
    var(--sun) 30%,
    var(--amber) 50%,
    var(--sun) 70%,
    transparent 95%
  );
  opacity: 0.3;
}

/* ═══════════════════════
     CONTAINER
  ═══════════════════════ */

/* ═══════════════════════
     HEADING BLOCK
  ═══════════════════════ */
.wcu-head {
  display: grid;
  grid-template-columns: 1fr;

  align-items: center;
  margin-bottom: 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  text-align: center;
  gap: 10px;
  margin-bottom: 20px;
}

.eyebrow-dash {
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sun));
}

.eyebrow-dash.r {
  background: linear-gradient(90deg, var(--sun), transparent);
}

.eyebrow-label {
  font-size: 10.5px;
  letter-spacing: 4.5px;
  text-transform: uppercase;
  color: var(--sun);
  font-weight: 500;
}

.wcu-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(48px, 6.5vw, 84px);
  line-height: 0.92;
  letter-spacing: 1px;
  text-align: center;
  align-items: center;
  color: var(--cream);
}

.wcu-title span {
  background: linear-gradient(120deg, var(--amber), var(--glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wcu-right-text {
  padding-bottom: 8px;
}

.wcu-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}

.wcu-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--glow), var(--amber));
  color: #0a0800;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  box-shadow: 0 4px 24px rgba(255, 107, 0, 0.25);
}

.wcu-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(255, 107, 0, 0.4);
}

.wcu-cta .arrow {
  font-size: 16px;
  transition: transform 0.3s;
}

.wcu-cta:hover .arrow {
  transform: translateX(4px);
}

/* ═══════════════════════
     FEATURES GRID
  ═══════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  background: rgba(255, 149, 0, 0.06);
  border: 1px solid rgba(255, 149, 0, 0.1);
  border-radius: 16px;
  overflow: hidden;
}

.feature-card {
  position: relative;
  padding: 44px 36px;
  background: #0a0800;
  overflow: hidden;
  transition: background 0.4s;
  cursor: default;
}

.feature-card:hover {
  background: rgba(255, 149, 0, 0.05);
}

/* Animated top border on hover */
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--glow), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

/* Number badge */
.card-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  color: rgba(255, 149, 0, 0.07);
  line-height: 1;
  letter-spacing: 1px;
  transition: color 0.4s;
}

.feature-card:hover .card-num {
  color: rgba(255, 149, 0, 0.14);
}

/* Icon box */
.card-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  border: 1px solid rgba(255, 149, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  background: rgba(255, 149, 0, 0.05);
  transition:
    border-color 0.4s,
    background 0.4s,
    transform 0.4s;
}

.feature-card:hover .card-icon-box {
  border-color: rgba(255, 149, 0, 0.5);
  background: rgba(255, 149, 0, 0.1);
  transform: scale(1.08) rotate(-3deg);
}

.card-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  letter-spacing: 1px;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.1;
}

.card-text {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
}

/* Highlight tag */
.card-tag {
  display: inline-block;
  margin-top: 20px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sun);
  border: 1px solid rgba(255, 149, 0, 0.25);
  padding: 4px 10px;
  border-radius: 3px;
  background: rgba(255, 149, 0, 0.05);
}

/* ═══════════════════════
     BOTTOM STATS BAR
  ═══════════════════════ */
.stats-bar {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 149, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 149, 0, 0.03);
}

.stat-item {
  padding: 28px 32px;
  border-right: 1px solid rgba(255, 149, 0, 0.08);
  transition: background 0.3s;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  background: rgba(255, 149, 0, 0.06);
}

.stat-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 38px;
  letter-spacing: 1px;
  background: linear-gradient(120deg, var(--amber), var(--glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* ═══════════════════════
     RESPONSIVE
  ═══════════════════════ */
@media (max-width: 900px) {
  .wcu-head {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(3) {
    border-top: 1px solid rgba(255, 149, 0, 0.08);
  }

  .stat-item:nth-child(4) {
    border-top: 1px solid rgba(255, 149, 0, 0.08);
  }
}

@media (max-width: 580px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }

  .wcu-section {
    padding: 80px 0;
  }
}

/* emi section code start */
/* * { margin: 0; padding: 0; box-sizing: border-box; } */

/* Demo page background */
/* body {
        font-family: 'Exo 2', sans-serif;
        background: linear-gradient(135deg, #0a1628 0%, #0d2137 40%, #0a1f0a 100%);
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
}*/

/* ===== FLOATING BUTTON ===== */
.emi-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
}

.fab-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  border: none;
  cursor: pointer;
  box-shadow:
    0 4px 20px rgba(255, 165, 0, 0.6),
    0 0 0 0 rgba(255, 165, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  animation: pulse 2.5s infinite;
  position: relative;
  overflow: hidden;
}

.fab-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
}

.fab-btn:hover {
  transform: scale(1.1);
  box-shadow:
    0 6px 30px rgba(255, 165, 0, 0.8),
    0 0 0 8px rgba(255, 165, 0, 0.15);
  animation: none;
}

.fab-btn svg {
  width: 28px;
  height: 28px;
  fill: #1a0a00;
  position: relative;
  z-index: 1;
}

.fab-label {
  font-family: "Rajdhani", sans-serif;
  font-size: 8px;
  font-weight: 700;
  color: #1a0a00;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

@keyframes pulse {
  0% {
    box-shadow:
      0 4px 20px rgba(255, 165, 0, 0.6),
      0 0 0 0 rgba(255, 165, 0, 0.4);
  }

  70% {
    box-shadow:
      0 4px 20px rgba(255, 165, 0, 0.6),
      0 0 0 18px rgba(255, 165, 0, 0);
  }

  100% {
    box-shadow:
      0 4px 20px rgba(255, 165, 0, 0.6),
      0 0 0 0 rgba(255, 165, 0, 0);
  }
}

.fab-tooltip {
  position: absolute;
  right: 74px;
  bottom: 50%;
  transform: translateY(50%);
  background: #1a2a1a;
  color: #ffd700;
  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 20px;
  white-space: nowrap;
  border: 1px solid rgba(255, 215, 0, 0.3);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  letter-spacing: 0.5px;
}

.fab-tooltip::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: rgba(255, 215, 0, 0.3);
}

.fab-btn:hover + .fab-tooltip {
  opacity: 1;
}

/* ===== CALCULATOR PANEL ===== */
.emi-panel {
  position: absolute;
  top: 2%;
  right: 20%;
  width: 360px;
  background: linear-gradient(160deg, #0d1f2d 0%, #0a1a0a 100%);
  border-radius: 24px;
  border: 1px solid rgba(255, 215, 0, 0.25);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(255, 165, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  z-index: 9998;
  transform: scale(0.5) translateY(40px);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: scroll;
}

.emi-panel.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

/* Panel Header */
.panel-header {
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  /* padding: 18px 20px; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.panel-header::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.panel-header::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.header-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-icon svg {
  width: 22px;
  height: 22px;
  fill: #1a0a00;
}

.header-title {
  font-family: "Rajdhani", sans-serif;
}

.header-title h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a0a00;
  line-height: 1;
  letter-spacing: 1px;
}

.header-title p {
  font-size: 11px;
  color: rgba(26, 10, 0, 0.7);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.close-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(26, 10, 0, 0.2);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: background 0.2s;
  color: #1a0a00;
  font-size: 18px;
  font-weight: 700;
}

.close-btn:hover {
  background: rgba(26, 10, 0, 0.35);
}

/* Panel Body */
.panel-body {
  padding: 20px;
}

/* Result Card */
.result-card {
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.08),
    rgba(255, 140, 0, 0.05)
  );
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  /* padding: 16px; */
  margin-bottom: 10px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.result-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

.result-label {
  font-family: "Rajdhani", sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255, 215, 0, 0.6);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.result-amount {
  font-family: "Rajdhani", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #ffd700;
  /* letter-spacing: 1px; */
  line-height: 1;
  transition: all 0.3s ease;
}

.result-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 3px 4px;
  text-align: center;
}

.stat-box .s-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.stat-box .s-value {
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #7ecf7e;
}

/* Input Fields */
.field {
  margin-bottom: 14px;
}

.field label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.field label span {
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #ffd700;
  text-transform: none;
  letter-spacing: 0;
}

.slider-wrap {
  position: relative;
}

input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  height: 5px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  cursor: pointer;
  box-shadow: 0 0 8px rgba(255, 165, 0, 0.6);
  transition: transform 0.2s;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

/* Divider */
.divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 215, 0, 0.15),
    transparent
  );
  margin: 16px 0;
}

/* Doughnut chart */
.chart-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.donut-chart {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.donut-chart svg {
  width: 80px;
  height: 80px;
  transform: rotate(-90deg);
}

.donut-circle-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.06);
  stroke-width: 10;
}

.donut-circle-interest {
  fill: none;
  stroke: #ff6b35;
  stroke-width: 10;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.6s ease;
}

.donut-circle-principal {
  fill: none;
  stroke: #ffd700;
  stroke-width: 10;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.6s ease;
}

.donut-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.donut-center span:first-child {
  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #ffd700;
}

.donut-center span:last-child {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.4);
}

.legend {
  flex: 1;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.legend-info {
  flex: 1;
}

.legend-info .l-name {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.legend-info .l-val {
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: white;
}

/* CTA */
.cta-btn {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  border: none;
  border-radius: 14px;
  font-family: "Rajdhani", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1a0a00;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 165, 0, 0.3);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 165, 0, 0.5);
}

.cta-btn:active {
  transform: translateY(0);
}

.loan-control {
  display: flex;
  align-items: center;
  gap: 10px;
}

.inc-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: #1a0a00;
}

.inc-btn:hover {
  transform: scale(1.1);
}

/* solar-cell-page */
/* .prime-container {
  padding: 20px;
  background-color: #f8f9fa;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
} */
.product-section1 {
  margin: 25px 0;
}

.product-card12 {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
  padding: 20px;
  position: relative;
  border: 1px solid #eaeaea;
  transition: transform 0.3s ease;
  margin-top: 120px;
  justify-content: space-between;
}
.pro-title {
  text-align: center;
  align-items: center;
}
/* hover-line effect */
.hover-line {
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 100vh;
  background: #0f0f0f; */
  margin: 20px 0;
  font-family: Arial, sans-serif;
}

.hover-underline {
  font-size: 2rem;
  color: #ffffff;
  position: relative;
  display: inline-block;
  h3 {
    line-height: 0.5;
  }
}

.hover-underline::after,
.hover-underline::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #ff0000, #00ffff);
  bottom: -5px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease-out;
}

.hover-underline::before {
  top: -5px;
  transform-origin: left;
}

.hover-underline:hover::after,
.hover-underline:hover::before {
  transform: scaleX(1);
}

.product-card12:hover {
  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset,
    rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
  /* box-shadow: rgba(136, 165, 191, 0.48) 6px 2px 16px 0px, rgba(255, 255, 255, 0.8) -6px -2px 16px 0px; */
}
/* .product-card12:hover {
  transform: translateY(-5px);
} */

.badge {
  background: #1f578f;
  position: absolute;
  right: 20px;
  background: #1f578f05;
  padding: 5px 6px;
  border-radius: 24px;
  font-weight: 600;
  color: #bdbdbd;
  border: 1px solid rgb(0, 0, 0) !important;
  font-size: 12px;
  text-align: center;
  justify-content: center;
  align-items: center !important;
  display: flex;
  margin: 58px 0;
}

.image-section img {
  width: 250px;
  height: 180px;
  /* object-fit: cover; */
  margin: 25px 0;
  border-radius: 12px;
}

.details-section h3 {
  font-size: 24px;
  margin: 0 0 0px 0;
  color: #1a1a1a;
  width: 76%;
}

.details-section {
  padding: 0 20px;
}

.price {
  font-size: 22px;
  font-weight: 700;
  color: #2e7d32;
  /* Solar Green */
  margin-bottom: 15px;
}

.price span {
  font-size: 14px;
  color: #666;
}

.description {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.banner-solar {
  background:
    linear-gradient(rgb(0 5 35 / 93%), rgb(69 1 72 / 70%)),
    url(../img/banner-all.webp) no-repeat;
  background-size: cover;
  background-position: center;
  height: 80vh;
  width: 100%;
  position: relative;
}

.banner-solar-text {
  /* display: inline-block; */
  padding: 14% 0;
  text-align: center;
  align-items: center;
  font-size: 20px;
  justify-content: space-around;
  /* position: absolute;
  top: 35%;
  left: 37%; */

  h1 {
    color: white;
  }

  a {
    color: white;
  }
}

.content-wrapper {
  display: flex;
}

/* whatsapp icon  */

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 100px;
  /* EMI icon ke upar lane ke liye */
  z-index: 999;
}

.whatsapp-float img {
  width: 90px;
  height: 90px;
}

/* Electric bee page start code  */
/* top headings */

.top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.top-grid div {
  background: #b9a6d8;
  padding: 15px;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
}

/* company table */

.company-grid {
  display: grid;
  grid-template-columns: 250px 1fr;
  border: 1px solid #ddd;
}

.label-n {
  background: #f3f3f3;
  padding: 12px;
  border-bottom: 1px solid #ddd;
  font-weight: 600;
  color: #555;
}

.value {
  padding: 12px;
  border-bottom: 1px solid #ddd;
  color: #333;
}

/* responsive */

@media (max-width: 768px) {
  .top-grid {
    grid-template-columns: 1fr;
  }

  .company-grid {
    grid-template-columns: 1fr;
  }

  .label-n {
    border-top: 1px solid #ddd;
  }
}

/* help pagge code start */
/* frequntly  question */
.faq-page {
  max-width: 740px;
  margin: 0 auto;
  margin-bottom: 100px;
}

/* ── HEADER ── */
.faq-header {
  margin-bottom: 2rem;
}

.faq-header h1 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.4px;
  margin-top: 60px;
}

.faq-header p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── CATEGORY SECTIONS ── */
.faq-section {
  margin-bottom: 2rem;
}

.faq-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
  margin-bottom: 8px;
  padding: 25px 0;
}

.faq-section-title::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dot-color, var(--hint));
  flex-shrink: 0;
}

/* ── DETAILS / ACCORDION ── */
details {
  background: var(--card);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
  transition: border-color 0.15s;
}

details[open] {
  border-color: var(--border-md);
}

/* ── SUMMARY (question row) ── */
summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.4;
  transition: background 0.12s;
}

summary::-webkit-details-marker {
  display: none;
}

summary::marker {
  display: none;
}

summary:hover {
  background: var(--bg);
}

/* ── CHEVRON via CSS only ── */
summary::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%239c9a92' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4,6 8,10 12,6'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.25s ease;
}

details[open] summary::after {
  transform: rotate(180deg);
}

/* ── ANSWER ── */
.faq-answer {
  font-size: 16px;
  color: var(--dark);
  line-height: 1.75;
  padding: 12px 16px 16px 16px;
  border-top: 0.5px solid var(--border);
}

/* ── CATEGORY COLORS (dot) ── */
.cat-basics {
  --dot-color: #f59e0b;
}

.cat-cost {
  --dot-color: #1d9e75;
}

.cat-install {
  --dot-color: #3b82f6;
}

.cat-maintain {
  --dot-color: #8b5cf6;
}

.cat-battery {
  --dot-color: #d85a30;
}

/* login page code start */
.login-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

.login-card {
  width: 100%;
  max-width: 400px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 100px;
}

.login-accent {
  height: 5px;
  background: linear-gradient(90deg, #c9a96e, #e8d5b0, #c9a96e);
}

.login-inner {
  padding: 35px;
}

.login-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.3);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  color: #c9a96e;
  margin-bottom: 20px;
}

.login-badge .dot {
  width: 6px;
  height: 6px;
  background: #c9a96e;
  border-radius: 50%;
}

.login-heading {
  margin-bottom: 20px;
}

.login-heading h2 {
  margin: 0;
  font-size: 24px;
  color: #1a1a1a;
}

.login-heading p {
  font-size: 13px;
  color: #777;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.login-field input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 3px;
  outline: none;
}

.login-field input:focus {
  border-color: #c9a96e;
  box-shadow: 0 0 0 2px rgba(201, 169, 110, 0.15);
}

.login-options {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

.login-options a {
  text-decoration: none;
  color: #c9a96e;
  font-size: 16px;
}

.login-btn {
  padding: 13px;
  border: none;
  background: #1a1a1a;
  color: #fff;
  letter-spacing: 1px;
  cursor: pointer;
}

.login-btn:hover {
  background: #c9a96e;
}

.login-footer {
  margin-top: 15px;
  font-size: 20px;
  text-align: center;
}

.login-footer a {
  color: #c9a96e;
  text-decoration: none;
}

/* regitration  page code */

.form-box {
  width: 360px;
  margin: 40px auto;
  background: #1f5f67;
  border-radius: 8px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.4);
  padding: 25px;
}

.form-box h2 {
  text-align: center;
  color: white;
  margin-bottom: 20px;
}

.form-box input {
  width: 100%;
  padding: 11px;
  margin-bottom: 14px;
  border: none;
  border-radius: 5px;
}

.form-box input:focus {
  box-shadow: 0 0 5px #2bbbad;
  outline: none;
}

.form-box button {
  width: 100%;
  padding: 12px;
  background: #2bbbad;
  border: none;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

.form-box button:hover {
  background: #249c92;
}

/* registration from */
/* ── Page wrapper ── */
.enq-page {
  background: var(--bg);
  height: 100%;
  margin: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "DM Sans", sans-serif;
  padding: 40px 20px;
  position: relative;
  overflow-x: hidden;
}

.enq-page::before {
  content: "";
  position: fixed;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 169, 110, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.enq-page::after {
  content: "";
  position: fixed;
  bottom: -80px;
  left: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 169, 110, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* ── Corner accents ── */
.enq-corner-tl,
.enq-corner-br {
  position: fixed;
  width: 120px;
  height: 120px;
  pointer-events: none;
  z-index: 0;
}

.enq-corner-tl {
  top: 24px;
  left: 24px;
  border-top: 2px solid rgba(201, 169, 110, 0.25);
  border-left: 2px solid rgba(201, 169, 110, 0.25);
}

.enq-corner-br {
  bottom: 24px;
  right: 24px;
  border-bottom: 2px solid rgba(201, 169, 110, 0.25);
  border-right: 2px solid rgba(201, 169, 110, 0.25);
}

/* ── Card ── */
.enq-card {
  background: var(--white);
  border-radius: 2px;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 520px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  animation: cardIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.enq-card-accent {
  height: 5px;
  background: linear-gradient(90deg, #c9a96e 0%, #e8d5b0 50%, #c9a96e 100%);
}

.enq-card-inner {
  padding: 44px 48px 48px;
}

/* ── Badge ── */
.enq-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 40px;
  padding: 5px 14px 5px 10px;
  margin-bottom: 22px;
  animation: fadeUp 0.6s 0.1s both;
}

.enq-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.enq-badge-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Heading ── */
.enq-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  animation: fadeUp 0.6s 0.15s both;
}

.enq-heading-em {
  font-style: italic;
  color: var(--gold);
}

/* ── Subtitle ── */
.enq-subtitle {
  font-size: 13.5px;
  color: var(--soft);
  margin-bottom: 34px;
  font-weight: 300;
  letter-spacing: 0.01em;
  animation: fadeUp 0.6s 0.2s both;
}

/* ── Divider ── */
.enq-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  animation: fadeUp 0.6s 0.22s both;
}

.enq-divider-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.enq-divider-icon {
  color: var(--gold);
  font-size: 14px;
  opacity: 0.7;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Form ── */
.enq-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.enq-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.enq-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  animation: fadeUp 0.5s both;
}

.enq-field:nth-child(1) {
  animation-delay: 0.25s;
}

.enq-field:nth-child(2) {
  animation-delay: 0.3s;
}

.enq-field:nth-child(3) {
  animation-delay: 0.35s;
}

.enq-field:nth-child(4) {
  animation-delay: 0.4s;
}

.enq-field:nth-child(5) {
  animation-delay: 0.45s;
}

.enq-field:nth-child(6) {
  animation-delay: 0.5s;
}

/* ── Label ── */
.enq-label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--mid);
}

.enq-req {
  color: var(--gold);
  margin-left: 2px;
}

/* ── Input wrap ── */
.enq-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.enq-input-icon {
  position: absolute;
  left: 14px;
  color: var(--gold-light);
  font-size: 15px;
  pointer-events: none;
  transition: color 0.25s;
}

/* ── Input ── */
.enq-input {
  width: 100%;
  padding: 12px 5px;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: var(--dark);
  background: var(--bg);
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    background 0.2s;
  outline: none;
  letter-spacing: 0.01em;
  margin: 10px 0;
  height: 100%;
}

.enq-input::placeholder {
  color: #c8c8c8;
  font-weight: 300;
}

.enq-input:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.12);
}

.enq-input-wrap:focus-within .enq-input-icon {
  color: var(--gold);
}

/* ── Button wrap ── */
.enq-btn-wrap {
  margin-top: 6px;
  animation: fadeUp 0.5s 0.55s both;
}

/* ── Submit button ── */
.enq-btn-submit {
  width: 100%;
  padding: 15px 0px;
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: 2px;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    background 0.3s,
    transform 0.15s,
    box-shadow 0.3s;
  display: block;
  text-align: center;
}

.enq-btn-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.07),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.enq-btn-submit:hover::before {
  transform: translateX(100%);
}

.enq-btn-submit:hover {
  background: var(--gold);
  box-shadow: 0 8px 28px rgba(201, 169, 110, 0.35);
}

.enq-btn-submit:active {
  transform: scale(0.99);
}

/* ── Shimmer ── */
.enq-btn-shimmer {
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-light),
    transparent
  );
  margin-top: 4px;
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 1px;
}

.enq-btn-submit:hover + .enq-btn-shimmer {
  opacity: 1;
}

/* ── Footer note ── */
.enq-footer-note {
  text-align: center;
  font-size: 11.5px;
  color: #c0c0c0;
  margin-top: 15px;
  letter-spacing: 0.03em;
  animation: fadeUp 0.5s 0.6s both;
}

.enq-footer-note1 {
  text-align: center;
  margin-top: 12px;
}

.enq-footer-note1 a {
  color: var(--glow);
  text-decoration: none;
  font-size: 16px;
  text-align: center;
}

.enq-footer-link {
  color: var(--gold);
  text-decoration: none;
}

/* ── Success ── */
.enq-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
  text-align: center;
}

.enq-success-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 30px;
}

.enq-success-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.enq-success-msg {
  font-size: 14px;
  color: var(--soft);
  line-height: 1.6;
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .enq-card-inner {
    padding: 32px 24px 36px;
  }

  .enq-field-row {
    grid-template-columns: 1fr;
  }

  .enq-heading {
    font-size: 30px;
  }
}

/* forget passward page code  */
.fp-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  margin: 100px 0;
}

.fp-card {
  width: 100%;
  max-width: 400px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.fp-accent {
  height: 5px;
  background: linear-gradient(90deg, #c9a96e, #e8d5b0, #c9a96e);
}

.fp-inner {
  padding: 35px;
}

.fp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.3);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  color: #c9a96e;
  margin-bottom: 20px;
}

.fp-dot {
  width: 6px;
  height: 6px;
  background: #c9a96e;
  border-radius: 50%;
}

.fp-heading {
  margin-bottom: 20px;
}

.fp-title {
  font-size: 22px;
  color: #1a1a1a;
  font-weight: 600;
}

.fp-sub {
  font-size: 13px;
  color: #777;
}

.fp-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.fp-field input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 3px;
  outline: none;
}

.fp-field input:focus {
  border-color: #c9a96e;
  box-shadow: 0 0 0 2px rgba(201, 169, 110, 0.15);
}

.fp-btn {
  padding: 13px;
  border: none;
  background: #1a1a1a;
  color: #fff;
  letter-spacing: 1px;
  cursor: pointer;
}

.fp-btn:hover {
  background: #c9a96e;
}

.fp-footer {
  margin-top: 15px;
  font-size: 12px;
  text-align: center;
}

.fp-footer a {
  font-size: 20px;
  color: #c9a96e;
  text-decoration: none;
}

/* ---bussness regisster page section code start */
.reg-wrapper {
  padding: 30px 0;
  display: flex;
  justify-content: center;
}

.reg-card {
  width: 100%;
  max-width: 1000px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.reg-accent {
  height: 5px;
  background: linear-gradient(90deg, #c9a96e, #e8d5b0, #c9a96e);
}

.reg-inner {
  padding: 30px;
}

.reg-heading {
  margin-bottom: 20px;
}

.reg-title {
  font-size: 28px;
  font-weight: 600;
  color: #1a1a1a;
}

.reg-field {
  margin-bottom: 25px;
}

.reg-label {
  font-size: 13px;
  color: #555;
  margin-bottom: 10px;
  display: block;
}

.reg-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 3px;
  outline: none;
}

.reg-textarea:focus {
  border-color: #c9a96e;
  box-shadow: 0 0 0 2px rgba(201, 169, 110, 0.15);
}

.reg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.reg-check {
  font-size: 13px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 6px;
}

.reg-check input {
  accent-color: #c9a96e;
}

.reg-btn-wrap {
  text-align: center;
}

.reg-btn {
  padding: 12px 30px;
  background: #1a1a1a;
  color: #fff;
  border: none;
  cursor: pointer;
  letter-spacing: 1px;
}

.reg-btn:hover {
  background: #c9a96e;
}

/* bussness registration page code :start */
/* ── Page ── */
.br-page {
  background: var(--bg);
  margin: 100px 0;
  font-family: "DM Sans", sans-serif;
  padding: 48px 20px 80px;
  position: relative;
  overflow-x: hidden;
}

.br-page::before {
  content: "";
  position: fixed;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 169, 110, 0.09) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.br-page::after {
  content: "";
  position: fixed;
  bottom: -80px;
  left: -80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 169, 110, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* ── Corner accents ── */
.br-corner-tl,
.br-corner-br {
  position: fixed;
  width: 100px;
  height: 100px;
  pointer-events: none;
  z-index: 0;
}

.br-corner-tl {
  top: 20px;
  left: 20px;
  border-top: 2px solid rgba(201, 169, 110, 0.2);
  border-left: 2px solid rgba(201, 169, 110, 0.2);
}

.br-corner-br {
  bottom: 20px;
  right: 20px;
  border-bottom: 2px solid rgba(201, 169, 110, 0.2);
  border-right: 2px solid rgba(201, 169, 110, 0.2);
}

/* ── Wrapper ── */
.br-wrapper {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Top badge + heading ── */
.br-top {
  text-align: center;
  margin-bottom: 40px;
  animation: brFadeUp 0.7s both;
}

.br-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 40px;
  padding: 5px 16px 5px 10px;
  margin-bottom: 18px;
}

.br-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: brPulse 2s infinite;
}

@keyframes brPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.br-badge-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
}

.br-main-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.br-main-heading-em {
  font-style: italic;
  color: var(--gold);
}

.br-main-sub {
  font-size: 14px;
  color: var(--soft);
  font-weight: 300;
  letter-spacing: 0.01em;
}

/* ── Progress steps ── */
.br-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 36px;
  animation: brFadeUp 0.7s 0.1s both;
}

.br-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}

.br-step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--soft);
  transition: all 0.3s;
}

.br-step.br-step-active .br-step-circle {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

.br-step.br-step-done .br-step-circle {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.br-step-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--soft);
  white-space: nowrap;
}

.br-step.br-step-active .br-step-label {
  color: var(--gold);
}

.br-step-line {
  width: 80px;
  height: 2px;
  background: var(--border);
  margin: 0 4px;
  margin-bottom: 22px;
  flex-shrink: 0;
  transition: background 0.3s;
}

.br-step-line.br-line-done {
  background: var(--green);
}

/* ── Card ── */
.br-card {
  background: var(--white);
  border-radius: 2px;
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 20px;
  animation: brFadeUp 0.6s 0.15s both;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
  
}
.br-card:hover {
box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
}
.br-card-accent {
  height: 4px;
  background: linear-gradient(90deg, #c9a96e 0%, #e8d5b0 50%, #c9a96e 100%);
}

.br-card-inner {
  padding: 36px 40px 40px;
  margin: 100px 0;
}

/* ── Section heading ── */
.br-section-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.br-section-icon {
  width: 38px;
  height: 38px;
  border-radius: 2px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.br-section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.br-section-num {
  margin-left: auto;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

/* ── Divider ── */
.br-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 28px;
}

/* ── Grid layouts ── */
.br-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.br-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.br-grid-1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

/* ── Field ── */
.br-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.br-label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--mid);
}

.br-req {
  color: var(--gold);
  margin-left: 2px;
}

.br-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.br-input-icon {
  position: absolute;
  left: 13px;
  color: var(--gold-light);
  font-size: 14px;
  pointer-events: none;
  transition: color 0.25s;
}

.br-input,
.br-select,
.br-textarea {
  width: 100%;
  padding: 11px 13px 11px 2px;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  font-family: "DM Sans", sans-serif;
  font-size: 13.5px;
  color: var(--dark);
  background: var(--bg);
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    background 0.2s;
  outline: none;
  letter-spacing: 0.01em;
}

.br-input::placeholder,
.br-textarea::placeholder {
  color: #c4c4c4;
  font-weight: 300;
}

.br-input:focus,
.br-select:focus,
.br-textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.11);
}

.br-input-wrap:focus-within .br-input-icon {
  color: var(--gold);
}

.br-select {
  padding-left: 38px;
  cursor: pointer;
  appearance: none;
}

.br-select-arrow {
  position: absolute;
  right: 13px;
  color: var(--soft);
  font-size: 11px;
  pointer-events: none;
}

.br-textarea {
  padding: 13px 15px;
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

/* no-icon inputs */
.br-input-wrap.br-no-icon .br-input,
.br-input-wrap.br-no-icon .br-select {
  padding-left: 13px;
}

/* ── Checkbox group ── */
.br-cb-group-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.br-cb-group-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(201, 169, 110, 0.25);
}

.br-cb-select-all {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  cursor: pointer;
}

.br-cb-select-all-box {
  width: 18px;
  height: 18px;
  border-radius: 2px;
  border: 2px solid var(--gold);
  background: rgba(201, 169, 110, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}

.br-cb-select-all-box.br-checked {
  background: var(--gold);
  border-color: var(--gold);
}

.br-cb-select-all-box.br-checked::after {
  content: "✓";
  color: white;
  font-size: 11px;
  font-weight: 700;
}

.br-cb-select-all-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.02em;
}

.br-cb-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px 14px;
  margin-bottom: 8px;
}

.br-cb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 7px 10px;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: all 0.2s;
}

.br-cb-item:hover {
  background: rgba(201, 169, 110, 0.05);
  border-color: rgba(201, 169, 110, 0.2);
}

.br-cb-item.br-cb-selected {
  background: rgba(201, 169, 110, 0.08);
  border-color: rgba(201, 169, 110, 0.35);
}

.br-cb-box {
  width: 17px;
  height: 17px;
  border-radius: 2px;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}

.br-cb-item.br-cb-selected .br-cb-box {
  background: var(--gold);
  border-color: var(--gold);
}

.br-cb-item.br-cb-selected .br-cb-box::after {
  content: "✓";
  color: white;
  font-size: 10px;
  font-weight: 700;
}

.br-cb-text {
  font-size: 12px;
  color: var(--mid);
  line-height: 1.3;
}

.br-cb-item.br-cb-selected .br-cb-text {
  color: var(--dark);
  font-weight: 500;
}

/* ── Submit area ── */
.br-submit-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 40px;
  background: var(--white);
  border-radius: 2px;
  box-shadow: var(--shadow-card);
  animation: brFadeUp 0.6s 0.3s both;
  gap: 20px;
  flex-wrap: wrap;
}

.br-submit-note {
  font-size: 12px;
  color: var(--soft);
  line-height: 1.6;
  max-width: 420px;
}

.br-submit-link {
  color: var(--gold);
  text-decoration: none;
}

.br-btn-submit {
  padding: 14px 40px;
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: 2px;
  font-family: "DM Sans", sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    background 0.3s,
    transform 0.15s,
    box-shadow 0.3s;
  white-space: nowrap;
}

.br-btn-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.07),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.br-btn-submit:hover::before {
  transform: translateX(100%);
}

.br-btn-submit:hover {
  background: var(--gold);
  box-shadow: 0 8px 28px rgba(201, 169, 110, 0.35);
}

.br-btn-submit:active {
  transform: scale(0.99);
}

/* ── Success ── */
.br-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 70px 40px;
  text-align: center;
}

.br-success-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 34px;
}

.br-success-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.br-success-msg {
  font-size: 14px;
  color: var(--soft);
  line-height: 1.7;
}

/* ── Animation ── */
@keyframes brFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .br-grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .br-cb-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .br-card-inner {
    padding: 26px 22px 30px;
  }

  .br-main-heading {
    font-size: 30px;
  }

  .br-step-line {
    width: 40px;
  }

  .br-submit-area {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .br-grid-3,
  .br-grid-2 {
    grid-template-columns: 1fr;
  }

  .br-cb-grid {
    grid-template-columns: 1fr 1fr;
  }

  .br-steps {
    display: none;
  }
}

/* contect us from page code start */
/* ── Page ── */
.ur-page {
  background: var(--bg);
  min-height: 100vh;
  font-family: "DM Sans", sans-serif;
  padding: 48px 20px 80px;
  position: relative;
  overflow-x: hidden;
}

/* Warm sun glow top-right */
.ur-page::before {
  content: "";
  position: fixed;
  top: -160px;
  right: -160px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.1) 0%,
    rgba(201, 169, 110, 0.06) 40%,
    transparent 70%
  );
  pointer-events: none;
}

.ur-page::after {
  content: "";
  position: fixed;
  bottom: -80px;
  left: -80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(22, 163, 74, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Corner brackets */
.ur-corner-tl,
.ur-corner-br {
  position: fixed;
  width: 90px;
  height: 90px;
  pointer-events: none;
  z-index: 0;
}

.ur-corner-tl {
  top: 20px;
  left: 20px;
  border-top: 2px solid rgba(245, 158, 11, 0.22);
  border-left: 2px solid rgba(245, 158, 11, 0.22);
}

.ur-corner-br {
  bottom: 20px;
  right: 20px;
  border-bottom: 2px solid rgba(245, 158, 11, 0.22);
  border-right: 2px solid rgba(245, 158, 11, 0.22);
}

/* ── Wrapper ── */
.ur-wrapper {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Hero top ── */
.ur-hero {
  text-align: center;
  margin-bottom: 36px;
  animation: urUp 0.7s both;
}

.ur-sun {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow:
    0 0 0 10px rgba(245, 158, 11, 0.1),
    0 0 0 20px rgba(245, 158, 11, 0.05);
  font-size: 28px;
  animation: urSpin 18s linear infinite;
}

@keyframes urSpin {
  from {
    box-shadow:
      0 0 0 10px rgba(245, 158, 11, 0.1),
      0 0 0 20px rgba(245, 158, 11, 0.05);
  }

  50% {
    box-shadow:
      0 0 0 16px rgba(245, 158, 11, 0.14),
      0 0 0 30px rgba(245, 158, 11, 0.06);
  }

  to {
    box-shadow:
      0 0 0 10px rgba(245, 158, 11, 0.1),
      0 0 0 20px rgba(245, 158, 11, 0.05);
  }
}

.ur-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(245, 158, 11, 0.09);
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: 40px;
  padding: 5px 16px 5px 10px;
  margin-bottom: 16px;
}

.ur-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--solar);
  animation: urPulse 2s infinite;
}

@keyframes urPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.ur-badge-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--solar-dark);
}

.ur-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.ur-heading-em {
  font-style: italic;
  color: var(--solar);
}

.ur-subtitle {
  font-size: 13.5px;
  color: var(--soft);
  font-weight: 300;
  line-height: 1.6;
}

/* ── Steps ── */
.ur-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
  animation: urUp 0.7s 0.08s both;
}

.ur-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.ur-step-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--soft);
  transition: all 0.3s;
}

.ur-step.ur-active .ur-step-circle {
  border-color: var(--solar);
  background: var(--solar);
  color: var(--white);
}

.ur-step.ur-done .ur-step-circle {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.ur-step-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--soft);
  white-space: nowrap;
}

.ur-step.ur-active .ur-step-label {
  color: var(--solar-dark);
}

.ur-step.ur-done .ur-step-label {
  color: var(--green);
}

.ur-step-line {
  width: 70px;
  height: 2px;
  background: var(--border);
  margin: 0 4px;
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: background 0.3s;
}

.ur-step-line.ur-done-line {
  background: var(--green);
}

/* ── Card ── */
.ur-card {
  background: var(--white);
  border-radius: 2px;
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 18px;
  animation: urUp 0.6s 0.12s both;
}

.ur-card-accent {
  height: 4px;
  background: linear-gradient(90deg, #f59e0b 0%, #fde68a 50%, #f59e0b 100%);
}

.ur-card-inner {
  padding: 36px 40px 40px;
}

/* ── Section head ── */
.ur-sec-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.ur-sec-icon {
  width: 38px;
  height: 38px;
  border-radius: 2px;
  background: rgba(245, 158, 11, 0.09);
  border: 1px solid rgba(245, 158, 11, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.ur-sec-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
}

.ur-sec-num {
  margin-left: auto;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--solar);
  opacity: 0.8;
}

.ur-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 26px;
}

/* ── Grids ── */
.ur-g2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.ur-g1 {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 18px;
}

/* ── Field ── */
.ur-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.ur-label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--mid);
}

.ur-req {
  color: var(--solar);
  margin-left: 2px;
}

/* ── Input wrap ── */
.ur-iw {
  position: relative;
  display: flex;
  align-items: center;
}

.ur-ii {
  position: absolute;
  left: 13px;
  color: rgba(245, 158, 11, 0.4);
  font-size: 15px;
  pointer-events: none;
  transition: color 0.25s;
}

.ur-iw:focus-within .ur-ii {
  color: var(--solar);
}

/* ── Inputs ── */
.ur-input,
.ur-select {
  width: 100%;
  padding: 11px 13px 11px 38px;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  font-family: "DM Sans", sans-serif;
  font-size: 13.5px;
  color: var(--dark);
  background: var(--bg);
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    background 0.2s;
  outline: none;
  letter-spacing: 0.01em;
}

.ur-input::placeholder {
  color: #c4c4c4;
  font-weight: 300;
}

.ur-input:focus,
.ur-select:focus {
  border-color: var(--solar);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.ur-select {
  padding-left: 38px;
  cursor: pointer;
  appearance: none;
}

.ur-select-arrow {
  position: absolute;
  right: 13px;
  color: var(--soft);
  font-size: 11px;
  pointer-events: none;
}

/* no-icon variant */
.ur-iw.ur-ni .ur-input,
.ur-iw.ur-ni .ur-select {
  padding-left: 13px;
}

/* password toggle */
.ur-pw-toggle {
  position: absolute;
  right: 13px;
  cursor: pointer;
  color: var(--soft);
  font-size: 16px;
  user-select: none;
  transition: color 0.2s;
}

.ur-pw-toggle:hover {
  color: var(--solar);
}

/* ── Solar interest checkboxes ── */
.ur-cb-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 6px;
}

.ur-cb-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border-radius: 2px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  transition: all 0.2s;
}

.ur-cb-item:hover {
  border-color: rgba(245, 158, 11, 0.4);
  background: rgba(245, 158, 11, 0.04);
}

.ur-cb-item.ur-checked {
  border-color: var(--solar);
  background: var(--solar-light);
}

.ur-cb-box {
  width: 17px;
  height: 17px;
  border-radius: 2px;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.ur-cb-item.ur-checked .ur-cb-box {
  background: var(--solar);
  border-color: var(--solar);
}

.ur-cb-item.ur-checked .ur-cb-box::after {
  content: "✓";
  color: white;
  font-size: 10px;
  font-weight: 700;
}

.ur-cb-label {
  font-size: 12.5px;
  color: var(--mid);
  line-height: 1.3;
}

.ur-cb-item.ur-checked .ur-cb-label {
  color: var(--dark);
  font-weight: 500;
}

/* ── Radio: User Type ── */
.ur-radio-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.ur-radio-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  border-radius: 2px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  transition: all 0.2s;
  flex: 1;
  min-width: 130px;
}

.ur-radio-item:hover {
  border-color: rgba(245, 158, 11, 0.4);
  background: rgba(245, 158, 11, 0.04);
}

.ur-radio-item.ur-radio-selected {
  border-color: var(--solar);
  background: var(--solar-light);
}

.ur-radio-circle {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.ur-radio-item.ur-radio-selected .ur-radio-circle {
  border-color: var(--solar);
  background: var(--solar);
}

.ur-radio-item.ur-radio-selected .ur-radio-circle::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
}

.ur-radio-icon {
  font-size: 16px;
}

.ur-radio-text {
  font-size: 12.5px;
  color: var(--mid);
  font-weight: 500;
}

.ur-radio-item.ur-radio-selected .ur-radio-text {
  color: var(--dark);
}

/* ── Password strength ── */
.ur-pw-strength {
  margin-top: 6px;
}

.ur-pw-bars {
  display: flex;
  gap: 4px;
  margin-bottom: 4px;
}

.ur-pw-bar {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: var(--border);
  transition: background 0.3s;
}

.ur-pw-bar.ur-s1 {
  background: #ef4444;
}

.ur-pw-bar.ur-s2 {
  background: #f59e0b;
}

.ur-pw-bar.ur-s3 {
  background: #16a34a;
}

.ur-pw-hint {
  font-size: 10.5px;
  color: var(--soft);
  letter-spacing: 0.02em;
}

/* ── Terms checkbox ── */
.ur-terms {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 14px 16px;
  border-radius: 2px;
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.18);
  cursor: pointer;
  margin-bottom: 0;
}

.ur-terms-box {
  width: 18px;
  height: 18px;
  border-radius: 2px;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all 0.2s;
}

.ur-terms.ur-terms-checked .ur-terms-box {
  background: var(--solar);
  border-color: var(--solar);
}

.ur-terms.ur-terms-checked .ur-terms-box::after {
  content: "✓";
  color: white;
  font-size: 11px;
  font-weight: 700;
}

.ur-terms-text {
  font-size: 12.5px;
  color: var(--mid);
  line-height: 1.6;
}

.ur-terms-link {
  color: var(--solar-dark);
  text-decoration: none;
  font-weight: 500;
}

/* ── Submit ── */
.ur-submit-area {
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: urUp 0.6s 0.25s both;
}

.ur-btn-submit {
  width: 100%;
  padding: 15px 24px;
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: 2px;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    background 0.3s,
    transform 0.15s,
    box-shadow 0.3s;
  display: block;
  text-align: center;
}

.ur-btn-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.ur-btn-submit:hover::before {
  transform: translateX(100%);
}

.ur-btn-submit:hover {
  background: var(--solar-dark);
  box-shadow: 0 8px 28px rgba(245, 158, 11, 0.35);
}

.ur-btn-submit:active {
  transform: scale(0.99);
}

.ur-login-note {
  text-align: center;
  font-size: 12.5px;
  color: var(--soft);
}

.ur-login-link {
  color: var(--solar-dark);
  text-decoration: none;
  font-weight: 500;
}

/* ── Success ── */
.ur-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 70px 40px;
  text-align: center;
}

.ur-success-sun {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 32px;
  box-shadow: 0 0 0 12px rgba(245, 158, 11, 0.1);
  animation: urSpin 4s ease-in-out infinite;
}

.ur-success-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.ur-success-msg {
  font-size: 14px;
  color: var(--soft);
  line-height: 1.7;
}

.ur-success-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-light);
  border: 1px solid rgba(22, 163, 74, 0.25);
  border-radius: 40px;
  padding: 5px 14px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--green);
  margin-top: 18px;
}

/* ── Animations ── */
@keyframes urUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive ── */
@media (max-width: 560px) {
  .ur-g2 {
    grid-template-columns: 1fr;
  }

  .ur-cb-row {
    grid-template-columns: 1fr 1fr;
  }

  .ur-heading {
    font-size: 30px;
  }

  .ur-card-inner {
    padding: 26px 22px 30px;
  }
}
/* gallery page section code */
/* body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #020617, #0f172a);
} */

/* Section */
.premium-gallery {
  padding: 80px 40px;
  text-align: center;
}

.title {
  font-size: 3rem;
  color: black;
  margin-bottom: 50px;
  letter-spacing: 2px;
}

/* Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* Card */
.card {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: 0.4s ease;
}

/* Glow Border */
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 25px;
  padding: 2px;
  background: linear-gradient(45deg, #00f5ff, #ff00ff, #00ff88);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  opacity: 0;
  transition: 0.4s;
}

.card:hover::before {
  opacity: 1;
}

/* Image */
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
  border-radius: 25px;
}

/* Hover Effects */
.card:hover img {
  transform: scale(1.15) rotate(1deg);
  filter: brightness(0.7);
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 20px;
  animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.close {
  position: absolute;
  top: 30px;
  right: 50px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  color: #fff;
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: 0.3s;
  user-select: none;
}

.arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}

.arrow.left {
  left: 30px;
}

.arrow.right {
  right: 30px;
}
/* blog page section code */
.product-card-new {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 50px;
  padding: 20px;
  border-radius: 10px;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
}
.new-section {
  /* border: #000 solid 1px; */
  border-radius: 10px;
  padding: 10px;
  margin: 10px;
  /* text-align: justify; */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  h4 {
    letter-spacing: 0.5px;
  }
}
.details-se p {
  text-align: left;
  letter-spacing: 0.5px;
  font-size: 15px;
  margin-bottom: 15px;
}
.image-sec img {
  width: 350px;
  /* object-fit: cover; */
  margin-bottom: 40px;
  border-radius: 10px;
}
/* next try section  */
.hero-section {
  position: relative;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 60px;
  background: #eef5f7;
}

/* CLOUD BACKGROUND */
.cloud-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: url("../img/bg-sky.webp") repeat-x;
  background-size: cover;
  animation: cloudMove 40s linear infinite;
  opacity: 0.4;
}

/* CLOUD ANIMATION → */
@keyframes cloudMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* TEXT */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 60px;
  margin: 0;
}

.hero-content p {
  color: #666;
}

/* FRONT IMAGE */
.hero-img {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 75%;
  animation: imageMove 6s ease-in-out infinite alternate;
}

/* IMAGE MOVE ← (slight) */
@keyframes imageMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-20px);
  }
}

/* privacy policy page code  */
.privacy-list-sec li {
  list-style: disc;
  margin: 20px 0;
}
.privacy-sec h4 {
  margin-top: 20px;
  margin-bottom: 20px;
}
.privacy h4 {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* testimoniyal section code start */
.prime-testimonials {
  background: var(--dark);
  /* Deep Midnight Blue */
  color: #fff;
  padding: 100px 0;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

.header-prime {
  text-align: center;
  margin-bottom: 60px;
}

.main-title {
  color: #fff;
  font-size: 5rem;
  font-weight: 700;
  margin: 40px 0;
}

.main-title span {
  color: #fbc02d;
}

/* Solar Yellow */

.underline {
  width: 80px;
  height: 4px;
  background: #fbc02d;
  margin: 15px auto;
  border-radius: 2px;
}

.prime-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card Design */
.prime-card {
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  margin: 35px 0;
  width: 380px;
  position: relative;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  animation: float 6s ease-in-out infinite;
}

/* Floating Animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.prime-card:nth-child(2) {
  animation-delay: 2s;
}

/* Prime Shadow & Hover */
.prime-card:hover {
  transform: scale(1.05) translateY(-10px) !important;
  background: rgba(255, 255, 255, 0.08);
  border-color: #fbc02d;
  box-shadow: 0 30px 60px rgba(251, 192, 45, 0.15);
  /* Yellow Glow Shadow */
}

.quote-box {
  color: #fbc02d;
  font-size: 24px;
  margin-bottom: 20px;
}

.rating-stars {
  color: #fbc02d;
  font-size: 14px;
  letter-spacing: 2px;
}

.review-body {
  color: #cbd5e0;
  line-height: 1.8;
  font-size: 1.5rem;
  margin: 20px 0;
}

.client-footer {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.client-img {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #fbc02d, #f57f17);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(251, 192, 45, 0.3);
}

.client-meta h5 {
  color: #fff;
  margin: 0;
  font-size: 1.5rem;
}

.client-meta span {
  color: #718096;
  font-size: 1rem;
}
.photo-wrapper img {
  width: 100px;
  height: 100px;
  /* border-radius: 50%; */
}
.devloper {
  display: none;
}

/* pop from code section */
.usf-main-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  z-index: 9999;
  padding: 25px 15px;
  overflow-y: auto;
  font-family: poppins, sans-serif;
 
}

.usf-popup-wrapper {
  width: 100%;
  max-width: 620px;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  animation: usfPopupAnim 0.4s ease;
  margin: auto;
}

@keyframes usfPopupAnim {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.usf-header-banner {
  background: linear-gradient(135deg, #ff9800, #ff5722);
  color: white;
  text-align: center;
  padding: 28px 20px;
}

.usf-header-banner h1 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 5px;
  margin: 15px 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
   font-style: italic;
}

.usf-header-banner h2 {
  font-size: 17px;
  font-weight: normal;
  line-height: 1.5;
  color: #fff;
   font-style: italic;
}

.usf-popup-content {
  padding: 24px;
}

.usf-price-box {
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  border-left: 6px solid #ff9800;
  padding: 10px;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 20px;
}

.usf-price-box h3 {
  font-size: 20px;
  color: #ff5722;
  margin: 0px;
  font-weight: 500;
 font-style: italic;
  padding: 0% 5px;
}

.usf-price-box p {
  font-size: 20px;
  color: #444;

  letter-spacing: 0.5px;
  /* font-weight: bold; */
}

.usf-info-section {
  margin-bottom: 30px;
}

.usf-info-section h3 {
  font-size: 20px;
  margin-bottom: 10px;
  padding: 0 5px;
  color: #ff5722;
  font-weight: 500;
  font-style: italic;
}

.usf-info-section ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.usf-info-section ul li {
  list-style: none;
  background: #f8f9fc;
  padding: 12px 0;
  border-radius: 12px;
  color: #444;
  font-size: 12px;
  border: 1px solid #eee;
  line-height: 1;
}

.usf-info-section ul li::before {
  content: "⚡ ";
}

.usf-highlight-area {
  background: linear-gradient(135deg, #fff8e1, #fff3cd);
  padding: 15px;
  border-radius: 18px;
  text-align: center;
  margin-top: 25px;
}

.usf-highlight-area h2 {
  color: #ff5722;
  margin-bottom: 14px;
  font-size: 20px;
   font-style: italic;
  font-weight: 500;
}

.usf-highlight-area p {
  color: #555;
  font-size: 12px;
  line-height: 1.5;
}

.usf-action-btn {
  display: inline-block;
  margin-top: 25px;
  background: linear-gradient(135deg, #ff9800, #ff5722);
  color: white;
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  transition: 0.3s;
}

.usf-action-btn:hover {
  transform: translateY(-3px);
  opacity: 0.95;
}

.usf-close-popup {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: white;
  color: #ff5722;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .usf-main-overlay {
    padding: 15px 10px;
    align-items: flex-start;
  }

  .usf-popup-wrapper {
    border-radius: 18px;
    margin-top: 10px;
  }

  .usf-header-banner {
    padding: 25px 18px;
  }

  .usf-header-banner h1 {
    font-size: 20px;
    line-height: 1.3;
     font-style: italic;
  }

  .usf-header-banner h2 {
    font-size: 16px;
     font-style: italic;
  }

  .usf-popup-content {
    padding: 22px;
  }

  .usf-info-section ul {
    grid-template-columns: 1fr;
  }

  .usf-price-box p {
    font-size: 28px;
  }

  .usf-close-popup {
    width: 36px;
    height: 36px;
    font-size: 20px;
    top: 12px;
    right: 12px;
  }
}


/* pop pe apply from  */
.usf-form-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.75);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:99999;
  padding:15px;
}

.usf-form-box{
  width:100%;
  max-width:380px;
  background:#fff;
  border-radius:18px;
  padding:22px;
  position:relative;
  animation:usformAnim .3s ease;
}

@keyframes usformAnim{
  from{
    opacity:0;
    transform:scale(.9);
  }
  to{
    opacity:1;
    transform:scale(1);
  }
}

.usf-form-box h2{
  text-align:center;
  margin-bottom:18px;
  color:#ff5722;
  font-size:22px;
  font-weight: 500;
  font-style: italic;
}

.usf-form-box input,
.usf-form-box textarea{
  width:90%;
  padding:13px;
  margin-bottom:14px;
  border:1px solid #ddd;
  border-radius:10px;
  font-size:14px;
  outline:none;
}

.usf-form-box textarea{
  height:90px;
  resize:none;
}

.usf-submit-btn{
  width:100%;
  border:none;
  background:linear-gradient(135deg,#ff9800,#ff5722);
  color:#fff;
  padding:14px;
  border-radius:50px;
  font-size:15px;
  font-weight:bold;
  cursor:pointer;
}

.usf-form-close{
  position:absolute;
  top:10px;
  right:10px;
  width:32px;
  height:32px;
  border:none;
  border-radius:50%;
  background:#f1f1f1;
  color:#ff5722;
  font-size:18px;
  cursor:pointer;
}

