/* ===================================
    1) header.php
    2)index.php
    3)footer.php
========================================*/

/* ======================
    1) header.php
=========================*/

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

body {
  font-family: Barlow, sans-serif;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  padding: 14px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #111827;
  font-weight: 600;
}

.logoImg {
  height: 40px;
}

.navLinks {
  display: flex;
  gap: 30px;
  align-items: center;
}

/* RIGHT */
.navRight {
  display: flex;
  gap: 20px;
  align-items: center;
}

.navLinks a,
.login {
  /* text-decoration: none;
  color: #374151;
  font-size: 14px;
  font-weight: 600; */

  text-decoration: none;
  font-weight: 400;
  color: #4A5565;

  font-style: Regular;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0px;

}

.btn {
  background: #0b1f3b;
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
}

.toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

@media (max-width: 768px) {

  .navLinks,
  .navRight {
    display: none;
  }

  .toggle {
    display: block;
  }

  .navLinks.navActive {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .navRight.navActive {
    position: absolute;
    top: 200px;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 15px 15px;
    background: #fff;
  }

}

/* ===================footer============ */

.footer {
  position: relative;

  width: 100%;

  background:
    radial-gradient(circle at top left,
      rgba(45, 92, 255, .35) 0%,
      transparent 32%),

    radial-gradient(circle at bottom right,
      rgba(168, 38, 255, .45) 0%,
      transparent 32%),

    linear-gradient(90deg,
      #071126 0%,
      #020814 45%,
      #000814 100%);

  overflow: hidden;

  padding: 75px 20px 35px;
}

/* ================= CONTAINER ================= */

.footer-container {
  width: 100%;
  max-width: 1250px;
  margin: auto;
}

/* ================= GRID ================= */

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 70px;
  align-items: start;

}

/* ================= LOGO ================= */

.footer-logo {
  /* width: 150px; */
  width: 170px;
  height: auto;

  /* background: #020b25; */

  border-radius: 2px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 18px;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ================= ADDRESS ================= */

.footer-address {
  color: #ffffff;
  opacity: .82;

  font-size: 14px;
  line-height: 1.7;

  max-width: 280px;

  margin-bottom: 35px;
}

/* ================= SOCIAL ================= */

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;

  border-radius: 10px;

  background: rgba(255, 255, 255, .12);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;

  text-decoration: none;

  transition: .35s ease;
}

.footer-social a:hover {
  transform: translateY(-5px);

  background: #2563eb;
}

/* ================= TITLES ================= */

.footer-title {
  color: #fff;

  font-size: 18px;
  font-weight: 700;

  margin-bottom: 24px;
}

/* ================= LINKS ================= */

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* LEFT ALIGN */
  text-align: left;
  padding-left: 0px;
  list-style: none;
}

.footer-links li {
  margin-bottom: 16px;

}

.footer-links a {
  text-decoration: none;

  color: rgba(255, 255, 255, .78);

  font-size: 15px;
  font-weight: 500;

  transition: .3s ease;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

/* ================= CONTACT ================= */

.footer-contact {
  list-style: none;
  padding-left: 0;

}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  margin-bottom: 18px;

  color: rgba(255, 255, 255, .82);

  font-size: 15px;
  line-height: 1.6;
}

.footer-contact i {
  color: #fff;
  margin-top: 4px;
  font-size: 14px;
}

/* ================= BOTTOM ================= */

.footer-bottom {
  text-align: center;

  margin-top: 65px;

  color: rgba(255, 255, 255, .42);

  font-size: 14px;
  font-weight: 500;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1100px) {

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

@media(max-width:768px) {

  .footer {
    padding: 65px 20px 30px;
  }

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

  .footer-title {
    font-size: 17px;
  }

  .footer-links a,
  .footer-contact li,
  .footer-address {
    font-size: 14px;
  }

  .footer-bottom {
    margin-top: 50px;
    font-size: 13px;
  }
}

/* ==========================================
   RESPONSIVE + CENTER ALIGN FOR SMALL DEVICES
   Add this at the END of your existing CSS
   ========================================== */

/* Tablet */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px 40px;
  }

  /* Center content on tablet */
  .footer-grid {
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 18px;
  }

  .footer-address {
    max-width: 100%;
    margin: 0 auto 35px;
  }

  .footer-social {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-contact li {
    justify-content: center;
    text-align: left;
    /* keeps icon + text aligned nicely */
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Mobile */
@media (max-width: 768px) {
  footer {
    padding: 65px 20px 30px;
  }

  .footer-container {
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 18px;
  }

  .footer-address {
    max-width: 100%;
    margin: 0 auto 28px;
  }

  .footer-social {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-title {
    font-size: 17px;
    margin-bottom: 20px;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-links li {
    margin-bottom: 14px;
  }

  .footer-links a,
  .footer-contact li,
  .footer-address {
    font-size: 14px;
  }

  .footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-contact li {
    justify-content: center;
    text-align: left;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-bottom {
    margin-top: 50px;
    font-size: 13px;
    line-height: 1.8;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  footer {
    padding: 55px 16px 24px;
  }

  .footer-grid {
    gap: 32px;
  }

  .footer-logo {
    width: 95px;
    height: 58px;
  }

  .footer-address {
    font-size: 13px;
    line-height: 1.8;
  }

  .footer-social {
    gap: 10px;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
  }

  .footer-title {
    font-size: 16px;
  }

  .footer-links a,
  .footer-contact li {
    font-size: 13px;
  }

  .footer-bottom {
    margin-top: 40px;
    font-size: 12px;
  }
}

/* Extra Small Devices */
@media (max-width: 320px) {
  footer {
    padding: 50px 12px 20px;
  }

  .footer-logo {
    width: 88px;
    height: 54px;
  }

  .footer-social a {
    width: 34px;
    height: 34px;
  }

  .footer-title {
    font-size: 15px;
  }
}

/* ================popup==================== */

/* =========================================================
   AUTH POPUP
========================================================= */

.auth-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.auth-popup.active {
  display: flex;
}

.auth-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* =========================================================
   AUTH MODAL
========================================================= */

.auth-modal {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  max-height: calc(100vh - 40px);

  display: grid;
  grid-template-columns: 1fr 1fr;

  background: #ffffff;
  border-radius: 22px;

  overflow-y: auto;
  overflow-x: hidden;

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);

  animation: popupFade 0.4s ease;

  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

/* Scrollbar */

.auth-modal::-webkit-scrollbar {
  width: 6px;
}

.auth-modal::-webkit-scrollbar-track {
  background: transparent;
}

.auth-modal::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.45);
  border-radius: 10px;
}

.auth-modal::-webkit-scrollbar-thumb:hover {
  background: rgba(148, 163, 184, 0.7);
}

/* Animation */

@keyframes popupFade {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* =========================================================
   LEFT PANEL
========================================================= */

.auth-left {
  background: linear-gradient(135deg,
      #0b1f3b 0%,
      #153a6e 50%,
      #1e55a1 100%);

  color: #ffffff;

  padding: 48px 42px 44px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  text-align: center;
  min-height: 100%;
}

/* Illustration */

.login-illustration {
  display: flex;
  justify-content: center;
  align-items: center;

  margin-bottom: 28px;
}

.login-illustration-img {
  width: 100%;
  max-width: 320px;
  height: auto;

  display: block;
  object-fit: contain;

  animation: floatIllustration 5s ease-in-out infinite;
}

@keyframes floatIllustration {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* Left Content */

.auth-left-content {
  margin-top: auto;
}

.auth-left-content h3 {
  margin: 0 0 14px;

  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;

  color: #ffffff;
  letter-spacing: -0.5px;
}

.auth-left-content p {
  margin: 0 0 38px;

  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;

  color: rgba(255, 255, 255, 0.85);
}

/* Stats */

.auth-stats {
  display: flex;
  justify-content: center;
  gap: 42px;
}

.stat-item {
  text-align: center;
}

.auth-stats strong {
  display: block;

  margin-bottom: 6px;

  font-size: 26px;
  font-weight: 700;
  line-height: 1;

  color: #ffffff;
}

.auth-stats span {
  display: block;

  font-size: 13px;
  line-height: 1.4;

  color: rgba(255, 255, 255, 0.75);
}

/* =========================================================
   RIGHT PANEL
========================================================= */

.auth-right {
  position: relative;

  padding: 28px 26px 24px;

  overflow: hidden;

  border-radius: 0 22px 22px 0;
}

/* Blue Glow */

.auth-right::before {
  content: "";

  position: absolute;
  top: -10px;
  right: -50px;

  width: 600px;
  height: 600px;

  border-radius: 50%;

  background: radial-gradient(circle,
      rgba(147, 197, 253, 0.55) 0%,
      rgba(191, 219, 254, 0.35) 35%,
      rgba(219, 234, 254, 0.18) 55%,
      rgba(255, 255, 255, 0) 75%);

  pointer-events: none;
  z-index: 0;
}

.auth-right>* {
  position: relative;
  z-index: 1;
}

/* =========================================================
   CLOSE BUTTON
========================================================= */

.auth-close {
  position: absolute;
  top: 16px;
  right: 16px;

  z-index: 9999;

  width: 42px;
  height: 42px;

  border: none;
  border-radius: 50%;

  background: #f3f4f6;
  color: #6b7280;

  font-size: 28px;
  line-height: 1;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  transition: all 0.3s ease;

  appearance: none;
  -webkit-appearance: none;

  touch-action: manipulation;
  pointer-events: auto;
}

.auth-close:hover {
  background: #e5e7eb;
  transform: rotate(90deg);
}

/* =========================================================
   TYPOGRAPHY
========================================================= */

.auth-right h2 {
  margin: 0 0 6px;

  font-size: 34px;
  font-weight: 700;
  line-height: 1.15;

  color: #0f172a;
}

.auth-subtitle {
  margin: 0 0 24px;

  font-size: 14px;

  color: #64748b;
}

/* =========================================================
   SOCIAL LOGIN
========================================================= */

.social-login {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 12px;

  margin-bottom: 22px;
}

.social-btn {
  height: 48px;

  border: 2px solid #e5e7eb;
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.75);

  color: #4b5563;
  font-size: 20px;

  cursor: pointer;
}

/* =========================================================
   DIVIDER
========================================================= */

.auth-divider {
  position: relative;

  text-align: center;

  margin: 0 0 24px;

  font-size: 14px;

  color: #7c8595;
}

.auth-divider::before,
.auth-divider::after {
  content: "";

  position: absolute;
  top: 50%;

  width: 29%;
  height: 1px;

  background: #e5e7eb;
}

.auth-divider::before {
  left: 0;
}

.auth-divider::after {
  right: 0;
}

/* =========================================================
   FORM
========================================================= */

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;

  margin-bottom: 8px;

  font-size: 14px;
  font-weight: 600;

  color: #334155;
}

.input-wrapper {
  position: relative;
}

.input-wrapper i:first-child,
.toggle-password {
  position: absolute;
  top: 50%;

  transform: translateY(-50%);

  color: #9ca3af;
  font-size: 18px;
}

.input-wrapper i:first-child {
  left: 16px;
}

.toggle-password {
  right: 16px;
}

.input-wrapper input {
  width: 100%;
  height: 48px;

  border: 1px solid #d9dee7;
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.9);

  padding: 0 48px;

  font-size: 14px;
  color: #0f172a;

  outline: none;
}

.input-wrapper input::placeholder {
  color: #9ca3af;
}

/* =========================================================
   OPTIONS
========================================================= */

.auth-options {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin: 8px 0 22px;

  font-size: 13px;

  color: #64748b;
}

.auth-options label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.auth-options a,
.auth-footer a {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}

/* =========================================================
   BUTTON
========================================================= */

.auth-btn {
  width: 100%;
  height: 56px;

  border: none;
  border-radius: 14px;

  background: linear-gradient(90deg,
      #0b1f3b 0%,
      #1e55a1 100%);

  color: #ffffff;

  font-size: 16px;
  font-weight: 600;

  cursor: pointer;

  box-shadow:
    0 12px 28px rgba(37, 99, 235, 0.22),
    0 0 24px rgba(37, 99, 235, 0.08);
}

/* =========================================================
   FOOTER
========================================================= */

.auth-footer {
  margin-top: 22px;

  text-align: center;

  font-size: 14px;

  color: #64748b;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

  .auth-popup {
    padding: 15px;
    align-items: center;
  }

  .auth-modal {
    max-width: 95%;
    max-height: calc(100vh - 30px);

    grid-template-columns: 1fr;

    border-radius: 24px;
  }

  .auth-left {
    display: none;
  }

  .auth-right {
    padding: 35px 30px 30px;
    border-radius: 24px;
  }

  .auth-close {
    top: 12px;
    right: 12px;

    width: 38px;
    height: 38px;

    font-size: 24px;
  }

  .auth-right h2 {
    font-size: 42px;
    line-height: 1.1;

    padding-right: 48px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .auth-popup {
    padding: 8px;
    align-items: flex-start;
  }

  .auth-modal {
    width: 100%;
    max-width: 100%;
    max-height: calc(100vh - 16px);

    border-radius: 18px;
  }

  .auth-right {
    padding: 28px 20px 24px;
    border-radius: 18px;
  }

  .auth-right h2 {
    font-size: 32px;
    padding-right: 40px;
  }

  .auth-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .auth-options a {
    align-self: flex-end;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .auth-popup {
    padding: 6px;
  }

  .auth-modal {
    width: calc(100% - 12px);
    max-height: calc(100vh - 12px);

    border-radius: 14px;
  }

  .auth-right {
    padding: 24px 16px 20px;
    border-radius: 14px;
  }

  .auth-right h2 {
    font-size: 28px;
  }

  .auth-footer {
    font-size: 12px;
  }
}

/* =========================================================
   EXTRA SMALL DEVICES
========================================================= */

@media (max-width: 360px) {

  .auth-popup {
    padding: 4px;
  }

  .auth-modal {
    width: calc(100% - 8px);
    max-height: calc(100vh - 8px);

    border-radius: 12px;
  }

  .auth-right {
    padding: 22px 14px 18px;
    border-radius: 12px;
  }

  .auth-right h2 {
    font-size: 24px;
  }
}

/* ===============index====================== */
.hero {
  position: relative;
  padding: 90px 20px 80px;

  overflow: hidden;
  background: linear-gradient(135deg, #101828 0%, #1C398E 50%, #59168B 100%);

}

.hero::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  left: 50%;
  bottom: -150px;
  transform: translateX(-50%);
  border-radius: 50%;

  background: radial-gradient(circle,
      rgba(214, 51, 255, 0.95) 0%,
      rgba(168, 85, 247, 0.70) 25%,
      rgba(124, 58, 237, 0.45) 45%,
      rgba(99, 102, 241, 0.20) 60%,
      transparent 75%);

  filter: blur(70px);

  z-index: 1;
  pointer-events: none;
}

.heroWrap {
  position: relative;
  z-index: 3;
}

/* Tablet */
@media (max-width: 1024px) {
  .hero::before {
    width: 520px;
    height: 520px;
    bottom: -220px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero::before {
    width: 420px;
    height: 420px;
    bottom: -180px;
    left: 55%;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero::before {
    width: 320px;
    height: 320px;
    bottom: -130px;
    left: 50%;
    filter: blur(50px);
  }
}





.heroWrap {
  position: relative;
  z-index: 3;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  /* move side spacing here */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}


/* ================= LEFT CONTENT ================= */
.heroLeft {
  flex: 1;
  max-width: 560px;
  color: #ffffff;
}

/* Small badge */
.heroLeft::before {
  display: inline-block;
  padding: 10px 18px;
  margin-bottom: 28px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0px 0px 30px 0px #3B82F64D;


}

.heroTitle {
  margin: 0;
  font-size: 62px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -3px;
  color: #ffffff;
}

/* Gradient text for Jewellery and Business */
.gradientLine {
  display: inline-block;
  background: linear-gradient(90deg, #51A2FF 0%, #C27AFF 50%, #FB64B6 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.underline {
  position: relative;
}

.underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 5px;
  border-radius: 20px;
  background: linear-gradient(90deg,
      #5da8ff 0%,
      #8b8dff 45%,
      #d96cff 75%,
      #ff5abf 100%);
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
  .heroTitle {
    font-size: 72px;
    letter-spacing: -2px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .heroTitle {
    font-size: 52px;
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .underline::after {
    bottom: -7px;
    height: 4px;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {
  .heroTitle {
    font-size: 36px;
    line-height: 1.12;
  }

  .underline::after {
    bottom: -5px;
    height: 3px;
  }
}

/* Paragraph */
.heroLeft p {
  margin-top: 28px;
  margin-bottom: 0;
  max-width: 520px;
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.82);
}

/* Trusted Badge */
.heroBadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  margin-bottom: 28px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0px 0px 30px 0px #3B82F64D;

}

/* Green Dot */
.heroBadgeDot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.7);
  flex-shrink: 0;
}

/* ================= BUTTONS ================= */
.btns {
  margin-top: 36px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* Base Button */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.35s ease;

  /* Default border */
  border: 1px solid transparent;
}

/* Shine Effect */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  left: -100%;
  transition: 0.7s;
}

/* Hover Effect */
.btn:hover {
  border: 1px solid #9ca3af;
  /* Grey border on hover */
}

/* Shine Animation */
.btn:hover::before {
  left: 100%;
}

.btnPrimary {
  background: #ffffff;
  color: #0b1f3b;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.25),
    0 5px 15px rgba(255, 255, 255, 0.08);
}

.btnPrimary:hover {
  transform: translateY(-4px);
  box-shadow:
    0 25px 55px rgba(0, 0, 0, 0.35),
    0 8px 20px rgba(255, 255, 255, 0.10);
}

.btnSecondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.btnSecondary:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.10);
}

/* ================= STATS CARDS ================= */
.heroStats {
  margin-top: 42px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.heroStats div {
  min-width: 130px;
  padding: 18px 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(16px);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.08),
    0 12px 35px rgba(0, 0, 0, 0.18);
}

/* Reduce space between number and text */
.heroStats strong {
  display: block;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  /* Removes extra height around the number */
  color: #ffffff;
  margin-bottom: 2px;
  /* Reduce gap from 8px to 2px */
}

.heroStats small {
  display: block;
  font-size: 13px;
  line-height: 1.3;
  /* Tighter text spacing */
  color: rgba(255, 255, 255, 0.72);
}

/* ================= RIGHT IMAGE ================= */
/* ==========================================
   HERO RIGHT DASHBOARD (NO IMAGE)
   ========================================== */

.heroRight {
  position: relative;
  flex: 1;
  max-width: 650px;
  width: 100%;
  animation: floatDashboard 6s ease-in-out infinite;
}

/* Floating Paid Badge */
.paidBadge {
  position: absolute;
  top: -20px;
  right: -20px;
  z-index: 10;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow:
    0 18px 35px rgba(34, 197, 94, 0.35),
    0 6px 14px rgba(0, 0, 0, 0.18);
  animation: badgePulse 2.5s ease-in-out infinite;
}

.paidIcon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* Main Dashboard Card */
.dashboardCard {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.22),
    0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  right: 0px;
}

/* Top Stats */
.statsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.statBox {
  padding: 12px;
  border-radius: 18px;
  text-align: center;
}

.sales {
  background: #eaf3ff;
}

.stock {
  background: #f9f2d9;
}

.invoices {
  background: #f3eaff;
}

.statLabel {
  font-size: 15px;
  font-weight: 500;
  color: #5b6474;
  margin-bottom: 8px;
}

.statBox h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
}

.statBox p {
  margin: 10px 0 0;
  font-size: 14px;
  color: #6b7280;
}

.sales p {
  color: #16a34a;
}

/* Invoice Title */
.invoiceTitle {
  margin: 34px 0 20px;
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}

/* Invoice List */
.invoiceList {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.invoiceItem {
  background: #f8fafc;
  border-radius: 16px;
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.invoiceLeft {
  display: flex;
  align-items: center;
  gap: 14px;
}

.invoiceIcon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #dbeafe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.invoiceLeft h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
}

.invoiceLeft span {
  font-size: 14px;
  color: #6b7280;
}

.invoiceRight {
  text-align: right;
}

.invoiceRight strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: #111827;
}

.invoiceRight span {
  font-size: 14px;
  font-weight: 500;
}

.paid {
  color: #16a34a;
}

.pending {
  color: #f97316;
}

/* Animations */
@keyframes floatDashboard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes badgePulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .heroRight {
    max-width: 100%;
  }

  .dashboardCard {
    padding: 24px;
  }

  .statBox h3 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .paidBadge {
    top: -12px;
    right: 10px;
    padding: 10px 18px;
    font-size: 12px;
  }

  .statsGrid {
    grid-template-columns: 1fr;
  }

  .invoiceItem {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .invoiceRight {
    text-align: left;
    width: 100%;
  }

  .dashboardCard {
    padding: 20px;
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  .dashboardCard {
    padding: 16px;
  }

  .invoiceLeft h5 {
    font-size: 16px;
  }

  .invoiceRight strong {
    font-size: 16px;
  }

  .statBox h3 {
    font-size: 24px;
  }
}

/* ==========================================
   COMPLETE RESPONSIVE FIX
   ========================================== */

/* Tablet */
@media (max-width: 1024px) {
  .hero {
    padding: 80px 20px 60px;
  }

  .heroWrap {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .heroLeft,
  .heroRight {
    max-width: 100%;
    width: 100%;
  }

  .heroTitle {
    font-size: 52px;
    letter-spacing: -1px;
  }

  .heroLeft p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .btns,
  .heroStats {
    justify-content: center;
  }

  .dashboardCard {
    right: 0;
    padding: 24px;
  }

  .paidBadge {
    top: -12px;
    right: 12px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    padding: 70px 16px 50px;
  }

  .heroTitle {
    font-size: 40px;
    line-height: 1.15;
  }

  .heroLeft p {
    font-size: 16px;
    line-height: 1.8;
  }

  .btns {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .btn {
    width: 100%;
  }

  .heroStats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .heroStats div {
    min-width: unset;
    width: 100%;
  }

  .statsGrid {
    grid-template-columns: 1fr;
  }

  .dashboardCard {
    padding: 20px;
    border-radius: 20px;
  }

  .paidBadge {
    position: static;
    margin-bottom: 16px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero {
    padding: 60px 14px 40px;
  }

  .heroTitle {
    font-size: 32px;
    line-height: 1.2;
  }

  .heroBadge {
    font-size: 11px;
    padding: 8px 14px;
  }

  .heroLeft p {
    font-size: 15px;
  }

  .dashboardCard {
    padding: 16px;
    border-radius: 18px;
  }

  .invoiceItem {
    padding: 12px;
  }

  .invoiceLeft {
    gap: 10px;
  }

  .invoiceIcon {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .statBox h3 {
    font-size: 22px;
  }

  .hero::before {
    width: 280px;
    height: 280px;
    filter: blur(40px);
    bottom: -100px;
  }
}

/* ==========================================
   KEEP DESKTOP LOOK ON 1024px SCREENS
   (Do not stack content at 1024px)
   ========================================== */

/* Large Tablet / Small Laptop (1024px)
   Keep left and right sections side-by-side */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero {
    padding: 90px 20px 80px;
  }

  .heroWrap {
    /* Keep same desktop layout */
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .heroLeft,
  .heroRight {
    flex: 1;
    max-width: 50%;
    width: 50%;
  }

  /* Slightly reduce title size so it fits */
  .heroTitle {
    font-size: 56px;
    line-height: 1.15;
    letter-spacing: -2px;
  }

  /* Paragraph fits properly */
  .heroLeft p {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.8;
  }

  /* Buttons remain in a row */
  .btns {
    flex-direction: row;
    justify-content: flex-start;
    gap: 16px;
  }

  .btn {
    width: auto;
  }

  /* Stats remain horizontal */
  .heroStats {
    justify-content: flex-start;
    gap: 14px;
  }

  .heroStats div {
    min-width: 120px;
    padding: 16px 18px;
  }

  .heroStats strong {
    font-size: 30px;
  }

  /* Right dashboard adjustments */
  .heroRight {
    max-width: 620px;
  }

  .dashboardCard {
    right: 0;
    /* Prevent overflow */
    padding: 24px;
    border-radius: 22px;
  }

  /* Keep 3-column stats */
  .statsGrid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .statBox h3 {
    font-size: 24px;
  }

  .invoiceTitle {
    margin: 28px 0 18px;
    font-size: 17px;
  }

  /* Paid badge stays visible */
  .paidBadge {
    top: -12px;
    right: 10px;
    padding: 12px 20px;
    font-size: 13px;
  }
}

/*========= 1st section========== */


.aboutSectionExact {
  padding: 100px 20px;
}

.aboutContainer {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}

.aboutLeftExact {
  position: relative;
  padding-bottom: 80px;
}

.aboutImageCardExact {
  background: #ffffff;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.10);
}

.aboutImageCardExact img {
  width: 100%;
  display: block;
  height: 550px;
  border-radius: 10px;
}

/* Floating quote card */
.aboutQuoteCardExact {
  position: absolute;
  right: -20px;
  bottom: 0;
  width: 72%;
  background: #ffffff;
  border-radius: 14px;
  padding: 28px;
  box-shadow:
    0 25px 60px rgba(15, 23, 42, 0.15),
    0 8px 20px rgba(15, 23, 42, 0.06);
}

.quoteMark {
  font-size: 42px;
  line-height: 1;
  color: #0f172a;
  margin-bottom: 12px;
}

.quoteText {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.9;
  color: #475569;
  font-style: italic;
}

.quoteUserExact {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quoteAvatarExact {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #163d9d;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quoteUserExact h5 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

.quoteUserExact span {
  font-size: 12px;
  color: #64748b;
}

/* ================= RIGHT SIDE ================= */
.aboutRightExact {
  max-width: 560px;
}

.aboutBadgeExact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: #0b1f3b;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(11, 31, 59, 0.18);
}

.badgeStar {
  color: #d4af37;
  font-size: 12px;
}

.aboutTitleExact {
  margin: 0 0 22px;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -1px;
  color: #0f172a;
}

.aboutTextExact {
  margin: 0 0 32px;
  font-size: 16px;
  line-height: 1.95;
  color: #64748b;
}

/* ================= FEATURE CARDS ================= */
.featureCardExact {
  display: flex;
  gap: 16px;
  padding: 22px 24px;
  border-radius: 14px;
  background: #ffffff;
  margin-bottom: 18px;
}

.featureBlue {
  background: linear-gradient(135deg, #EFF6FF 0%, #FFFFFF 100%);
  border-top: 2px solid #DBEAFE
}

.featureGold {
  background: linear-gradient(135deg, #FFFBEB 0%, #FFFFFF 100%);
  border-top: 2px solid #FEF3C6
}

.featureIconExact {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}

.iconBlue {
  background: linear-gradient(135deg, #0b1f3b, #163d9d);
}

.iconGold {
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

.featureCardExact h4 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
}

.featureCardExact p {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: #64748b;
}

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

  .aboutRightExact {
    max-width: 100%;
  }

  .aboutTitleExact {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .aboutSectionExact {
    padding: 80px 20px;
  }

  .aboutImageCardExact img {
    height: 550px;
    width: 70%;
    margin: auto;
  }

  .aboutTitleExact {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .aboutTextExact {
    font-size: 15px;
    line-height: 1.85;
  }

  .aboutQuoteCardExact {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 20px;
  }

  .featureCardExact {
    flex-direction: column;
  }

  .featureCardExact h4 {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .aboutSectionExact {
    padding: 60px 15px;
  }

  .aboutTitleExact {
    font-size: 30px;
  }

  .aboutImageCardExact img {
    width: 100%;
    display: block;
    /* height: 550px; */
    height: 350px;
    border-radius: 10px;
  }

  .aboutBadgeExact {
    font-size: 11px;
    padding: 7px 12px;
  }

  .aboutImageCardExact,
  .aboutQuoteCardExact,
  .featureCardExact {
    padding: 18px;
  }

  .featureCardExact h4 {
    font-size: 20px;
  }
}

.featureSection {
  padding: 80px 8%;
  text-align: center;
}

.featureTitle {
  font-size: 34px;
  font-weight: 700;
  color: #0f1f35;
}

.featureSub {
  margin-top: 10px;
  color: #6b7280;
  margin-bottom: 60px;
}

.featureGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}

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

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

/* ================= CARD ================= */
.featureCard {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  text-align: left;

  /* clean premium surface */
  background: linear-gradient(180deg, #ffffff, #f8fafc);

  border: 1px solid rgba(0, 0, 0, 0.05);

  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.05),
    0 20px 40px rgba(0, 0, 0, 0.06);

  /* 🔥 SMOOTH ENTRY */
  opacity: 0;
  transform: translateY(50px) scale(0.98);

  transition:
    transform 0.7s cubic-bezier(.25, .8, .25, 1),
    opacity 0.6s ease,
    box-shadow 0.4s ease;
}

/* SHOW */
.featureGrid.active .featureCard {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* STAGGER */
.featureCard:nth-child(1) {
  transition-delay: .05s;
}

.featureCard:nth-child(2) {
  transition-delay: .1s;
}

.featureCard:nth-child(3) {
  transition-delay: .15s;
}

.featureCard:nth-child(4) {
  transition-delay: .2s;
}

.featureCard:nth-child(5) {
  transition-delay: .25s;
}

.featureCard:nth-child(6) {
  transition-delay: .3s;
}

/* ================= HOVER ================= */
.featureCard:hover {
  transform: translateY(-8px) scale(1.015);

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.12);
}

/* subtle shine */
.featureCard::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(110deg,
      transparent 40%,
      rgba(255, 255, 255, 0.25),
      transparent 60%);

  opacity: 0;
  transition: 0.4s;
}

.featureCard:hover::before {
  opacity: 1;
}

/* ================= TOP ================= */
.featureTop {
  padding: 28px;
  text-align: center;
  position: relative;

  /* background: rgba(0, 0, 128, 0.02); */
}

/* premium divider */
.featureTop::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 2px;

  background: linear-gradient(90deg,
      transparent,
      rgba(212, 175, 55, 0.9),
      rgba(255, 255, 255, 0.9),
      rgba(212, 175, 55, 0.9),
      transparent);
}

/* IMAGE */
.featureTop img {
  width: 180px;
  height: 180px;
  object-fit: contain;

  display: block;
  margin: auto;

  border-radius: 16px;
  background: #fff;
  padding: 12px;

  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(0, 0, 0, 0.04);

  transition: 0.3s ease;
}

/* IMAGE HOVER */
.featureCard:hover .featureTop img {
  transform: scale(1.05);
}

/* ================= CONTENT ================= */
.featureContent {
  padding: 24px;
  transition: transform 0.3s ease;
}

.featureCard:hover .featureContent {
  transform: translateY(-2px);
}

/* TITLE */
.featureCardTitle {
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
}

/* TEXT */
.featureText {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 14px;
  line-height: 1.6;
}

/* LIST */
.featureList li {
  font-size: 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  color: #374151;
}

/* BULLET */
.featureList li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #d4af37;
  border-radius: 50%;
  margin-right: 10px;
}

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

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

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

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

@media (max-width: 992px) {
  .featureGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featureTitle {
    font-size: 25px;
  }

  .featureSection {
    padding: 40px 5%;
    text-align: center;
  }
}

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

  .featureTitle {
    font-size: 25px;
  }

  .featureSection {
    padding: 40px 5%;
    text-align: center;
  }
}

/*==========3rd section========== */
/* ================= PREMIUM FEATURES SECTION ================= */


.featureSectionPremium {
  position: relative;
  overflow: hidden;
  padding: 110px 20px;
  background: linear-gradient(180deg, #101828 0%, #1C398E 50%, #101828 100%);

}

/* Top glow */
.featureSectionPremium::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(217, 70, 239, 0.18),
      transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

/* Bottom subtle glow */
.featureSectionPremium::after {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  bottom: -320px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(168, 85, 247, 0.20),
      transparent 70%);
  filter: blur(70px);
  pointer-events: none;
}

/* ================= HEADER ================= */

.featureHeader {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto 70px;
  text-align: center;
}

.featureTitlePremium {
  margin: 0;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #ffffff;
}

.featureTitlePremium span {
  background: linear-gradient(90deg, #51A2FF 0%, #C27AFF 50%, #FB64B6 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
  ;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.featureSubtitlePremium {
  margin: 20px auto 0;
  max-width: 620px;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.72);
}

/* ================= GRID ================= */

.featureGridPremium {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;

}

/* ================= CARD ================= */

.featureCardPremium {
  position: relative;
  overflow: hidden;
  padding: 28px 24px;
  border-radius: 22px;

  /* background: linear-gradient(180deg,
      rgba(61, 83, 165, 0.96) 0%,
      rgba(49, 70, 149, 0.96) 100%); */

  background: #FFFFFF1A;

  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(18px);

  box-shadow: 0px 25px 50px -12px #00000040;


  transition: all 0.4s ease;
}

.featureCardPremium:hover {
  transform: translateY(-10px);
  background: linear-gradient(180deg,
      rgba(67, 90, 180, 0.98) 0%,
      rgba(53, 76, 160, 0.98) 100%);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.08),
    0 30px 60px rgba(0, 0, 0, 0.30);
}

/* ================= ICON AREA ================= */

.featureIconPremium {
  position: relative;
  margin-bottom: 26px;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featureIconPremium img {
  width: 150px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ================= CONTENT ================= */

.featureCardPremium h3 {
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
  color: #ffffff;
}

.featureCardPremium p {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.85;
  color: #DBEAFE;
}

.featureCardPremium ul {
  margin: 0;
  padding-left: 18px;
}

.featureCardPremium li {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.7;
  color: #DBEAFE;
}

.featureCardPremium li::marker {
  color: #facc15;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .featureTitlePremium {
    font-size: 48px;
    letter-spacing: -1px;
  }

  .featureGridPremium {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .featureCardPremium {
    padding: 26px 22px;
  }

  .featureIconPremium {
    min-height: 135px;
  }

  .featureIconPremium img {
    width: 130px;
  }
}

@media (max-width: 768px) {
  .featureSectionPremium {
    padding: 80px 20px;
  }

  .featureTitlePremium {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .featureSubtitlePremium {
    font-size: 15px;
    line-height: 1.8;
  }

  .featureGridPremium {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .featureCardPremium {
    padding: 24px 22px;
  }

  .featureIconPremium {
    min-height: 120px;
    margin-bottom: 22px;
  }

  .featureIconPremium img {
    width: 115px;
  }

  .featureCardPremium h3 {
    font-size: 20px;
  }

  .featureCardPremium p {
    font-size: 14px;
  }

  .featureCardPremium li {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .featureSectionPremium {
    padding: 60px 15px;
  }

  .featureTitlePremium {
    font-size: 30px;
    line-height: 1.15;
  }

  .featureSubtitlePremium {
    font-size: 14px;
  }

  .featureCardPremium {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .featureIconPremium {
    min-height: 100px;
  }

  .featureIconPremium img {
    width: 95px;
  }

  .featureCardPremium h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .featureCardPremium p {
    margin-bottom: 16px;
  }
}


.featureSectionPremium::before {
  animation: glowFloatTop 10s ease-in-out infinite;
}

.featureSectionPremium::after {
  animation: glowFloatBottom 12s ease-in-out infinite;
}

.featureHeader {
  animation: fadeUp 1s ease-out both;
}

.featureTitlePremium {
  animation: fadeUp 1s ease-out 0.1s both;
}

.featureSubtitlePremium {
  animation: fadeUp 1s ease-out 0.3s both;
}

/* Cards stagger animation */
.featureCardPremium {
  opacity: 0;
  transform: translateY(60px) scale(0.96);
  animation: cardReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Stagger delays */
.featureCardPremium:nth-child(1) {
  animation-delay: 0.10s;
}

.featureCardPremium:nth-child(2) {
  animation-delay: 0.20s;
}

.featureCardPremium:nth-child(3) {
  animation-delay: 0.30s;
}

.featureCardPremium:nth-child(4) {
  animation-delay: 0.40s;
}

.featureCardPremium:nth-child(5) {
  animation-delay: 0.50s;
}

.featureCardPremium:nth-child(6) {
  animation-delay: 0.60s;
}

/* Card shimmer effect */
.featureCardPremium::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.10),
      transparent);
  transform: skewX(-20deg);
  transition: 0.8s ease;
}

.featureCardPremium:hover::before {
  left: 160%;
}

/* Premium hover */
.featureCardPremium:hover {
  transform: translateY(-12px) scale(1.02);
}

/* Icon floating */
.featureIconPremium {
  animation: iconFloat 5s ease-in-out infinite;
}

/* Different timings for each card icon */
.featureCardPremium:nth-child(2) .featureIconPremium {
  animation-delay: 0.5s;
}

.featureCardPremium:nth-child(3) .featureIconPremium {
  animation-delay: 1s;
}

.featureCardPremium:nth-child(4) .featureIconPremium {
  animation-delay: 1.5s;
}

.featureCardPremium:nth-child(5) .featureIconPremium {
  animation-delay: 2s;
}

.featureCardPremium:nth-child(6) .featureIconPremium {
  animation-delay: 2.5s;
}

/* Title gradient animation */
.featureTitlePremium span {
  background-size: 200% auto;
  animation: gradientShift 6s linear infinite;
}

/* ================= KEYFRAMES ================= */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

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

@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translateY(60px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes iconFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes glowFloatTop {

  0%,
  100% {
    transform: translateX(-50%) translateY(0) scale(1);
  }

  50% {
    transform: translateX(-50%) translateY(20px) scale(1.05);
  }
}

@keyframes glowFloatBottom {

  0%,
  100% {
    transform: translateX(-50%) translateY(0) scale(1);
  }

  50% {
    transform: translateX(-50%) translateY(-20px) scale(1.08);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {

  .featureHeader,
  .featureTitlePremium,
  .featureSubtitlePremium,
  .featureCardPremium,
  .featureIconPremium,
  .featureSectionPremium::before,
  .featureSectionPremium::after,
  .featureTitlePremium span {
    animation: none !important;
    transition: none !important;
  }
}

/* ============================4th section============================ */
/* =========================
   A Day in the Life Section
========================= */
.day-life-section {
  padding: 100px 20px;
  /* background: #f7f7f7; */
}

.day-life-section .container {
  max-width: 1240px;
  margin: 0 auto;
}

/* Heading */
.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 16px;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
}

/* Layout */
.day-life-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

/* Left Image Card */
.image-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.15);
}

.image-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

/* Dark Overlay */
.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.1));
}

/* Time Badge */
.time-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  background: #ffffff;
  color: #0f172a;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Stats */
.image-stats {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 25px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.stat {
  text-align: center;
}

.stat h4 {
  font-size: 34px;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}

.stat:nth-child(1) h4 {
  color: #facc15;
}

.stat:nth-child(2) h4 {
  color: #22c55e;
}

.stat:nth-child(3) h4 {
  color: #60a5fa;
}

.stat span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #ffffff;
  font-weight: 500;
}

/* Timeline */
.timeline {
  /* position: relative; */
  padding-left: 34px;
}

/*
.timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 25px;
  bottom: 25px;
  width: 2px;
  background: #dbe4f0;
} */

.timeline-item {
  position: relative;
  margin-bottom: 28px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

/* Number Circle */
.timeline-number {
  position: absolute;
  left: -34px;
  top: 22px;
  width: 34px;
  height: 34px;
  background: #0f172a;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.18);
  z-index: 2;
}

/* Timeline Card */
.timeline-card {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 18px;
  padding: 30px 32px;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);
  transition: all 0.35s ease;
  margin-left: 10px;
}

.timeline-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

.timeline-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #2563eb;
  margin-bottom: 10px;
}

.timeline-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 14px;
  line-height: 1.3;
}

.timeline-card p {
  font-size: 15px;
  line-height: 1.9;
  color: #64748b;
  margin: 0;
}

/* Tablet */
@media (max-width: 991px) {
  .day-life-section {
    padding: 80px 20px;
  }

  .day-life-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .section-header h2 {
    font-size: 40px;
  }

  .image-card img {
    height: 450px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .day-life-section {
    padding: 70px 15px;
  }

  .section-header {
    margin-bottom: 50px;
  }

  .section-header h2 {
    font-size: 30px;
  }

  .section-header p {
    font-size: 15px;
    line-height: 1.7;
  }

  .image-card img {
    height: 360px;
  }

  .image-stats {
    left: 15px;
    right: 15px;
    bottom: 15px;
    gap: 10px;
  }

  .stat h4 {
    font-size: 24px;
  }

  .stat span {
    font-size: 11px;
  }

  .time-badge {
    top: 15px;
    left: 15px;
    padding: 8px 14px;
    font-size: 12px;
  }

  .timeline {
    padding-left: 26px;
  }

  .timeline::before {
    left: 11px;
  }

  .timeline-number {
    left: -26px;
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .timeline-card {
    padding: 22px 20px;
    border-radius: 14px;
  }

  .timeline-card h3 {
    font-size: 22px;
  }

  .timeline-card p {
    font-size: 14px;
    line-height: 1.8;
  }
}

/* =================5th section============ */

.dashboard-showcase {
  position: relative;
  padding: 110px 20px;
  background: linear-gradient(180deg, #101828 0%, #162456 100%);

  overflow: hidden;
}

.dashboard-showcase .container {
  max-width: 1280px;
  margin: 0 auto;
}

/* Header */
.dashboard-header {
  text-align: center;
  margin-bottom: 40px;
}

.dashboard-header h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.1;
  color: #ffffff;
  margin: 0 0 18px;
}

.dashboard-header h2 span {
  background: linear-gradient(90deg, #8b5cf6, #d946ef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dashboard-header p {
  font-size: 16px;
  color: rgba(226, 232, 240, 0.85);
  margin: 0;
}

/* Tabs */
.dashboard-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 42px;
}

.dashboard-tab {
  border: none;
  background: rgba(255, 255, 255, 0.10);
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.35s ease;
}

.dashboard-tab.active {
  background: #1d4ed8;
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.45);
}

.dashboard-tab:hover {
  transform: translateY(-3px);
}

/* Browser */
.dashboard-browser {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
}

/* Browser Top */
.browser-top {
  background: #e5e7eb;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.browser-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.red {
  background: #ef4444;
}

.yellow {
  background: #f59e0b;
}

.green {
  background: #22c55e;
}

.browser-address {
  flex: 1;
  background: #f8fafc;
  color: #6b7280;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 999px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Content */
.browser-content {
  padding: 34px 34px 24px;
}

.content-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
}

.content-header h3 {
  font-size: 38px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 6px;
}

.content-header p {
  margin: 0;
  color: #6b7280;
  font-size: 16px;
}

.new-invoice-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f59e0b;
  color: #ffffff;
  padding: 14px 22px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

/* Table */
.invoice-table {
  overflow-x: auto;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
}

.invoice-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
}

.invoice-table th {
  background: #f3f4f6;
  color: #6b7280;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  padding: 16px;
}

.invoice-table td {
  padding: 18px 16px;
  border-top: 1px solid #f1f5f9;
  color: #111827;
  font-size: 14px;
}

.invoice-id {
  color: #2563eb;
  font-weight: 700;
}

.amount {
  font-weight: 700;
}

.status {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.status.paid {
  background: #dcfce7;
  color: #16a34a;
}

.status.pending {
  background: #fef3c7;
  color: #d97706;
}

/* Note */
.dashboard-note {
  text-align: center;
  margin: 18px 0 0;
  font-style: italic;
  color: #6b7280;
  font-size: 14px;
}

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: #111827;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.slider-arrow.left {
  left: 20px;
}

.slider-arrow.right {
  right: 20px;
}

/* Tablet */
@media (max-width: 991px) {
  .dashboard-showcase {
    padding: 80px 20px;
  }

  .dashboard-header h2 {
    font-size: 46px;
  }

  .content-header h3 {
    font-size: 28px;
  }

  .browser-content {
    padding: 24px;
  }

  .slider-arrow {
    display: none;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .dashboard-showcase {
    padding: 70px 15px;
  }

  .dashboard-header h2 {
    font-size: 32px;
    line-height: 1.25;
  }

  .dashboard-header p {
    font-size: 15px;
    line-height: 1.8;
  }

  .dashboard-tabs {
    gap: 10px;
    margin-bottom: 30px;
  }

  .dashboard-tab {
    padding: 12px 18px;
    font-size: 13px;
  }

  .browser-top {
    padding: 12px;
    gap: 10px;
  }

  .browser-address {
    font-size: 11px;
    padding: 6px 10px;
  }

  .browser-content {
    padding: 18px;
  }

  .content-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .content-header h3 {
    font-size: 24px;
  }

  .content-header p {
    font-size: 14px;
  }

  .new-invoice-btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .dashboard-note {
    font-size: 12px;
    line-height: 1.7;
  }
}


.dashboard-showcase {
  position: relative;
  padding: 110px 20px;
  background:
    radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.20), transparent 40%),
    linear-gradient(135deg, #06132f 0%, #0a1e52 50%, #10286a 100%);
  overflow: hidden;
}

.dashboard-showcase .container {
  max-width: 1280px;
  margin: 0 auto;
}

/* Header */
.dashboard-header {
  text-align: center;
  margin-bottom: 40px;
}

/*
.dashboard-header h2 {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin: 0 0 18px;
} */

.dashboard-header h2 span {
  background: linear-gradient(90deg, #8b5cf6, #d946ef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dashboard-header p {
  font-size: 16px;
  color: rgba(226, 232, 240, 0.85);
  margin: 0;
}

/* Tabs */
.dashboard-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 42px;
}

.dashboard-tab {
  border: none;
  background: rgba(255, 255, 255, 0.10);
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.35s ease;
}

.dashboard-tab.active {
  background: #1d4ed8;
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.45);
}

.dashboard-tab:hover {
  transform: translateY(-3px);
}

/* Browser */
.dashboard-browser {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
}

/* Browser Top */
.browser-top {
  background: #e5e7eb;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.browser-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.red {
  background: #ef4444;
}

.yellow {
  background: #f59e0b;
}

.green {
  background: #22c55e;
}

.browser-address {
  flex: 1;
  background: #f8fafc;
  color: #6b7280;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 999px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Content */
.browser-content {
  padding: 34px 34px 24px;
}

.content-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
}

.content-header h3 {
  font-size: 38px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 6px;
}

.content-header p {
  margin: 0;
  color: #6b7280;
  font-size: 16px;
}

.new-invoice-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f59e0b;
  color: #ffffff;
  padding: 14px 22px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

/* Table */
.invoice-table {
  overflow-x: auto;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
}

.invoice-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
}

.invoice-table th {
  background: #f3f4f6;
  color: #6b7280;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  padding: 16px;
}

.invoice-table td {
  padding: 18px 16px;
  border-top: 1px solid #f1f5f9;
  color: #111827;
  font-size: 14px;
}

.invoice-id {
  color: #2563eb;
  font-weight: 700;
}

.amount {
  font-weight: 700;
}

.status {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.status.paid {
  background: #dcfce7;
  color: #16a34a;
}

.status.pending {
  background: #fef3c7;
  color: #d97706;
}

/* Note */
.dashboard-note {
  text-align: center;
  margin: 18px 0 0;
  font-style: italic;
  color: #6b7280;
  font-size: 14px;
}

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: #111827;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.slider-arrow.left {
  left: 20px;
}

.slider-arrow.right {
  right: 20px;
}

/* Tablet */
@media (max-width: 991px) {
  .dashboard-showcase {
    padding: 80px 20px;
  }

  .dashboard-header h2 {
    font-size: 46px;
  }

  .content-header h3 {
    font-size: 28px;
  }

  .browser-content {
    padding: 24px;
  }

  .slider-arrow {
    display: none;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .dashboard-showcase {
    padding: 70px 15px;
  }

  .dashboard-header h2 {
    font-size: 32px;
    line-height: 1.25;
  }

  .dashboard-header p {
    font-size: 15px;
    line-height: 1.8;
  }

  .dashboard-tabs {
    gap: 10px;
    margin-bottom: 30px;
  }

  .dashboard-tab {
    padding: 12px 18px;
    font-size: 13px;
  }

  .browser-top {
    padding: 12px;
    gap: 10px;
  }

  .browser-address {
    font-size: 11px;
    padding: 6px 10px;
  }

  .browser-content {
    padding: 18px;
  }

  .content-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .content-header h3 {
    font-size: 24px;
  }

  .content-header p {
    font-size: 14px;
  }

  .new-invoice-btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .dashboard-note {
    font-size: 12px;
    line-height: 1.7;
  }
}

/* =======================6th section=== */

.benefits-section {
  padding: 100px 0px;

}

.benefits-section .container {
  max-width: 1300px;
  margin: 0 auto;
}

/* Header */
.benefits-header {
  text-align: center;
  margin-bottom: 70px;
}

.benefits-header h2 {
  margin: 0 0 12px;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.1;
  color: #0f172a;
}

.benefits-header p {
  margin: 0;
  font-size: 16px;
  color: #64748b;
}

/* Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 70px;
}

/* Card */
.benefit-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 34px 28px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition: all 0.35s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1e3a8a, #1d4ed8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.benefit-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.benefit-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
}

.benefit-line {
  display: block;
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: #f59e0b;
  margin-bottom: 18px;
}

.benefit-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: #64748b;
}

/* Bottom Stats */
.benefits-stats {
  max-width: 520px;
  margin: 0 auto;
  background: linear-gradient(90deg, #F9FAFB 0%, #EFF6FF 100%);
  border: 1px solid #dbe4ff;
  border-radius: 999px;
  padding: 24px 34px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0px 4px 6px -4px #0000001A;

  box-shadow: 0px 10px 15px -3px #0000001A;
}

.stat-box {
  text-align: center;
  flex: 1;
}

.stat-box h4 {
  margin: 0 0 6px;
  font-size: 34px;
  font-weight: 700;
  color: #1e3a8a;
  line-height: 1;
}

.stat-box p {
  margin: 0;
  font-size: 13px;
  color: #64748b;
}

/* Tablet */
@media (max-width: 991px) {
  .benefits-section {
    padding: 80px 20px;
  }

  .benefits-header h2 {
    font-size: 42px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .benefits-section {
    padding: 70px 15px;
  }

  .benefits-header {
    margin-bottom: 50px;
  }

  .benefits-header h2 {
    font-size: 30px;
    line-height: 1.25;
  }

  .benefits-header p {
    font-size: 15px;
    line-height: 1.8;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 50px;
  }

  .benefit-card {
    padding: 28px 22px;
  }

  .benefit-card h3 {
    font-size: 20px;
  }

  .benefit-card p {
    font-size: 14px;
    line-height: 1.8;
  }

  .benefits-stats {
    max-width: 100%;
    border-radius: 24px;
    padding: 22px 18px;
    flex-direction: column;
    gap: 20px;
  }

  .stat-box h4 {
    font-size: 28px;
  }
}

/* ===========section========================================================================= */

/* =========================================
   TESTIMONIAL SECTION - UNIQUE CLASS NAMES
========================================= */

.tmx-testimonial-section {
  padding: 110px 20px;
  background: linear-gradient(135deg,
      #f9fafb 0%,
      #ffffff 50%,
      rgba(255, 251, 235, 0.3) 100%);
}

.tmx-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* Badge */
.tmx-badge {
  display: table;
  margin: 0 auto 70px;
  padding: 12px 26px;
  border: 1px solid #f2c97d;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #d97706;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.08);
}

/* Testimonial Grid */
.tmx-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

/* Testimonial Card */
.tmx-testimonial-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #eef2f7;
  border-radius: 22px;
  padding: 42px 34px 30px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

/* Quote Icon */
.tmx-quote-icon {
  position: absolute;
  top: -14px;
  left: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #155dfc 0%, #193cb8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.25);
}

.tmx-quote-icon img {
  width: 20px;
  height: 20px;
}

/* Text */
.tmx-testimonial-text {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 2;
  font-style: italic;
  color: #475569;
}

/* Stars */
.tmx-testimonial-stars {
  color: #f59e0b;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

/* User */
.tmx-testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tmx-user-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #155dfc 0%, #193cb8 100%);
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tmx-user-info h4 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
}

.tmx-user-info p {
  margin: 0;
  font-size: 14px;
  color: #64748b;
}

/* Stats Grid */
.tmx-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Stat Card */
.tmx-stat-card {
  background: #ffffff;
  border: 1px solid #eef2f7;
  border-radius: 18px;
  padding: 32px 20px;
  text-align: center;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
  transition: all 0.35s ease;
}

.tmx-stat-card:hover {
  transform: translateY(-6px);
}

.tmx-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1e3a8a, #1d4ed8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.tmx-stat-icon img {
  width: 20px;
  height: 20px;
}

.tmx-stat-card h3 {
  margin: 0 0 6px;
  font-size: 40px;
  font-weight: 700;
  color: #2563eb;
  line-height: 1;
}

.tmx-stat-card p {
  margin: 0;
  font-size: 14px;
  color: #64748b;
}

/* Tablet */
@media (max-width: 991px) {
  .tmx-testimonial-section {
    padding: 80px 20px;
  }

  .tmx-testimonial-grid,
  .tmx-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .tmx-testimonial-section {
    padding: 70px 15px;
  }

  .tmx-badge {
    margin-bottom: 50px;
    padding: 10px 18px;
    font-size: 12px;
    text-align: center;
  }

  .tmx-testimonial-grid,
  .tmx-stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tmx-testimonial-card {
    padding: 38px 24px 24px;
  }

  .tmx-testimonial-text {
    font-size: 14px;
    line-height: 1.9;
  }

  .tmx-stat-card h3 {
    font-size: 30px;
  }
}

/* ============================2ndpage========= */


/* ================= SECTION ================= */

.compare-section {
  width: 100%;
  padding: 90px 20px;
  display: flex;
  justify-content: center;
  background: #fff;
}

.compare-wrapper {
  width: 100%;
  max-width: 1200px;
  justify-content: center;
}

/* ================= TITLE ================= */

.compare-heading {
  text-align: center;
  margin-bottom: 40px;

  opacity: 0;
  transform: translateY(60px);
  transition: 1s ease;
}

.compare-heading.show {
  opacity: 1;
  transform: translateY(0);
}

.compare-heading h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.compare-heading p {
  font-size: 16px;
  color: #6b7280;
  font-weight: 500;
}

/* ================= TABLE WRAP ================= */

.compare-table-wrap {
  overflow-x: auto;
  border-radius: 22px;

  box-shadow:
    0 14px 35px rgba(0, 0, 0, 0.1),
    0 3px 8px rgba(0, 0, 0, 0.05);

  opacity: 0;
  transform: translateY(100px);
  transition: 1s ease;

  background: #fff;
}

.compare-table-wrap.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================= TABLE ================= */

.compare-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  background: #fff;
}

/* ================= HEADER ================= */

.compare-table thead tr {
  background: linear-gradient(90deg,
      #0b1220 0%,
      #15275f 35%,
      #1f3f98 100%);
}

.compare-table thead th {
  padding: 22px 20px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: transparent;
}

/* FEATURES */

.compare-table thead th:first-child {
  text-align: left;
  border-top-left-radius: 22px;
}

/* PRO ACTIVE */

.compare-table thead th:nth-child(3) {
  background: #2563eb;
}

/* PREMIUM */

.compare-table thead th:last-child {
  border-top-right-radius: 22px;
}

/* ================= BODY ================= */

.compare-table tbody tr {
  border-bottom: 1px solid #eceff3;
}

.compare-table tbody td {
  padding: 18px 20px;
  font-size: 16px;
  color: #374151;
  font-weight: 500;
  text-align: center;
}

/* FEATURE COLUMN */

.compare-table tbody td:first-child {
  text-align: left;
  width: 42%;
}

/* ================= CATEGORY ROW ================= */

.category-row td {
  background: #f3f4f6;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #111827 !important;
  padding: 20px !important;
}

/* ================= PRO COLUMN ================= */

.compare-table tbody td:nth-child(3) {
  background: #eff6ff;
}

/* ================= ICONS ================= */

.check {
  color: #16a34a;
  font-size: 18px;
  font-weight: 700;
}

.cross {
  color: #d1d5db;
  font-size: 20px;
  font-weight: 700;
}

/* ================= HOVER ================= */

.compare-table tbody tr:hover td {
  background: #f9fafb;
  transition: 0.3s ease;
}

.compare-table tbody tr:hover td:nth-child(3) {
  background: #dbeafe;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .compare-heading h2 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .compare-heading h2 {
    font-size: 30px;
  }

  .compare-heading p {
    font-size: 14px;
  }

  .compare-table tbody td {
    padding: 16px 14px;
    font-size: 14px;
  }

  .compare-table thead th {
    padding: 18px 14px;
    font-size: 14px;
  }
}

/* ================= SECTION ================= */

.why-section {
  width: 100%;
  padding: 90px 20px;
  background: #fff;
}

.why-wrapper {
  width: 100%;
  max-width: 1250px;
  margin: auto;
}

/* ================= TITLE ================= */

.why-heading {
  text-align: center;
  margin-bottom: 55px;

  opacity: 0;
  transform: translateY(70px);
  transition: 1s ease;
}

.why-heading.show {
  opacity: 1;
  transform: translateY(0);
}

.why-heading h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  color: #111827;
  letter-spacing: -2px;
  margin-bottom: 16px;
}

.why-heading p {
  font-size: 15px;
  color: #6b7280;
  font-weight: 500;
}

/* ================= GRID ================= */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ================= CARD ================= */

.why-card {
  background: #fff;
  border-radius: 18px;
  padding: 26px;

  border: 1px solid #e5e7eb;

  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.08),
    0 2px 5px rgba(0, 0, 0, 0.04);

  transition: 0.45s ease;

  opacity: 0;
  transform: translateY(100px);
}

.why-card.show {
  opacity: 1;
  transform: translateY(0);
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* ================= ICON ================= */

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #155dfc 0%, #193cb8 100%);

  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.28);

  margin-bottom: 18px;
}

.card-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
}

/* ================= TEXT ================= */

.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #111827;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #6b7280;
  font-weight: 500;
}

/* ================= STATS BOX ================= */

.stats-box {
  margin-top: 48px;

  background: linear-gradient(90deg, #1c398e 0%, #162456 100%);

  border-radius: 28px;

  padding: 22px 30px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;

  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);

  opacity: 0;
  transform: translateY(100px);
  transition: 1s ease;
}

.stats-box.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================= STAT ITEM ================= */

.stat-item {
  text-align: center;
}

.stat-icon {
  width: 40px;
  height: 40px;

  margin: auto auto 16px;

  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.1);
}

.stat-icon svg {
  width: 20px;
  height: 20px;
  stroke: #dbeafe;
}

.stat-item h4 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-box {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-heading h2 {
    font-size: 30px;
  }
}

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

  .stats-box {
    grid-template-columns: 1fr;
  }

  .why-heading h2 {
    font-size: 30px;
    letter-spacing: -1px;
  }

  .why-heading p {
    font-size: 15px;
  }

  .why-card {
    padding: 24px;
  }

  .why-card h3 {
    font-size: 18px;
  }

  .why-card p {
    font-size: 15px;
  }

  .stat-item h4 {
    font-size: 20px;
  }

  .stat-item p {
    font-size: 15px;
  }
}

/* ================= SECTION ================= */

.testimonial-section {
  width: 100%;
  padding: 70px 20px;
}

.testimonial-wrapper {
  width: 100%;
  max-width: 760px;
  margin: auto;
  position: relative;
}

/* ================= TRUST BADGE ================= */

.trust-badge {
  width: fit-content;

  margin: auto auto 38px;

  padding: 14px 28px;

  border-radius: 999px;

  background: #edf4ff;

  border: 1px solid #cfe0ff;

  color: #2563eb;

  font-size: 15px;
  font-weight: 600;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.06);

  opacity: 0;
  transform: translateY(60px);
  transition: 1s ease;
}

.trust-badge.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================= CARD ================= */

.testimonial-card {
  position: relative;

  background: linear-gradient(135deg,
      #ffffff 0%,
      #eff6ff 100%);

  border: 2px solid #d9e7ff;

  border-radius: 34px;

  padding: 75px 48px 48px;

  overflow: visible;

  z-index: 2;

  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.12);

  opacity: 0;
  transform: translateY(120px);
  transition: 1s ease;
}

.testimonial-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================= BACK CIRCLE ================= */

.testimonial-circle {
  position: absolute;

  width: 150px;
  height: 150px;

  background: #fff;

  border-radius: 50%;

  right: -45px;
  bottom: -45px;

  z-index: 1;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

/* ================= QUOTE BOX ================= */

.quote-box {
  position: absolute;

  top: -28px;
  left: 34px;

  width: 68px;
  height: 68px;

  border-radius: 18px;

  background: linear-gradient(180deg,
      #2f6dff 0%,
      #1d4ed8 100%);

  display: flex;
  align-items: center;
  justify-content: center;

  transform: rotate(5deg);

  box-shadow: 0 16px 28px rgba(37, 99, 235, 0.35);

  z-index: 5;
}

.quote-box svg {
  width: 32px;
  height: 32px;
  stroke: #fff;
}

/* ================= TEXT ================= */

.testimonial-text {
  font-size: 18px;
  line-height: 1.9;

  font-style: italic;

  color: #374151;

  font-weight: 500;

  margin-bottom: 34px;

  position: relative;
  z-index: 3;
}

/* ================= STARS ================= */

.stars {
  display: flex;
  justify-content: center;
  gap: 8px;

  margin-bottom: 34px;

  position: relative;
  z-index: 3;
}

.stars svg {
  width: 24px;
  height: 24px;
  fill: #f4b400;
}

/* ================= USER ================= */

.user-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  position: relative;
  z-index: 3;
}

/* AVATAR */

.user-avatar {
  width: 58px;
  height: 58px;

  border-radius: 50%;

  background: linear-gradient(180deg,
      #2f6dff 0%,
      #1d4ed8 100%);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;

  font-size: 20px;
  font-weight: 700;

  box-shadow: 0 12px 25px rgba(37, 99, 235, 0.28);
}

/* USER DETAILS */

.user-details h4 {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

.user-details p {
  font-size: 15px;
  color: #6b7280;
  font-weight: 500;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .testimonial-wrapper {
    max-width: 100%;
  }

  .testimonial-card {
    padding: 70px 24px 40px;
    border-radius: 24px;
  }

  .testimonial-text {
    font-size: 16px;
    line-height: 1.8;
  }

  .quote-box {
    width: 58px;
    height: 58px;
    left: 20px;
    top: -24px;
  }

  .quote-box svg {
    width: 26px;
    height: 26px;
  }

  .trust-badge {
    font-size: 14px;
    padding: 13px 18px;
    text-align: center;
  }

  .testimonial-circle {
    width: 110px;
    height: 110px;
    right: -30px;
    bottom: -30px;
  }

  .user-avatar {
    width: 52px;
    height: 52px;
    font-size: 18px;
  }

  .user-details h4 {
    font-size: 16px;
  }

  .user-details p {
    font-size: 14px;
  }
}

/* ================= SECTION ================= */

.faq-section {
  width: 100%;
  padding: 110px 20px;
  background: linear-gradient(180deg,
      #f9fafb 0%,
      #ffffff 100%);
}

.faq-wrapper {
  width: 100%;
  max-width: 980px;
  margin: auto;
}

/* ================= TITLE ================= */

.faq-heading {
  text-align: center;
  margin-bottom: 48px;

  opacity: 0;
  transform: translateY(70px);
  transition: 1s ease;
}

.faq-heading.show {
  opacity: 1;
  transform: translateY(0);
}

.faq-heading h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  color: #111827;
  letter-spacing: -2px;
  margin-bottom: 14px;
}

.faq-heading p {
  font-size: 16px;
  color: #6b7280;
  font-weight: 500;
}

/* ================= FAQ BOX ================= */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ================= ITEM ================= */

.faq-item {
  background: #fff;

  border: 1px solid #e5e7eb;

  border-radius: 16px;

  overflow: hidden;

  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);

  opacity: 0;
  transform: translateY(70px);
  transition: 0.8s ease;
}

.faq-item.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================= QUESTION ================= */

.faq-question {
  width: 100%;

  padding: 22px 22px;

  border: none;
  outline: none;

  background: #fff;

  display: flex;
  align-items: center;
  justify-content: space-between;

  cursor: pointer;


  transition: 0.3s ease;
}

.faq-question:hover {
  background: #fafafa;
}

.faq-question span {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  text-align: left;
}

/* ================= ICON ================= */

.faq-icon {
  width: 20px;
  height: 20px;

  transition: 0.35s ease;

  stroke: #2563eb;
  stroke-width: 2.2;
}

/* ================= ANSWER ================= */

.faq-answer {
  max-height: 0;
  overflow: hidden;

  transition: max-height 0.45s ease;
}

.faq-answer-content {
  padding: 0 22px 22px;
}

.faq-answer p {
  font-size: 16px;
  line-height: 1.8;
  color: #6b7280;
  font-weight: 500;
}

/* ================= ACTIVE ================= */

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* ================= CTA BOX ================= */

.faq-cta {
  margin-top: 40px;

  background: linear-gradient(135deg,
      #1c388c 0%,
      #162558 100%);

  border-radius: 24px;

  padding: 33px 30px;

  text-align: center;

  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.16);

  opacity: 0;
  transform: translateY(90px);
  transition: 1s ease;
}

.faq-cta.show {
  opacity: 1;
  transform: translateY(0);
}

.faq-cta h3 {
  font-size: 30px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 16px;
}

.faq-cta p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  margin-bottom: 28px;
}

/* ================= BUTTON ================= */

.faq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 16px 28px;

  border-radius: 14px;

  background: #fff;

  color: #2563eb;

  font-size: 15px;
  font-weight: 700;

  text-decoration: none;

  transition: 0.35s ease;
}

.faq-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.18);
}

.faq-btn svg {
  width: 18px;
  height: 18px;
  stroke: #2563eb;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 15px;
  }

  .faq-heading h2 {
    font-size: 30px;
    letter-spacing: -1px;
  }

  .faq-heading p {
    font-size: 14px;
  }

  .faq-question {
    padding: 18px;
  }

  .faq-question span {
    font-size: 18px;
    padding-right: 15px;
  }

  .faq-answer-content {
    padding: 0 18px 18px;
  }

  .faq-answer p {
    font-size: 16px;
  }

  .faq-cta {
    padding: 42px 20px;
    border-radius: 20px;
  }

  .faq-cta h3 {
    font-size: 28px;
  }

  .faq-cta p {
    font-size: 14px;
  }

  .faq-btn {
    width: 100%;
    font-size: 14px;
  }
}

/* ================= SECTION ================= */

/* ================= SECTION ================= */

.pricing-hero {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg,
      #eff6ff 0%,
      #ffffff 50%,
      #ffffff 100%);
}

.pricing-container {
  width: 100%;
  max-width: 1000px;
  text-align: center;
}

/* ================= TITLE ================= */

.pricing-title {
  font-size: 44px;
  line-height: 1.1;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: 1px;
  margin-bottom: 18px;

  opacity: 0;
  transform: translateY(80px) scale(0.95);
  transition: 1s ease;
}

.pricing-title span {
  display: block;
  margin-top: 8px;

  background:
    linear-gradient(90deg, #155dfc 0%, #9810fa 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ================= DESC ================= */

.pricing-desc {
  max-width: 400px;
  margin: auto;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 1px;
  color: #4b5563;
  font-weight: 500;

  opacity: 0;
  transform: translateY(60px);
  transition: 1s ease 0.2s;
}

/* ================= TAGS ================= */

.pricing-tags {
  margin-top: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.tag {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 50px;
  padding: 18px 28px 0px 28px;
  display: flex;
  /* align-items: center; */
  gap: 10px;

  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);

  opacity: 0;
  transform: translateY(70px);
  transition: 1s ease;
}

.tag svg {
  width: 18px;
  height: 18px;
  stroke: #2563eb;
}

.tag p {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}

.tag-link {
  text-decoration: none;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}

.tag-link:hover {
  color: #2563eb;
}

/* ================= ACTIVE ================= */

.pricing-hero.active .pricing-title {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.pricing-hero.active .pricing-desc {
  opacity: 1;
  transform: translateY(0);
}

.pricing-hero.active .tag {
  opacity: 1;
  transform: translateY(0);
}

.pricing-hero.active .tag:nth-child(1) {
  transition-delay: 0.4s;
}

.pricing-hero.active .tag:nth-child(2) {
  transition-delay: 0.6s;
}

.pricing-hero.active .tag:nth-child(3) {
  transition-delay: 0.8s;
}

/* ================= HOVER ================= */

.tag:hover {
  transform: translateY(-6px) scale(1.03) !important;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.15);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .pricing-title {
    font-size: 48px;
  }

  .pricing-desc {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .pricing-title {
    font-size: 32px;
    letter-spacing: -1px;
  }

  .pricing-desc {
    font-size: 18px;
    line-height: 1.5;
  }

  .tag {
    padding: 15px 22px;
  }

  .tag p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .pricing-title {
    font-size: 30px;
  }

  .pricing-desc {
    font-size: 16px;
  }

  .pricing-tags {
    gap: 14px;
  }

  .tag {
    width: 100%;
    justify-content: center;
  }
}


/* ================= SECTION ================= */

.pricing-section {
  width: 100%;
  min-height: 100vh;
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.pricing-wrapper {
  width: 100%;
  max-width: 1280px;
}

/* ================= CARDS ================= */

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

.pricing-card {
  width: 380px;
  background: #fff;
  border-radius: 24px;
  padding: 34px 30px;
  position: relative;

  border: 1px solid #dfe3ea;

  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.08),
    0 2px 4px rgba(0, 0, 0, 0.05);

  transition: 0.45s ease;

  opacity: 0;
  transform: translateY(120px);
}

/* ================= CENTER CARD ================= */

.pricing-card.active-plan {
  border: 3px solid #2563eb;
  transform: translateY(-12px);
}

/* ================= BADGE ================= */

.popular-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #2563eb, #9333ea);
  color: #fff;
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;

  box-shadow: 0 8px 18px rgba(124, 58, 237, 0.35);
}

/* ================= TEXT ================= */

.plan-name {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 18px;
}

.price h2 {
  font-size: 32px;
  line-height: 1;
  color: #0f172a;
  font-weight: 800;
  letter-spacing: -2px;
}

.price span {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 10px;
  font-weight: 500;
}

.plan-desc {
  font-size: 17px;
  line-height: 1.8;
  color: #6b7280;
  margin-bottom: 28px;
}

/* ================= FEATURES ================= */

.features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 34px;
}

.features li {
  display: flex;
  align-items: center;
  gap: 12px;

  font-size: 16px;
  color: #374151;
  font-weight: 500;
}

.features li svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  fill: #0f172a;
}

.active-plan .features li svg {
  fill: #2563eb;
}

/* ================= BUTTON ================= */

.plan-btn {
  width: 100%;
  height: 62px;
  border: none;
  border-radius: 14px;
  cursor: pointer;

  font-size: 16px;
  font-weight: 700;

  background: #0f172a;
  color: #fff;

  transition: 0.4s ease;
}

.active-plan .plan-btn {
  background: #2563eb;
}

.plan-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(37, 99, 235, 0.25);
}

/* ================= FOOT NOTE ================= */

.pricing-note {
  text-align: center;
  margin-top: 36px;
  color: #6b7280;
  font-size: 15px;
  font-style: italic;
  font-weight: 600;
}

.pricing-card.active-plan {
  border: 3px solid #2563eb;
  transform: translateY(-12px);
}

.active-plan .plan-btn {
  background: #2563eb;
}

.active-plan .features li svg {
  fill: #2563eb;
}

/* ================= ANIMATION ================= */

.pricing-card.show {
  opacity: 1;
  transform: translateY(0);
}

.pricing-card.active-plan.show {
  transform: translateY(-12px);
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.active-plan:hover {
  transform: translateY(-18px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {
  .pricing-card {
    width: 340px;
  }

  .price h2 {
    font-size: 54px;
  }
}

@media (max-width: 992px) {
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    width: 100%;
    max-width: 650px;
  }

  .pricing-card.active-plan {
    transform: none;
  }

  .pricing-card.active-plan.show {
    transform: none;
  }
}

@media (max-width: 768px) {
  .pricing-card {
    padding: 28px 24px;
  }

  .plan-name {
    font-size: 20px;
  }

  .price h2 {
    font-size: 30px;
  }

  .plan-desc {
    font-size: 15px;
  }

  .features li {
    font-size: 14px;
  }

  .plan-btn {
    height: 56px;
    font-size: 15px;
  }
}

/* =======================contact================== */

/* ================= SECTION ================= */

.contact-hero {
  width: 100%;
  min-height: 430px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 80px 20px;

  position: relative;
  overflow: hidden;

  background:
    radial-gradient(circle at top left,
      rgba(219, 234, 254, 0.8) 0%,
      rgba(219, 234, 254, 0) 35%),
    radial-gradient(circle at bottom right,
      rgba(243, 232, 255, 0.85) 0%,
      rgba(243, 232, 255, 0) 35%),
    #f5f7fb;
}

/* ================= CONTENT ================= */

.contact-content {
  width: 100%;
  max-width: 1000px;

  text-align: center;

  opacity: 0;
  transform: translateY(70px);
  transition: 1s ease;
}

.contact-content.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================= HEADING ================= */

.contact-title {
  font-size: 48px;
  line-height: 1.1;

  font-weight: 700;

  letter-spacing: -2px;

  color: #111827;

  margin-bottom: 28px;
}

/* GRADIENT TEXT */

.contact-title span {
  background: linear-gradient(90deg,
      #2563eb 0%,
      #7c3aed 55%,
      #db2777 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ================= DESCRIPTION ================= */

.contact-desc {
  max-width: 760px;

  margin: auto;

  font-size: 18px;
  line-height: 1.7;

  color: #6b7280;

  font-weight: 400;
  letter-spacing: 1px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .contact-title {
    font-size: 35px;
  }

  .contact-desc {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    min-height: auto;
    padding: 90px 20px;
  }

  .contact-title {
    font-size: 35px;
    letter-spacing: -1px;
  }

  .contact-desc {
    font-size: 16px;
    line-height: 1.7;
  }
}

/* ================= SECTION ================= */

.contact-section {
  width: 100%;
  padding: 90px 40px;
}

.contact-wrapper {
  width: 100%;
  max-width: 1300px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 560px;
  gap: 70px;

  align-items: start;
}

/* ================= LEFT ================= */

.contact-left {
  padding-top: 10px;

  opacity: 0;
  transform: translateY(80px);
  transition: 1s ease;
}

.contact-left.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================= TITLE ================= */

.contact-left h2 {
  font-size: 28px;
  line-height: 1.05;
  font-weight: 700;

  color: #111827;

  letter-spacing: -1px;

  margin-bottom: 28px;
}

/* ================= DESCRIPTION ================= */

.contact-left p {
  max-width: 520px;

  font-size: 18px;
  line-height: 1.7;

  color: #6b7280;

  font-weight: 400;

  margin-bottom: 42px;
}

/* ================= OFFICE ================= */

.office-box {
  display: flex;
  align-items: flex-start;
  gap: 18px;

  margin-bottom: 48px;
}

/* ICON */

.office-icon {
  width: 56px;
  height: 56px;

  min-width: 56px;

  border-radius: 16px;

  background: linear-gradient(180deg, #2f6dff 0%, #1d4ed8 100%);

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.28);
}

.office-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
}

/* TEXT */

.office-info h4 {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.office-info span {
  font-size: 17px;
  line-height: 1.7;
  color: #6b7280;
  font-weight: 500;
}

/* ================= WHY BOX ================= */

.why-box {
  max-width: 560px;

  background: linear-gradient(135deg,
      rgba(239, 246, 255, 0.95) 0%,
      rgba(250, 245, 255, 0.95) 100%);

  border: 1px solid #dbeafe;

  border-radius: 22px;

  padding: 34px 34px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.why-box h3 {
  font-size: 25px;
  font-weight: 700;
  color: #111827;

  margin-bottom: 24px;
}

/* LIST */

.why-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dot {
  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: #2563eb;

  min-width: 10px;
}

.why-item span {
  font-size: 17px;
  color: #4b5563;
  font-weight: 500;
}

/* ================= FORM CARD ================= */

.contact-card {
  background: #fff;

  border-radius: 30px;

  padding: 38px;

  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);

  opacity: 0;
  transform: translateY(90px);
  transition: 1s ease;
}

.contact-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================= FORM TITLE ================= */

.contact-card h3 {
    font-size: 25px;
    font-weight: 700;
    text-align: center;
    color: #003295;
    margin-bottom: 30px;
}

/* ================= FORM GROUP ================= */

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 2px;
}

/* INPUT BOX */

.input-box {
  position: relative;
}

.input-box svg {
  position: absolute;

  left: 18px;
  top: 50%;

  transform: translateY(-50%);

  width: 20px;
  height: 20px;

  stroke: #9ca3af;
}

/* INPUT */

.form-control {
  width: 100%;

  /* height: 64px; */

  border: 1px solid #d1d5db;

  border-radius: 12px;

  padding: 10px 20px 10px 54px;

  font-size: 16px;
  font-weight: 500;

  color: #111827;

  outline: none;

  transition: 0.3s ease;

}

.form-control:focus {
  border-color: #2563eb;

  box-shadow: none;
}

.form-control::placeholder {
  color: #9ca3af;
}

/* TEXTAREA */

textarea.form-control {
  height: 80px;

  padding-top: 20px;

  resize: none;
}

/* ================= BUTTON ================= */

.submit-btn {
  width: 100%;

  /* height: 68px; */
  padding : 10px;

  border: none;
  outline: none;

  border-radius: 12px;

  cursor: pointer;

  background: linear-gradient(90deg, #0f1d4a 0%, #3458c8 100%);

  color: #fff;

  font-size: 16px;
  font-weight: 700;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  transition: 0.35s ease;

  box-shadow: 0 18px 35px rgba(37, 99, 235, 0.25);
}

.submit-btn:hover {
  transform: translateY(-4px);
}

/* BUTTON ICON */

.submit-btn svg {
  width: 20px;
  height: 20px;

  stroke: #fff;
}

/* ================= NOTE ================= */

.reply-note {
  text-align: center;

  margin-top: 16px;

  font-size: 15px;
  color: #9ca3af;

  font-weight: 500;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-left h2 {
    font-size: 32px;
  }

  .contact-left p {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 70px 15px;
  }

  .contact-left h2 {
    font-size: 32px;
    letter-spacing: -1px;
  }

  .contact-left p {
    font-size: 16px;
  }

  .office-info h4 {
    font-size: 20px;
  }

  .office-info span {
    font-size: 15px;
  }

  .why-box {
    padding: 24px;
  }

  .why-box h3 {
    font-size: 24px;
  }

  .why-item span {
    font-size: 15px;
  }

  .contact-card {
    padding: 26px;
    border-radius: 24px;
  }

  .contact-card h3 {
    font-size: 22px;
  }

  .form-group label {
    font-size: 15px;
  }

  .form-control {
    /* height: 58px; */
    font-size: 15px;
  }

  textarea.form-control {
    height: 70px;
  }

  .submit-btn {
    /* height: 60px; */
    font-size: 16px;
  }

  .reply-note {
    font-size: 14px;
  }
}

/* ======================================sign-up .modal================== */
.register-popup {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.register-popup.active {
  display: flex;
}

.register-modal {
  width: 750px;
  max-width: 95%;
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  position: relative;
  overflow: auto;
  max-height: 95vh;
}

.register-modal h3{
  font-weight: 700;
  margin-bottom: 28px;
  color: #1e55a1;
}


.register-modal h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: clamp(19px, 4vw, 34px);
  font-weight: 700;
  line-height: 1.2;


}

.form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.register-form .form-group {
  margin-bottom: 14px;
}

.register-form label {
  display: block;
  margin-bottom: 2px;
  font-size: 13px;
  font-weight: 200;
}

.register-form input,
.register-form select,
.register-form textarea {
  width: 100%;
      padding: 8px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
}

.register-form textarea {
  height: 50px;
  resize: none;
}

.register-btn {
  width: 100%;
  /* padding: 14px; */
   padding: 10px;
  border: none;
  border-radius: 6px;
  background: linear-gradient(90deg,
      #0b1f3b 0%,
      #1e55a1 100%);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.register-footer {
  text-align: center;
  margin-top: 10px;
}

@media(max-width:768px) {

  .form-row {
    grid-template-columns: 1fr;
  }

  .register-modal {
    padding: 20px;
  }

}

.register-form input:focus,
.register-form select:focus,
.register-form textarea:focus {
  background: #edf4ff;
  border-color: #8ab8ff;
  box-shadow: 0 0 0 3px rgba(81, 162, 255, 0.15);
  outline: none;
}

.register-footer a {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}

/* =================================otp-modal=============== */
.otp-popup {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.otp-popup.active {
  display: flex;
}

.otp-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
}

.otp-modal {
  position: relative;
  width: 420px;
  max-width: 95%;
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  z-index: 2;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .2);
}

.otp-close {
  position: absolute;
  right: 15px;
  top: 12px;
  border: none;
  background: none;
  font-size: 22px;
  cursor: pointer;
  color: #999;
}

.otp-modal h2 {
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 600;


}

.otp-modal p {
  color: #8b8b8b;
  font-size: 14px;
  margin-bottom: 25px;
}

.otp-inputs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
}

.otp-inputs input {
  width: 48px;
  height: 55px;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  outline: none;
}

.otp-inputs input:focus {
  border-color: #7c4dff;
  background: #f6f3ff;
}

.verify-btn {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(90deg,
      #0b1f3b 0%,
      #1e55a1 100%);
}

@media (max-width:480px) {

  .otp-modal {
    width: 95%;
    padding: 20px 15px;
  }

  .otp-modal h2 {
    font-size: 24px;
  }

  .otp-modal p {
    font-size: 14px;
  }

  .otp-inputs {
    gap: 6px;
  }

  .otp-inputs input {
    width: 40px;
    height: 48px;
    font-size: 18px;
  }

  .verify-btn {
    height: 46px;
    font-size: 16px;
  }

}

/*
.otp-single {
  margin: 25px 0;
}

.otp-single input {
  width: 100%;
  height: 58px;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 12px;
  outline: none;
  transition: .3s;
}



.otp-single input::placeholder {
  color: #666;
  letter-spacing: 12px;
} */

 /* Popup */

.otp-popup{
    display:none;
    position:fixed;
    inset:0;
    z-index:99999;
}

.otp-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
    backdrop-filter:blur(3px);
}

.otp-modal{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:420px;
    max-width:95%;
    background:#fff;
    border-radius:18px;
    padding:35px;
    text-align:center;
    box-shadow:0 20px 60px rgba(0,0,0,.25);
    animation:popup .3s ease;
}

@keyframes popup{

    from{
        opacity:0;
        transform:translate(-50%,-45%);
    }

    to{
        opacity:1;
        transform:translate(-50%,-50%);
    }

}

.otp-close{
    position:absolute;
    right:18px;
    top:15px;
    border:none;
    background:none;
    font-size:28px;
    cursor:pointer;
    color:#666;
}

.otp-close:hover{
    color:#000;
}

.otp-icon{
    width:75px;
    height:75px;
    background:#eef4ff;
    border-radius:50%;
    margin:0 auto 20px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.otp-icon i{
    color:#2563eb;
    font-size:32px;
}

.otp-modal h2{
    margin-bottom:10px;
    font-size:28px;
}

.otp-modal p{
    color:#777;
    line-height:1.6;
    margin-bottom:25px;
}

.otp-input-wrapper input{

    width:100%;
    height:55px;

    border:1px solid #ddd;
    border-radius:10px;

    text-align:center;

    font-size:28px;
    letter-spacing:8px;
    font-weight:600;

    transition:.3s;
}

.otp-input-wrapper input:focus{

    border-color:#2563eb;
    outline:none;
    box-shadow:0 0 0 4px rgba(37,99,235,.12);

}

.verify-btn{

    width:100%;
    height:52px;

    border:none;
    border-radius:10px;

    margin-top:20px;

    background:#2563eb;
    color:#fff;

    font-size:17px;
    font-weight:600;

    cursor:pointer;
    transition:.3s;

}

.verify-btn:hover{

    background:#1d4ed8;

}

.otp-footer{

    margin-top:18px;
    color:#666;
    font-size:14px;

}

.otp-footer a{

    color:#2563eb;
    text-decoration:none;
    font-weight:600;

}

.otp-error{

    display:none;
    margin-bottom:15px;

    background:#ffe5e5;
    color:#d93025;

    border-radius:8px;
    padding:10px;
    font-size:14px;

}
.is-invalid{
    border:1px solid #dc3545 !important;
}

.password_error,
.password_confirmation_error{
    font-size:13px;
    color:#dc3545;
    display:block;
    margin-top:5px;
}
.price-offer-cust {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding: 0 10px; */
}

.price-offer-cust .old-price {
    color: #a3afbf;
    font-size: 16px;
    font-style: italic;
    text-decoration: line-through;
}

.price-offer-cust .discount {
    padding: 5px 14px;
    text-align: center;
    border: 1px solid #007bff;
    border-radius: 30px;
    color: #111;
    font-size: 14px;
    background: transparent;
}

/* pooja css */
.privacy-section {
  margin: 30px 0;
}

.privacy-banner {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;

  background:
    radial-gradient(circle at 15% 20%,
      rgba(0, 204, 255, 0.35),
      transparent 28%),
    radial-gradient(circle at 85% 75%,
      rgba(123, 92, 255, 0.35),
      transparent 30%),
    linear-gradient(120deg,
      #041B52 0%,
      #063B9F 42%,
      #087CE5 72%,
      #00B9F2 100%);
}

.privacy-banner::before {
  content: "";
  position: absolute;

  width: 420px;
  height: 420px;

  top: -220px;
  left: -120px;

  border-radius: 50%;

  border: 1px solid rgba(255, 255, 255, 0.15);

  box-shadow:
    0 0 80px rgba(0, 211, 255, 0.25),
    inset 0 0 80px rgba(255, 255, 255, 0.05);

  background: rgba(255, 255, 255, 0.03);
}



.privacy-banner::after {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  right: -220px;
  bottom: -300px;

  border-radius: 50%;

  border: 1px solid rgba(255, 255, 255, 0.18);

  box-shadow:
    0 0 100px rgba(0, 217, 255, 0.3),
    inset 0 0 80px rgba(255, 255, 255, 0.04);

  background: rgba(255, 255, 255, 0.04);
}


.privacy-banner .container {
  position: relative;
  z-index: 3;

  padding: 70px 20px;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px,
      transparent 1px),
    linear-gradient(90deg,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px);

  background-size: 45px 45px;
}

.privacy-banner .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 28px;

  margin-bottom: 25px;

  border-radius: 50px;

  background: rgb(3 44 140);

  border: 1px solid rgba(190, 125, 255, 0.6);


  font-weight: 700;
  letter-spacing: 1.5px;

  box-shadow:
    0 0 25px rgba(190, 90, 255, 0.25);

  backdrop-filter: blur(10px);
}

.privacy-banner h1 {
  margin: 0;

  color: #ffffff;


  font-weight: 800;

  line-height: 1.1;

  letter-spacing: -1.5px;

  text-shadow:
    0 5px 25px rgba(0, 0, 0, 0.18);
}


.privacy-banner .date {
  margin-top: 22px;

  color: #fff;

  font-size: 20px;

  line-height: 1.7;

  font-weight: 400;
}

.privacy-banner .glow-line {
  width: 220px;
  height: 2px;
  margin: 28px auto 0;

  border-radius: 50px;

  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.15) 15%,
      #7DDFFF 50%,
      rgba(255, 255, 255, 0.15) 85%,
      transparent 100%);

  box-shadow:
    0 0 8px rgba(125, 223, 255, 0.45);
}



@media (max-width: 767px) {

  .privacy-banner .date {
    font-size: 16px;
  }

  .privacy-banner .container {
    padding: 0px 10px;
    background-size: 30px 30px;
  }

  .privacy-banner h1 {
    letter-spacing: -0.8px;
  }


  .privacy-banner .glow-line {
    width: 190px;
  }
}

/* ================= FAQ ================= */

.faq-section {
  padding: 50px 0;
}

.section-title {
  text-align: center;
}

.accordion-item {
  border: none;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.accordion-button {
  color: #222;
  font-weight: 600;
  padding: 20px;
  padding-right: 65px;
  box-shadow: none !important;
  position: relative;
  line-height: 1.5;
  width: 100%;
  text-align: left;
}

.accordion-button:not(.collapsed) {
  background: #1c398e;
  color: #fff;
}

.accordion-button::after {
  display: none;
}

.accordion-button::before {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  transition: 0.3s;
}

.accordion-button:not(.collapsed)::before {
  content: "−";
}

.accordion-body {
  line-height: 1.8;
  color: #555;
  background: #fff;
}

/* ================= MOBILE ================= */

@media (max-width: 767px) {
  .faq-section {
    padding: 30px 0px;
  }

  .accordion-item {
    margin-bottom: 15px;
    border-radius: 12px;
  }

  .accordion-button {
    line-height: 1.5;

    padding: 20px 55px 20px 25px;

    min-height: 80px;
  }

  .accordion-button::before {
    right: 18px;
  }

  .accordion-body {
    padding: 20px 25px;
    line-height: 1.7;
  }
}
/* end pooja css end */

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    right: 25px;
    bottom: 100px;
    width: 45px;
    height: 45px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    color: #fff;
    transform: scale(1.1);
}


/* Back To Top */
.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 40px;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: #0371ff;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background: #012c89;
    transform: translateY(-3px);
}


/* Mobile */
@media (max-width: 575px) {

    .whatsapp-btn {
        right: 15px;
        
        bottom: 75px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .back-to-top {
        right: 15px;
        bottom: 15px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}