:root {
  /* Colors */
  --primary-color: #942b71;
  --secondary-color: #156376;
  --secondary-color-default: #090c0c;
  --cta-color: #942b71;
  --background-light: #f9f9f9;
  --text-color: #333;
  --border-color: #e0e0e0;

  /* Typography */
  --font-family-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-size-base: 16px;
  --font-size-large: 2rem;
  --font-size-small: 0.9rem;

  /* Spacing */
  --spacing-small: 8px;
  --spacing-medium: 16px;
  --spacing-large: 32px;

  /* Border Radius */
  --border-radius: 10px;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  color: var(--text-color);
  background-color: var(--background-light);
  box-sizing: border-box;
}

/* Prevent horizontal scroll globally */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header css start*/
/* 2. Header Styles */
.main-header {
  background-color: var(--primary-color);
  padding: var(--spacing-small) 0;
  color: white;
  font-family: var(--font-family-base);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  /* margin: 0 auto; */
  /* Centers the header content */
  padding: 0 var(--spacing-medium);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 90px;
  max-width: 360px;
}

/* 3. Logo Styles */
.logo a {
  display: flex;
  align-items: center;
  justify-content: space-around;
  text-decoration: none;
}

.logo-title {
  color: white;
  font-size: 2.6rem;
  font-weight: bold;
  text-decoration: none;
  margin: 5px;
}

.header-create-cta {
  font-size: 1px;
  background: #fff;
  color: var(--primary-color);
  text-decoration: none;
  padding: 8px;
  border-radius: 8px;

  span {
    font-size: 16px;
  }
}

.header-create-cta:hover {
  background: var(--secondary-color) !important;
  color: #ffff !important;
}

/* 4. Navigation Styles */
.nav {
  display: flex;
  gap: var(--spacing-medium);
}

.nav a {
  color: white;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: bold;
  position: relative;
}

/* Hover Animation (Underline) */
.nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: white;
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

/* 5. Mobile Menu Toggle */
.menu-toggle {
  display: none;
  /* Hidden on desktop */
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.bar {
  height: 3px;
  width: 25px;
  background-color: white;
  border-radius: 2px;
}

/* 6. Responsive Design (Mobile) */
@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 60px;
    right: 20px;
    /* Aligned to the right with padding */
    background-color: var(--primary-color);
    flex-direction: column;
    gap: var(--spacing-small);
    padding: var(--spacing-medium);
    display: none;
    /* Toggle handled by JS class 'active' */
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    min-width: 200px;
  }

  .nav.active {
    display: flex;
    /* Shown when JS toggles class */
  }

  .menu-toggle {
    display: flex;
    /* Show hamburger on mobile */
  }
}


/* Header css end */

/* Main section start */
/* HERO SECTION */
.sub-text {
  font-size: 16px;
  font-weight: 600;
}

.sub-text-h3 {
  font-size: 16px;
  font-weight: 500;
}

.hero {
  background: linear-gradient(135deg, #f8fbfc 0%, #ffffff 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}

.mfb-heading-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.hero-content h1 {
  font-size: 32px;
  line-height: 1.1;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.hero-content .highlight {
  color: var(--primary-color);
}

.hero-content p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.btn-main {
  background: var(--primary-color);
  color: white;
  padding: 8px 16px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: 0.3s;
}

.btn-secondary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 8px 16px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-main:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-secondary:hover {
  opacity: 0.9;
  color: var(--secondary-color);
  transform: translateY(-2px);
}

.hero-stats {
  font-size: 0.9rem;
  color: #888;
  display: flex;
  gap: 20px;
}

.hero-link {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 600;
}

/* IMAGE BOX */
.image-box {
  position: relative;
  margin: 16px;

  img {
    width: 330px;
    height: 460px;
  }
}

.floating-badge {
  --s: 20px;
  /* control the shape */
  line-height: 1.8;
  /* control the height */
  padding-inline: calc(var(--s) + .3em);
  clip-path: polygon(0 0, calc(100% - var(--s)) 0, 100% 50%, calc(100% - var(--s)) 100%, 0 100%, var(--s) 50%);
  background: #845702;
  width: 330px;
  color: #fff;
  padding: 5px;

  span {
    margin-left: 28px;
    font-weight: 600;
  }
}

/* BLADE SECTION */
.blade {
  background: #a02f1b;
  color: #fff;
  padding: 20px 0;
}

.blade-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blade-items {
  display: flex;
  gap: 40px;
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
}

/* FEATURES */
.features {
  padding: 10px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  padding: 40px;
  background: white;
  border-radius: var(--border-radius);
  border: 1px solid #eee;
  transition: 0.3s;
  text-align: center;
}

.feature-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-card .icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

/* CTA BANNER */
.cta-banner {
  /* background: #22c1c3;
  background: linear-gradient(1deg,
      rgba(34, 193, 195, 1) 51%,
      rgba(253, 187, 45, 1) 100%);
  color: #fff; */
  text-align: center;
  padding: 80px 0;
}

.btn-white {
  background: white;
  color: var(--primary-color);
  padding: 15px 40px;
  display: inline-block;
  margin-top: 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  background-color: var(--primary-color);
  color: #fff;
}

.btn-white:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .blade-flex {
    flex-direction: column;
    gap: 20px;
  }
}



/* main section end */



/* Footer css start */
/* Note: Ensure :root variables from the header step are present */

.main-footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 40px var(--spacing-medium);
  /* Replaced large spacing with 40px */
  font-family: var(--font-family-base);
}

.footer-top {
  max-width: 1200px;
  /* margin: 0 auto; */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-medium);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: var(--spacing-medium);
}

.logo-section {
  display: flex;
  align-items: center;
  gap: var(--spacing-small);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-medium);
  justify-content: center;
}

.footer-link {
  color: #fff;
  text-decoration: none;
  font-size: var(--font-size-base);
  transition: color 0.3s;
}

.footer-link:hover {
  /* Ensure --secondary-color is defined in your :root */
  color: #ffcc00;
}

.footer-bottom {
  text-align: center;
  margin-top: var(--spacing-medium);
  font-size: 0.9rem;
  /* Fallback for var(--font-size-small) */
}

/* Desktop Styles */
@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .footer-nav {
    justify-content: flex-end;
  }

  .logo-section {
    justify-content: flex-start;
  }
}


/* Footer css end */



/* How it works start */

.how-it-works {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
  margin-top: 24px;
}

.section-title h2 {
  color: #942b71;
  /* Your Plum Color */
  font-size: 2rem;
  margin-bottom: 10px;
}

.underline {
  width: 60px;
  height: 4px;
  background-color: #fdbb2d;
  /* Your Gold Color */
  margin: 0 auto 40px;
  border-radius: 2px;
}

.steps-container {
  display: grid;
  /* Using your preferred responsive grid logic */
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.step-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  border: 1px solid #eee;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(148, 43, 113, 0.1);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fdbb2d;
  color: #942b71;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.step-card h3 {
  color: #333;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.step-card p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

/* How it works end */


/* Security section start */
/* Trust Section Styling */
.trust-section {
  width: 100%;
  background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 100%);
  border-top: 1px solid #bae6fd;
  padding: 40px 20px;
  margin-top: 50px;
  font-family: 'Noto Sans', sans-serif;
}

.trust-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  /* Stacked on Mobile */
  align-items: center;
  gap: 24px;
  text-align: center;
}

/* Big Icon Styling */
.trust-icon {
  width: 80px;
  height: 80px;
  color: #0284c7;
  flex-shrink: 0;
}

.trust-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trust-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0c4a6e;
  margin: 0;
}

.trust-desc {
  font-size: 0.95rem;
  color: #0ea5e9;
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
}

/* The small pill-shaped badge */
.trust-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-top: 12px;
  padding: 6px 16px;
  width: fit-content;
  background-color: #0bae36;
  border: 1px solid #7dd3fc;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  color: #f9fafb;
  letter-spacing: 1px;
  box-shadow: 0 4px 6px -1px rgba(14, 165, 233, 0.1);
}

/* Desktop Styles (Tablets and larger) */
@media (min-width: 768px) {
  .trust-container {
    flex-direction: row;
    /* Side-by-side on Desktop */
    text-align: left;
  }

  .trust-icon {
    width: 100px;
    height: 100px;
  }

  .trust-badge {
    align-self: flex-start;
  }
}

/* Security section end */

/* Hero features start */
.hero-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
  padding: 0;
  list-style: none;
}

.feature-item {
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: #374151;
  /* Dark Gray text for professional look */
  letter-spacing: 0.5px;
}

/* The Icon - Solid Gold Color */
.feature-item::before {
  content: '✓';
  /* Or use '★' if you prefer */
  margin-right: 10px;
  color: var(--secondary-color);
  font-weight: 900;
  font-size: 1.2rem;
}

/* Mobile Adjustment: Stack them vertically if space is tight */
@media (max-width: 640px) {
  .hero-features-list {
    flex-direction: column;
    align-items: flex-start;
    display: inline-flex;
    /* Keeps it centered as a block */
    margin-left: auto;
    margin-right: auto;
  }
}

/* Hero features end */


/* testimonial section start */
.testimonial-section {
  background: linear-gradient(135deg, #f8fbfc 0%, #ffffff 100%);
  padding: 10px 20px;
}

.testimonial-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.testimonial-card {
  background: white;
  padding: 20px;
  border-radius: var(--border-radius);
  border: 1px solid #eee;
  text-align: center;
  position: relative;
  margin-bottom: 8px;
}

.testimonial-content {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: bold;
  color: #333;
}

.testimonial-rating {
  color: #fbbf24;
  font-size: 1.2rem;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .testimonial-container {
    gap: 20px;
  }
}

/* testimonial section end */

/* FAQ section start */
.faq-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.faq-question {
  font-weight: bold;
  color: #333;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  font-size: 1.2rem;
  color: var(--primary-color);
}

.faq-question.active::after {
  content: '-';
}

.faq-answer {
  margin-top: 10px;
  color: #555;
  display: none;
}

.faq-answer.active {
  display: block;
}

/* FAQ section end */

.gallary-links-section {
  padding: 10px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.aside-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: flex-start;
  ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: 10px;
  li {
    margin-bottom: 8px;
    a {
      text-decoration: none;
      color: var(--primary-color);
      font-weight: 600;
      transition: color 0.3s;
      &:hover {
        color: var(--secondary-color);
      }
    }
  }
}
}