html {
  scroll-behavior: smooth;
}

/* Font Face for Blauer Nue */
/* ===== Blauer Nue Font Setup ===== */
@font-face {
  font-family: 'Blauer Nue';
  src: url('fonts/blauer nue/Blauer Nue Downloads/TrueType/BlauerNue-Regular.woff2') format('woff2'),
       url('fonts/blauer nue/Blauer Nue Downloads/TrueType/BlauerNue-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Blauer Nue';
  src: url('fonts/blauer nue/Blauer Nue Downloads/TrueType/BlauerNue-Medium.woff2') format('woff2'),
       url('fonts/blauer nue/Blauer Nue Downloads/TrueType/BlauerNue-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Blauer Nue';
  src: url('fonts/blauer nue/Blauer Nue Downloads/TrueType/BlauerNue-SemiBold.woff2') format('woff2'),
       url('fonts/blauer nue/Blauer Nue Downloads/TrueType/BlauerNue-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Blauer Nue';
  src: url('fonts/blauer nue/Blauer Nue Downloads/TrueType/BlauerNue-Bold.woff2') format('woff2'),
       url('fonts/blauer nue/Blauer Nue Downloads/TrueType/BlauerNue-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Blauer Nue';
  src: url('fonts/blauer nue/Blauer Nue Downloads/TrueType/BlauerNue-ExtraBold.woff2') format('woff2'),
       url('fonts/blauer nue/Blauer Nue Downloads/TrueType/BlauerNue-ExtraBold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Blauer Nue';
  src: url('fonts/blauer nue/Blauer Nue Downloads/TrueType/BlauerNue-Heavy.woff2') format('woff2'),
       url('fonts/blauer nue/Blauer Nue Downloads/TrueType/BlauerNue-Heavy.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #FFFBF9;
  --accent: #ff473a;
  /* More vibrant red-orange */
  --dark: #2d2d2d;
  --text: #4a4a4a;
  --light-bg: #F97929;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Blauer Nue','Poppins', sans-serif;
  color: var(--text);
  background-color: var(--bg);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  /* Prevent scrollbars from absolute elements */
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-title,
.section-title,
.about-title,
.how-title,
.cta-title,
.plan-name,
.blog-title,
.feature-title,
.advantage-title {
  font-family: 'Blauer Nue', Arial, Helvetica, sans-serif;
}


/* Remove default background on body to apply properly */
html {
  height: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.hero-banner{
  position: relative;
}

/* Header and Hero Unified Styles */
.hero-header-wrapper {
  position: relative;
  background:#FFFBF9;
  overflow: hidden;
  background-image: url('images/Dmenus\ Banner\ Bg.png');
  background-position: center;
  background-size: contain;
}

.site-header {
  padding: 10px 0;
  background: transparent;
  position: relative;
  z-index: 10;
}



.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  position: relative;
  z-index: 10;
}

/* Replicate the logo icon with CSS - REMOVED for image logo */
/*
.logo::before {
  content: '€';
  display: inline-flex;
  ...
}
*/

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex: 1;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: #3F070C;
  font-family: 'Blauer Nue';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 16px */
  text-decoration: none;
}

.nav-links a:hover {
  opacity: 1;
}
.nav-links a.active {
  opacity: 1;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  color: #3F070C;
}


.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1000;
  padding: 0;
}

.menu-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: #3b0e0e;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.desktop-only {
  display: inline-block;
}

.btn {
  display: inline-block;
  padding: 16px;
  border-radius: 36px;
background: var(--Gradient-Button, linear-gradient(90deg, #F91C30 0%, #F97829 100%));
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 10;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(255, 26, 26, 0.4);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-cta {
 border-radius: 36px;
background: var(--Gradient-Button, linear-gradient(90deg, #F91C30 0%, #F97829 100%));
  color: #FFF;
font-family: "Blauer Nue";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 100%; /* 16px */
}

.btn-primary {
  border-radius: 36px;
background: var(--Gradient-Button, linear-gradient(90deg, #F91C30 0%, #F97829 100%));
  color: white;
  padding: 16px ;
  font-size: 16px;
  border-radius: 50px;
  box-shadow: 0 10px 20px rgba(255, 26, 26, 0.25);
}

.hero {
  padding: 30px 0 60px;
  position: relative;
  z-index: 5;
  overflow: hidden;
}

/* Full Dotted Grid Background */
/* Moved to .hero-header-wrapper */

.hero-inner {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-left {
  flex: 1.2;
}

.hero-title {
  color: #3F070C;
font-family: "Blauer Nue";
font-size: 64px;
font-style: normal;
font-weight: 600;
line-height: 100%; /* 64px */
  margin-bottom: 20px;
  white-space: nowrap;
}

.hero-sub {
  color: #3F3F3F;
font-family: Poppins;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 148%; /* 23.68px */
  margin-bottom: 20px;
  
}

.hero-right {
  flex: 1;
}

.mockup {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

.mockup img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

/* Dots decorations removed as we use body background */
/* Corner dotted decorations */
.dot-corner {
  position: absolute;
  width: 300px;
  height: 300px;
  pointer-events: none;
  background-image: radial-gradient(var(--accent) 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 2;
  z-index: -1;
}

.dot-tl {
  top: 0;
  left: 0;
  -webkit-mask-image: radial-gradient(circle at top left, black, transparent 60%);
  mask-image: radial-gradient(circle at top left, black, transparent 60%);
}

.dot-tr {
  top: 0;
  right: 0;
  -webkit-mask-image: radial-gradient(circle at top right, black, transparent 60%);
  mask-image: radial-gradient(circle at top right, black, transparent 60%);
}

.dot-bl {
  bottom: 0;
  left: 0;
  -webkit-mask-image: radial-gradient(circle at bottom left, black, transparent 60%);
  mask-image: radial-gradient(circle at bottom left, black, transparent 60%);
}

.dot-br {
  bottom: 0;
  right: 0;
  -webkit-mask-image: radial-gradient(circle at bottom right, black, transparent 60%);
  mask-image: radial-gradient(circle at bottom right, black, transparent 60%);
}

@media (max-width: 960px) {
  .hero-inner {
    flex-direction: column-reverse;
    text-align: center;
    gap: 40px;
  }
  

  .hero-left {
    margin: 0 auto;
  }

  .hero-title {
    font-size: 42px;
    white-space: normal;
  }

  .mockup {
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 960px) {
  .container{
    padding: 0 20px;
  }
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 20px;
  }

  .main-nav {
    flex-direction: row;
    gap: 15px;
    justify-content: end
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
    gap: 30px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 24px;
    font-weight: 700;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .desktop-only {
    display: none;
  }

  body.menu-open {
    overflow: hidden;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }
  .how-text-side {
    padding-right: 0px;
}
}

/* Tabs Responsiveness */
@media (max-width: 768px) {
  .tabs-container {
    padding: 15px 0;
    margin-bottom: 40px;
  }

  .tabs-bar {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    justify-content: flex-start;
    padding: 8px 15px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .tabs-bar::-webkit-scrollbar {
    display: none;
  }

  .tab-item {
    padding: 10px 18px;
    flex-shrink: 0;
  }

  .section-title {
    font-size: 25px;
  }
}

/* Trusted Partners */
.partners {
  background-color: rgba(249, 121, 41, 0.1);;
  padding: 30px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.partners-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.partners-title {
  color: #3F070C; ;
font-family: "Blauer Nue";
font-size: 24px;
font-style: normal;
font-weight: 400;
line-height: 124%; /* 29.76px */
  white-space: nowrap;
  margin: 0;
}

.partners-logos {
  display: flex;
  align-items: center;
  flex: 1;
  opacity: 0.8;
  overflow: hidden;
  gap: 80px;
  padding: 10px 0;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 80px;
  animation: logoScroll 30s linear infinite;
  width: max-content;
}

.logo-track:hover {
  animation-play-state: paused;
}

@keyframes logoScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.partner-logo-img {
  height: 35px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
  cursor: pointer;
}

.partner-logo-img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.partner-logo {
  font-weight: 700;
  font-size: 18px;
  color: #555;
  font-family: sans-serif;
  letter-spacing: 1px;
}

/* About Section (What is Dmenus) */
.about-section {
  padding: 100px 0;
  background: #FFFBF9;
  /* Ensure white background for this section */
  position: relative;
  z-index: 1;
  overflow: hidden;
  /* Ensure dots don't overflow */
}

.about-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-image {
  flex: 1;
  position: relative;
}

/* Animation Keyframes */
@keyframes floatUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes bobbing {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.about-card-mockup {
  position: relative;
  width: auto;
  height: 642px;
  background: #666;
  /* Fallback/Placeholder background */
  background-image: url('images/Girl-looking-at-phone.png');
  background-size: cover;
  background-position: right;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  /* Ensure content stays within rounded corners */
}

/* Overlays on the image to match design */
.card-float {
  position: absolute;
  left: 30px;
  /* Indented slightly */
  /* More transparent */
  backdrop-filter: blur(0.7px);
  -webkit-backdrop-filter: blur(1.1px);
  padding: 8px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 340px;
  height: 86px;
  border-radius: 24px;
border: 1px solid #FFF;
background: rgba(255, 255, 255, 0.20);
backdrop-filter: blur(5.599999904632568px);
  
  /* Animation properties */
  opacity: 0;
  /* Star invisible */
  animation: floatUp 0.8s ease-out forwards, bobbing 4s ease-in-out infinite;
}

.card-top {
  top: 40px;
  animation-delay: 0.2s, 1s;
  /* Appear then bob */
}

.card-mid {
  top: 150px;
  animation-delay: 1.2s, 2s;
  /* Appear later then bob */
}

.icon-circle {
  width: 67px;
  height: 70px;
  border-radius: 16px;
background: rgba(255, 255, 255, 0.50);
backdrop-filter: blur(2px);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

.card-text {
  color: #FFF;
font-family: Poppins;
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 124%; /* 24.8px */
  /* Lighter text for dark backgrounds or overlay */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.card-text strong {
  display: block;
  color: #FFF;
font-family: Poppins;
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 124%; /* 24.8px */
  margin-bottom: 2px;
}

.card-text span {
  color: #FFF;
font-family: Poppins;
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: 124%; /* 14.88px */
opacity:0.8
}

.card-main {
  position: absolute;
  bottom: 70px;
  left: 30px;
  width: 340px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  border-radius: 24px;
  padding: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: floatUp 0.8s ease-out 0.5s forwards;
  /* Animated too */
  opacity: 0;
}
.card-mains {
  position: absolute;
  bottom: 150px;
  left: 30px;
 height: auto;
  width: 340px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: floatUp 0.8s ease-out 0.5s forwards;
  /* Animated too */
  opacity: 0;
}
.card-mains img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  height: 140px;
  padding: 10px;
  object-fit: cover;
  display: block;
}
.card-main img {
  width: 100%;
  border-radius: 16px;
  height: 140px;
  object-fit: cover;
  display: block;
}

.card-content {
  padding:10px
}

.card-content h4 {
  margin: 0 0 6px;
  color: #FFF;
font-family: Poppins;
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 124%; /* 24.8px */
opacity: 0.8;
}

.card-content p {
  color: #FFF;
font-family: Poppins;
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: 124%; /* 14.88px */
opacity: 0.8;
margin-bottom: 10px;
}

.btn-sm {
  border-radius: 36px;
background: var(--Gradient-Button, linear-gradient(90deg, #F91C30 0%, #F97829 100%));
  color: #FFF;
font-family: "Blauer Nue";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 100%; /* 16px */
  width: 100%;
  padding: 10px;
  font-weight: 600;
  cursor: pointer;

  transition: transform 0.2s;
}

.btn-sm:hover {
  transform: translateY(-2px);
}

.about-content {
  flex: 1;
}

.pill-label {
  display: inline-block;
  padding: 14px 20px;
  border-radius: 100px;
border: 1px solid rgba(63, 7, 12, 0.20);
  color: #3F070C;
font-family: Poppins;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 124%; /* 17.36px */
  margin-bottom: 24px;
  background: #FFFBF9;
}

.about-title {
  color: #3F070C;
font-family: "Blauer Nue";
font-size: 48px;
font-style: normal;
font-weight: 600;
line-height: 100%; /* 48px */
  margin-bottom: 24px;
}

.about-text {
  color: #3F3F3F;
font-family: Poppins;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 148%; /* 23.68px */
  margin-bottom: 16px;
  
}

/* Features Grid */
.features-section {
  padding: 40px 0 20px 0;
  position: relative;
  overflow: hidden;
  background-image: url('images/Dmenus BgSmall.png');
  background-size:contain ;
  background-position: center;
  background-repeat: no-repeat;
}


/* Dotted design like the screenshot (Features section bottom) */
.features-section .dot-corner {
  width: min(620px, 60vw);
  height: 220px;
  opacity: 0.25;
  background-size: 18px 18px;
  bottom: -90px;
}

.features-section .dot-bl {
  left: -120px;
  -webkit-mask-image: linear-gradient(90deg, black 0%, black 55%, transparent 85%);
  mask-image: linear-gradient(90deg, black 0%, black 55%, transparent 85%);
}

.features-section .dot-br {
  right: -120px;
  -webkit-mask-image: linear-gradient(270deg, black 0%, black 55%, transparent 85%);
  mask-image: linear-gradient(270deg, black 0%, black 55%, transparent 85%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: left;
}

.feature-item {
  padding: 20px 0;
}

.feature-icon-img {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  display: block;
  object-fit: contain;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon-img {
  transform: translateY(-8px) scale(1.05);
}

.feature-title {
  color: #3F070C;
font-family: "Blauer Nue";
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 100%; /* 20px */
  margin-bottom: 12px;
}

.feature-desc {
  color: #3F3F3F;
font-family: Poppins;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 124%; /* 19.84px */
}

/* Responsive Updates */
@media (max-width: 900px) {
  .about-inner {
    flex-direction: column;
    text-align: center;
  }

  .about-card-mockup {
    margin: 0 auto;
    width: 100%;
    max-width: auto;
    height: auto;
    aspect-ratio: 1/1.2;
  }
.card-main{
  left: 30px;
    bottom:150px;
}
.card-mains{
  left:30px;
  bottom: 160px;
  
}
 

  .about-title {
    font-size: 32px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .feature-icon-img {
    margin: 0 auto 24px;
  }

  .about-image {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .partners-inner {
    flex-direction: column;
    gap: 20px;
  }

  .partners-logos {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
}


@media (max-width: 600px) {
  .card-main,
  .card-mains {
    right: 20px;
    bottom: 60px;
  }
}


/* How It Works Section */
.how-it-works {
  position: relative;
  padding: 100px 0;
  background: var(--bg);
  text-align: center;
  overflow: hidden;
}

.how-it-works::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 586px;
  background: linear-gradient(180deg, #FEEEE4 0%, #FFFBF9 100%);
  z-index: 0;
}

.how-it-works > * {
  position: relative;
  z-index: 1;
}

.tc {
  text-align: center;
}

.how-step {
  display: block;
  margin-bottom: 120px;
}

.how-step:last-child {
  margin-bottom: 0;
}

.section-title {
  color: #3F070C;
text-align: center;
font-family: "Blauer Nue";
font-size: 48px;
font-style: normal;
font-weight: 600;
line-height: 100%; /* 48px */
  margin-bottom: 40px;
}

.tabs-container {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
  position: sticky;
  top: 0;
  z-index: 100;
  /* Same as section bg but with blur */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

.tabs-bar {
  padding: 6px;
  display: flex;
  gap: 5px;
  border-radius: 600px;
border: 1px solid rgba(63, 7, 12, 0.20);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.tab-item {
  padding: 12px 24px;
  border-radius: 40px;
  border: none;
  background: transparent;
font-family: Poppins;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 124%; /* 19.84px */
  cursor: pointer;
  transition: all 0.3s;
}

.tab-item.active {
 background: #3F070C;
  color: white;
}

.how-content-grid {
  display: flex;
  align-items: center;
  gap: 50px;
  text-align: left;
}

/* Alternate layouts: First (Step 1) is Image Left, Text Right */
.how-step:nth-of-type(odd) .how-content-grid {
  flex-direction: row;
}

.how-step:nth-of-type(even) .how-content-grid {
  flex-direction: row-reverse;
}


.how-mockup {
  position: relative;
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
 
}


.how-card-float {
  position: absolute;
  left: 30px;
  backdrop-filter: blur(0.7px);
  -webkit-backdrop-filter: blur(1.1px);
  padding: 8px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 86px;
  width: 340px;
  border: 1px solid #FFF;
  background: rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(5.599999904632568px);
  
  /* Animation properties */
  opacity: 0;
  animation: floatUp 0.8s ease-out forwards, bobbing 4s ease-in-out infinite;
}
.how-card-floatsss {
  position: absolute;
  left: 30px;
  backdrop-filter: blur(0.7px);
  -webkit-backdrop-filter: blur(1.1px);
  padding: 8px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 86px;
  width: 340px;
  border: 1px solid #FFF;
  background: rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(5.599999904632568px);
  
  /* Animation properties */
  opacity: 0;
  animation: floatUp 0.8s ease-out forwards, bobbing 4s ease-in-out infinite;
}

.how-card-floats {
  position: absolute;
  left: 30px;
  backdrop-filter: blur(0.7px);
  -webkit-backdrop-filter: blur(1.1px);
  padding: 14px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 86px;
  width: 340px;
  border: 1px solid #FFF;
  background: rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(5.599999904632568px);
  
  /* Animation properties */
  opacity: 0;
  animation: floatUp 0.8s ease-out forwards, bobbing 4s ease-in-out infinite;
}


.card-welcome {
  top: 80px;
  animation-delay: 0.2s, 1s;
}

.card-soup {
  bottom: 20px;
  left: 20px;
  width: auto;
  max-width: 60%;
  display: block;
  animation-delay: 0.6s, 2s;
  background: rgba(255, 255, 255, 0.2);
}

.card-soup img {
  width: 100%;
  border-radius: 12px;
  height: 120px;
  object-fit: cover;
  margin-bottom: 10px;
}

.card-soup-content h4 {
  color: white;
  margin-bottom: 5px;
  font-size: 16px;
}

.card-soup-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  margin-bottom: 15px;
}

/* Cart Summary Card */
.card-summary {
  top: 120px;
  height: 400px;
  width: 340px;
  max-width: 60%;
  display: block;
  padding: 20px;
  animation-delay: 0.2s, 1s;
  color: white;
  background: rgba(8, 8, 8, 0.15);
}

.card-summary-header {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 20px;
}

.card-summary-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.card-summary-item strong {
  display: block;
  margin-bottom: 4px;
  color: #FFF;
font-family: Poppins;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 124%; /* 19.84px */
}

.card-summary-item span {
  display: block;
  opacity: 0.8;
  color: #FFF;
font-family: Poppins;
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: 124%; /* 14.88px */
}

.card-summary-footer p {
  font-size: 12px;
  margin-bottom: 4px;
}

.card-summary-footer .points {
  opacity: 0.7;
  font-size: 10px;
}

.card-summary-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 15px;
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: white;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 13px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.btn-action {
 border-radius: 36px;
background: var(--Gradient-Button, linear-gradient(90deg, #F91C30 0%, #F97829 100%));
  color: white;
  font-weight: 600;
  padding: 16px;
  box-shadow: 0 4px 10px rgba(255, 26, 26, 0.2);
}

.btn-sm:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 15px rgba(255, 26, 26, 0.3);
}

/* Payment Card */

.how-card-floatss {
  position: absolute;
  left: 30px;
  backdrop-filter: blur(0.7px);
  -webkit-backdrop-filter: blur(1.1px);
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 86px;
  width: 340px;
  border: 1px solid #FFF;
  background: rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(5.599999904632568px);
  
  /* Animation properties */
  opacity: 0;
  animation: floatUp 0.8s ease-out forwards, bobbing 4s ease-in-out infinite;
}


.card-payment {
  top: 60px;
  width: auto;
  max-width: 60%;
  display: block;
  animation-delay: 0.2s, 1s;
}

.payment-header {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 8px;
  
}
.payment-options{
  padding: 20px;
  margin-top: 30px;
  width: 340px;
height: 258px;
  border-radius: 24px;
border: 1px solid #FFF;
background: rgba(255, 255, 255, 0.20);
backdrop-filter: blur(5.599999904632568px);
}

.payment-options p {
  color: #FFF;
font-family: Poppins;
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 124%; /* 24.8px */
  margin-bottom: 15px;
}

.payment-options .btn-sm {
  margin-bottom: 8px;
}

/* Delivery Stage Styles */
.card-delivery-type {
  top: 150px;
  width: 340px;
  animation-delay: 0.2s, 1s;
}

.card-delivery-choice {
  bottom: 170px;
  left: 30px;
  width: auto;
  height: auto;
  max-width: 60%;
  display: block;
  padding: 24px;
  animation-delay: 0.6s, 2s;
  background: rgba(255, 255, 255, 0.15);
}

.delivery-options p {
  font-size: 13px;
  color: white;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.delivery-options .btn-sm {
  margin-bottom: 8px;
}

/* Delivery Status */
.card-delivery {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  text-align: center;
  display: block;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: #4caf50;
  border-radius: 50%;
  margin: 0 auto 10px;
  box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.card-delivery strong {
  display: block;
  color: white;
  margin-bottom: 5px;
}

.card-delivery p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
}

/* Feature Checklist */
.feature-checklist {
  list-style: none;
  margin-top: 20px;
  margin-bottom: 30px;
}

.feature-checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #3F3F3F;
font-family: Poppins;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 148%; /* 23.68px */
}

.feature-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 10px;
border: 1px solid #F97929;
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}


.how-text-side {
  
  padding-right: 100px;
}
.how-text-sides {
  padding-left: 40px;
  padding-right: 0px;
}

.pill-label.sm {
  border-radius: 100px;
border: 1px solid rgba(63, 7, 12, 0.20);
color: #3F070C;
font-family: Poppins;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 124%; /* 17.36px */
  padding: 6px 12px;
  margin-bottom: 15px;
}

.how-title {
  color: #3F070C;
font-family: "Blauer Nue";
font-size: 48px;
font-style: normal;
font-weight: 600;
line-height: 100%; /* 48px */
margin-bottom: 14px;
white-space: normal;
}
.about-texts{
  color: #3F3F3F;
font-family: Poppins;
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 148%; /* 29.6px */
}
@media (max-width: 1000px) {
  .how-text-side{
    padding-right: 0px;
  }
}
@media (max-width: 768px) {
  
  .how-text-side {
    padding-right: 0px;
}
.about-texts{
  font-size: 18px;
}
.feature-checklist li{
  padding-left: 0px;
  padding-right: 30px;
  align-items: flex-start;
}
}
@media (max-width: 1000px) {

  .how-content-grid,
  .how-step:nth-of-type(odd) .how-content-grid,
  .how-step:nth-of-type(even) .how-content-grid {
    flex-direction: column !important;
    gap: 40px;
    text-align: center;
  }

  .how-mockup {
   margin: 0 auto;
    width: 100%;
    max-width: auto;
    height: 100%;
  }
   

 

  .how-card-float {
    left: 20px;
    right: 20px;
    max-width: 340px;
    padding: 15px;
  }
  
  .how-card-floatsss {
    left: 20px;
    right: 20px;
    max-width: 340px;
    padding: 15px;
  }
  
  .how-card-floats {
    left: 20px;
    right: 20px;
    max-width: 340px;
    padding: 15px;
  }
 .how-card-floatss {
    left: 20px;
    right: 20px;
    max-width: 340px;
   
  }

  .card-summary {
    width: auto;
    top: 20px;
    padding: 15px;
  }

  .card-summary-header {
    margin-bottom: 12px;
    justify-content: center;
  }

  .card-summary-actions {
    margin-top: 10px;
    gap: 6px;
  }

  .section-title {
    font-size: 32px;
  }

  .how-title {
    font-size: 32px;
  }

  .tabs-bar {
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 20px;
  }
}
@media (max-width: 768px){
  .section-title{
    font-size: 25px;
    margin-bottom: 10px;
  }
  
  .tabs-container{
    margin-bottom: 40px;
  }
  
}

@media (max-width: 480px) {
  .how-mockup img {
   width: 396px;
   border-radius: 35px;
  }
  .card-mains img{
    width: 100%;
    height: 100%;
    padding: 10px;
  }
  .card-mains {
        left: 35px;
    }
  

  .card-summary-header {
    margin-bottom: 12px;
  }

  .card-summary-item {
    font-size: 11px;
    padding-bottom: 8px;
    margin-bottom: 8px;
  }

  .card-summary-actions {
    gap: 6px;
  }

  .btn-sm {
    padding: 6px 12px;
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  .card-float {
    display: none;
  }
  .how-card-float{
    display: none;
  }
  
  
  .how-card-floats{
    width: 280px;
    left: 80px;
  }
  .card-summary{
    height: 360px;
  }
  .card-main{
    left:15px;
    width:300px
  }
  .card-mains{
    left: 100px;
  }
}
@media (max-width: 480px) {
  .card-mains{
    width: 280px;
  }
  .card-mains{
    left: 70px;
  }
}
/* CTA Banner Styles */
.cta-banner-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(0deg, #FEEEE4 40%, #FFFBF9 60%);
}
.banner-img1{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -301px;
  background-image: url('images/Dmenus\ BgG.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
/* Red dots behind banner localized to bottom part */


.cta-banner {
  position: relative;
  background-color: #3b0e0e;
  /* Dark maroon color */
  border-radius: 40px;
  padding: 80px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  color: white;
  text-align: left;
  box-shadow: 0 20px 50px rgba(59, 14, 14, 0.15);
}

.cta-content {
  max-width: 650px;
}

.cta-title {
  color: #F9F5EF;
font-family: "Blauer Nue";
font-size: 48px;
font-style: normal;
font-weight: 600;
line-height: 100%; /* 48px */
  margin-bottom: 24px;
}

.cta-desc {
  color: #F9F5EF;
font-family: Poppins;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 124%; /* 19.84px */
}

.cta-banner .btn-cta {
  border-radius: 36px;
background: #F91C30;
  padding: 18px 45px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(255, 26, 26, 0.4);
  white-space: nowrap;
}

/* Advantages Section */


/* WHY US SECTION */
.why-us {
  padding: 100px 0;
  background: #FFFBF9;
  position: relative;
  overflow: hidden;
}

/* Dotted design */
.why-us .dot-corner {
  width: min(620px, 60vw);
  height: 220px;
  opacity: 0.25;
  background-size: 18px 18px;
  bottom: -90px;
}

.why-us .dot-bl {
  left: -120px;
  -webkit-mask-image: linear-gradient(90deg, black 0%, black 55%, transparent 85%);
  mask-image: linear-gradient(90deg, black 0%, black 55%, transparent 85%);
}

.why-us .dot-br {
  right: -120px;
  -webkit-mask-image: linear-gradient(270deg, black 0%, black 55%, transparent 85%);
  mask-image: linear-gradient(270deg, black 0%, black 55%, transparent 85%);
}

/* Grid */
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Card */
.why-us__card {
  padding: 20px 20px;
  border-radius: 12px;
  border: 1px solid var(--Gradient-Button, #F91C30);
  background: #FFF;
  transition: 0.3s ease;
}

.why-us__card:hover {
  transform: translateY(-6px);
  border-color: #ff4d4d;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

/* Header */
.why-us__header {
  text-align: center;
  margin-bottom: 40px;
}

.why-us__badge {
  display: inline-block;
  border: 1px solid rgba(63, 7, 12, 0.20);
  border-radius: 100px;
  font-size: 14px;
  padding: 14px 20px;
  color: #3F070C;
  font-family: Poppins;
  font-weight: 400;
  line-height: 124%;
  margin-bottom: 20px;
}

.why-us__title {
  color: #3F070C;
  text-align: center;
  font-family: "Blauer Nue";
  font-size: 48px;
  font-weight: 600;
  line-height: 100%;
}

/* Icon */
.why-us__icon {
  margin-bottom: 60px;
}

/* Card Title */
.why-us__card-title {
  color: #3F070C;
  font-family: "Blauer Nue";
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 12px;
}

/* Card Text */
.why-us__card-text {
  color: #3F3F3F;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 400;
  line-height: 124%;
}

/* Responsive */
@media (max-width: 1024px) {
  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .why-us__grid {
    grid-template-columns: 1fr;
  }

  .why-us__title {
    font-size: 28px;
  }
}


@media (max-width: 900px) {
  .partners-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .partners-title {
    white-space: normal;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 60px 30px;
    gap: 30px;
  }

  .cta-title {
    font-size: 32px;
  }

  .cta-content {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }
}

/* Testimonials Section Styles */
.testimonials-section {
  padding: 100px 0;
  background: #FFFBF9;
  overflow: hidden;
}

.testimonials-slider-container {
  margin-top: 60px;
  width: 100%;
  position: relative;
}

.testimonials-slider {
  display: flex;
  gap: 30px;
  transition: transform 0.8s cubic-bezier(0.45, 0, 0.55, 1);
  /* Custom smooth transition */
  padding: 10px;
  /* For card shadows */
}

.testimonial-card {
  min-width: 400px;
  background: white;
  border-radius: 24px;
  padding: 20px 40px 20px 20px;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.testimonial-text {
  color: #3F3F3F;
font-family: Poppins;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 124%; /* 19.84px */
margin-bottom: 120px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-author strong {
  color: #3F070C;
font-family: "Blauer Nue";
font-size: 20px;
font-style: normal;
font-weight: 600;
line-height: 100%; /* 20px */
  margin-bottom: 5px;
}

.testimonial-author span {
  color: #3F070C;
font-family: Poppins;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 124%; /* 19.84px */
}

/* FAQ Section Styles */
.faq {
  padding: 0 0 100px 0;
  background: #FFFBF9;;
}

.faq .container {
  max-width: 900px;
  margin: 0 auto;
}

/* Header */
.faq__header {
  text-align: center;
  margin-bottom: 60px;
}

.faq__badge {
  display: inline-block;
  border: 1px solid rgba(63, 7, 12, 0.2);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 14px;
  margin-bottom: 20px;
  color: #3F070C;
}

.faq__title {
  font-family: "Blauer Nue";
  font-size: 48px;
  font-weight: 600;
  color: #3F070C;
  line-height: 1.1;
}

/* FAQ List */
.faq__item {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}

.faq__item:last-child {
  border-bottom: none;
}

.faq__items {
  padding: 20px 0;
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #3F070C;
font-family: "Blauer Nue";
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 100%; /* 20px */
}

.faq__icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

/* Answer */
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: #3F3F3F;
font-family: Poppins;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 124%; /* 19.84px */
  margin-top: 10px;
}

.faq__item.active .faq__answer {
  max-height: 200px;
}

.faq__item.active .faq__icon {
  transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 768px) {
  .faq__title {
    font-size: 28px;
  }
}


@media (max-width: 768px) {
  .testimonial-card {
    min-width: 320px;
    padding: 30px;
  }

  .faq-header span {
    font-size: 16px;
  }
}

/* Pricing Section Styles */

.priceplan-container{
  padding: 100px 0;
    background:#FFFBF9;
}

.priceheader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.price-heading {
  border-radius: 64px;
border: 1px solid #9F9F9F;
padding: 12px 40px;
color: #000;
text-align: center;
font-family: Poppins;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 124%; /* 17.36px */
}

.price-title {
  color: #3F070C;
font-family: "Blauer Nue";
font-size: 48px;
font-style: normal;
font-weight: 600;
line-height: 100%; /* 48px */
  max-width: 660px;
  text-align: center;
}

.pricing-section {
  padding: 10px 20px;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 10px;
}

/* Container */
.price-cards-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Card */
.price-card {
  width: 480px;
  padding: 35px;
  border-radius: 24px;
border: 1px solid #E8D7D4;

background: #FFF;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 520px) {
  .priceplan-container{
    padding: 60px 0;
  }

  .price-title {
    font-size: 25px;
    line-height: 110%;
  }

  .pricing-section {
    padding: 10px 0;
  }

  .price-card {
    width: 100%;
    padding: 24px;
  }
}

/* Title */
.price-card h3 {
 color: #3F070C;
font-family: "Blauer Nue";
font-size: 20px;
font-style: normal;
font-weight: 600;
line-height: 100%; /* 20px */
}

/* Description */
.description {
  color: #3F3F3F;
font-family: Poppins;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 124%; /* 19.84px */
  margin: 15px 0 20px;
}

/* Divider */
.divider {
  height: 1px;
  background: #E8D7D4;
  margin-bottom: 20px;
}

/* Price */
.price {
  color: #3F070C;
font-family: "Blauer Nue";
font-size: 36px;
font-style: normal;
font-weight: 600;
line-height: 100%; /* 36px */
  margin-bottom: 20px;
}

.price span {
  color: rgba(40, 24, 21, 0.75);
font-family: "Blauer Nue";
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 100%;
  margin-left: 5px;
}

.price small {
  display: inline;
  color: rgba(40, 24, 21, 0.75);
font-family: Poppins;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 100%;;
  margin-top: 5px;
}

/* Features */
.features {
  margin: 0 0 30px;
}

.feature-items {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #5f5451;
}

.feature-item svg {
  flex-shrink: 0;
}

/* Buttons */
.btn {
  padding: 16px;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s ease;
}

/* Filled Button */
.btn-primary {
  background: linear-gradient(90deg, #ff2d55, #ff7a00);
  border: none;
  color: white;
}

/* Outline Button */
.btn-outline {
  background: transparent;
  border-radius: 36px;
border: 2px solid var(--Gradient-Button, #F91C30);
  color: #3F070C;
font-family: "Blauer Nue";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 100%; /* 16px */
}
.btn-outlines{
  display: flex;
background: transparent;
padding: 16px;
justify-content: center;
align-items: center;
gap: 10px;
  border-radius: 36px;
border: 1px solid #FFF;
}
.pricing-footer{
    border-radius: 24px;
border: 1px solid #E8D7D4;
background: #FFF;
max-width: 970px;

  margin: 0 auto;
}
.pricing{
    padding: 35px;
    display: flex;
    
    justify-content: space-between;
}
.pricing-content{
    display: flex;
    flex-direction: column;

    gap: 10px;
}
.pricing-content h3{
    color: #3F070C;
font-family: "Blauer Nue";
font-size: 20px;
font-style: normal;
font-weight: 600;
line-height: 100%; /* 20px */
}
.pricing-content span{
    color: #3F3F3F;
font-family: Poppins;
font-size: 16px;
max-width: 600px;
font-style: normal;
font-weight: 400;
line-height: 124%; /* 19.84px */
}
.lets-talk{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
border-radius: 36px;
border: 2px solid var(--Gradient-Button, #F91C30);
background: rgba(160, 93, 81, 0.00);
color: #3F070C;
font-family: "Blauer Nue";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 100%; /* 16px */
}
@media (max-width: 768px) {
    .pricing{
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .pricing{
        display:flex;
        flex-direction: column;
        gap: 20px;
    }
}
/* Blogs Section Styles */


.insights {
  
 background: #FFFBF9;
}

.insights__header {
  text-align: center;
  margin-bottom: 60px;
}
.insights__badge {
  display: inline-block;
 padding: 14px 24px;
  border-radius: 100px;
border: 1px solid rgba(63, 7, 12, 0.20);
  color: #3F070C;

font-family: Poppins;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 124%; /* 17.36px */
  margin-bottom: 20px;
}

.insights__title {
  color: #3F070C;
text-align: center;
font-family: "Blauer Nue";
font-size: 48px;
font-style: normal;
font-weight: 600;
line-height: 100%; /* 48px */
  margin-bottom: 60px;
  max-width: 680px;
  margin: 0 auto;
  
}

.insights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.insights__card {
  
  overflow: hidden;
  transition: 0.3s ease;
}




.insights__image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
border: 1px solid #E8D7D4;
}

.insights__content {
  padding: 25px 0;
}

.insights__card-title {
  color: #3F070C;
font-family: "Blauer Nue";
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 100%; /* 20px */
  margin-bottom: 12px;
  
}

.insights__card-text {
  color: #3F3F3F;
font-family: Poppins;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 124%; /* 19.84px */
margin-bottom: 20px;
opacity: 0.8;
}

.insights__btn {
  display: inline-block;
  padding: 16px;
  border-radius: 999px;
  border-radius: 36px;
background: var(--Gradient-Button, linear-gradient(90deg, #F91C30 0%, #F97829 100%));
  color: #FFF;

font-family: "Blauer Nue";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 100%;
text-decoration: none;
 
}

.insights__btn:hover {
  opacity: 0.9;
}
@media (max-width: 1024px) {
  .insights__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .insights__grid {
    grid-template-columns: 1fr;
  }

  .insights__title {
    font-size: 28px;
  }
}


/* Pre-Footer CTA Section Styles */
.pre-footer-cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.banner-img{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -370px;
  background-image: url('images/Dmenus BgSmall.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.dot-corner-pre {
  position: absolute;
  width: 400px;
  height: 400px;
  background-image: radial-gradient(#ff473a 2px, transparent 2px);
  background-size: 28px 28px;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.dot-bottom-left {
  bottom: -200px;
  left: -100px;
}

.dot-bottom-right {
  bottom: -200px;
  right: -100px;
}
@media (max-width: 1029px) {
  .banner-img{
    display: none;
  }
}

@media (max-width: 768px) {
  .dot-corner-pre {
    width: 250px;
    height: 250px;
  }

  .dot-bottom-left {
    bottom: -100px;
    left: -50px;
  }

  .dot-bottom-right {
    bottom: -100px;
    right: -50px;
  }
}

.pre-footer-cta-section .cta-banner {
  position: relative;
  z-index: 1;
}

/* Footer Section Styles */
.site-footer {
  background: #FFECE5;
  /* Light peach background from design */
  padding: 50px 0 20px 0px;
  color: #3b0e0e;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.footer-logo {
  height: 100px;
  /* Adjust based on logo proportions */
}

.footer-links-grid {
  display: flex;
  gap: 150px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 20px;
}

.footer-links a {
  color: #3F070C;
font-family: "Blauer Nue";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 100%; /* 16px */
text-decoration: none;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;


}

.footer-copyright{
  color: #3F070C;
font-family: Poppins;
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: 124%; /* 14.88px */
}

.footer-legal a {
  text-decoration: none;
  color: #666;
  margin-left: 30px;
  color: #3F070C;
font-family: Poppins;
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: 124%; /* 14.88px */
}

.footer-legal a:hover {
  color: #3b0e0e;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 50px 0 20px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 50px;
    align-items: center;
    text-align: center;
  }

  .footer-links-grid {
    flex-direction: column;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-legal a {
    margin: 0 15px;
  }
}
@media (max-width: 1000px) {
.pricing-footer{
      max-width: 480px;
  }
}

@media (max-width: 768px) {
  .how-it-works{
    padding: 0 0;
  }
}

@media (max-width: 600px) {
.how-mockup{
    width: 480px;
  }
  
}
@media (max-width: 400px) {
  .how-mockup{
    width: 360px;
  }
      .how-card-floats{
        left:45px;
      }
      .card-mains{
        left:45px
      }
       
}
@media (max-width: 480px) {
  .how-card-floatss{
        width: 280px;
        
        left:45px;
      }
    .payment-options{
      width:280px;
      height:240px
    }
    .card-payment{
      top: 20px;
    }
    .card-delivery-type{
        display: none;
      }
      .how-card-floatsss{
        left:80px
      }
      .how-text-sides {
    padding-left: 0px;
    padding-right: 0px;
}
.pricing-footer{
      max-width: 280px;
  }
      .pricing-footer{
      max-width: 280px;
  }
  .price-card{
    max-width: 280px;
  }
}