@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap');

/* CSS Variables for Premium Theme */
:root {
  --primary-yellow: #ffc20a;
  --gradient-yellow: linear-gradient(135deg, #ffcc00 0%, #ffeb9a 100%);
  --dark-bg: rgba(4, 12, 24, 0.94);
  --card-bg: rgba(255, 255, 255, 0.03);
  --glass-bg: rgba(255, 255, 255, 0.08);
  --border-glass: rgba(255, 194, 10, 0.3);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.5);
  --shadow-glow: 0 0 30px rgba(255, 194, 10, 0.15);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 12px 48px rgba(0, 0, 0, 0.4);
  --container-max: 1400px;
  --container-padding: clamp(20px, 5vw, 80px);
}

/* Video Background Styles */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
}

/* Video overlay for better text readability */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 12, 24, 0.7); /* Dark overlay to match your theme */
    z-index: -1;
}

/* Update your existing .home section */
.home {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    position: relative; /* Ensure positioning context */
    padding-top: 100px;
    overflow: hidden; /* Hide any overflow */
}

/* Ensure content appears above video */
.home .container {
    position: relative;
    z-index: 1;
}


/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-family: 'Inter', sans-serif;
  background-color: #000;
}

/* Intro Loading Screen */
#intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  color: var(--primary-yellow);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: blurFade 2.5s ease-out forwards;
  overflow: hidden;
}

#intro h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-family: "Kaushan Script", cursive;
  font-weight: 400;
  letter-spacing: 2px;
  filter: blur(10px);
  opacity: 0;
  animation: textAppear 2.5s ease-out forwards;
}

@keyframes textAppear {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: scale(1.2);
  }
  40% {
    opacity: 1;
    filter: blur(0px);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    filter: blur(8px);
    transform: scale(0.95);
  }
}

@keyframes blurFade {
  0% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; pointer-events: none; }
}

/* Enhanced Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 194, 10, 0.1);
  z-index: 1000;
  padding: 0;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 15px var(--container-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-family: "Kaushan Script", cursive;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--text-primary);
  background: var(--gradient-yellow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
}

.nav-menu ul {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3rem);
  list-style: none;
  align-items: center;
}

.nav-menu ul li a {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-yellow);
  transition: width 0.3s ease;
}

.nav-menu ul li a:hover,
.nav-menu ul li a.active {
  color: var(--primary-yellow);
}

.nav-menu ul li a:hover::after,
.nav-menu ul li a.active::after {
  width: 100%;
}

.demo-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 12px;
  background: var(--gradient-yellow);
  color: #000;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-glow);
}

.demo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 194, 10, 0.3);
}

.demo-btn i {
  font-size: 18px;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--text-primary);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Home Section */
.home {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  background: var(--dark-bg);
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

/* Enhanced Glow Effects */
.home::before,
.home::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 194, 10, 0.15), transparent 70%);
  filter: blur(80px);
  animation: floatGlow 6s ease-in-out infinite alternate;
  pointer-events: none;
}

.home::before {
  width: 400px;
  height: 400px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.home::after {
  width: 300px;
  height: 300px;
  top: 60%;
  right: 15%;
  animation-delay: 3s;
}

@keyframes floatGlow {
  0% { opacity: 0.1; transform: scale(1) translate(0, 0); }
  100% { opacity: 0.25; transform: scale(1.1) translate(20px, -20px); }
}

.topic {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 4vw, 40px);
  z-index: 2;
}

.topic h1 {
  font-family: "Inter", sans-serif;
  color: var(--text-primary);
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.1;
  font-weight: 700;
  max-width: 600px;
}

.highlight {
  background: var(--gradient-yellow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.topic h2 {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.6;
  max-width: 500px;
}

.demo {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.demo button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 180px;
}

.schedule {
  border: none;
  background: var(--gradient-yellow);
  color: #000;
  box-shadow: var(--shadow-glow);
  animation: pulseGlow 3s infinite ease-in-out;
}

.schedule:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 194, 10, 0.4);
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: var(--shadow-glow); }
  50% { box-shadow: 0 0 40px rgba(255, 194, 10, 0.3); }
}

.peek {
  border: 2px solid var(--primary-yellow);
  color: var(--primary-yellow);
  background: rgba(255, 194, 10, 0.05);
  backdrop-filter: blur(10px);
}

.peek:hover {
  background: rgba(255, 194, 10, 0.1);
  transform: translateY(-3px);
}

.topic ul {
  display: flex;
  gap: clamp(20px, 4vw, 40px);
  color: var(--text-secondary);
  font-family: "Inter", sans-serif;
  flex-wrap: wrap;
  padding-left: 0;
  list-style: none;
}

.topic ul li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  font-weight: 500;
}

.topic ul li::before {
  content: '●';
  color: var(--primary-yellow);
  position: absolute;
  left: 0;
  font-size: 16px;
}

/* Preview Section */
.preview {
  width: 45%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.qr_jump {
  position: absolute;
  top: -5%;
  right: -5%;
  background: var(--gradient-yellow);
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatBounce 3s ease-in-out infinite;
  box-shadow: var(--shadow-card);
  z-index: 3;
}

.qr_jump i {
  color: #000;
  font-size: 28px;
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
}

.frame {
  background: rgba(255, 255, 255, 0.1);
  padding: 24px;
  border-radius: 24px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-card);
}

.display {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(0, 0, 0, 0.95));
  border-radius: 20px;
  color: var(--text-primary);
  padding: 24px;
  font-family: "Inter", sans-serif;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 280px;
}

.display_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.display_head p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
}

.display_head .ri-qr-code-line {
  color: var(--primary-yellow);
  font-size: 24px;
}

.display_head .ri-smartphone-line {
  color: var(--text-muted);
  font-size: 24px;
}

.dish {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 16px;
  gap: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.dish:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
}

.dish .ri-restaurant-line {
  font-size: 24px;
  color: var(--primary-yellow);
}

.about_dish h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.about_dish p {
  font-size: 14px;
  color: var(--primary-yellow);
  font-weight: 600;
}

.display_button {
  background: var(--gradient-yellow);
  color: #000;
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.display_button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 194, 10, 0.3);
}

.scroll_down_arrow {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  animation: bounceArrow 2s ease-in-out infinite;
}

.scroll_down_arrow i {
  color: var(--primary-yellow);
  font-size: 32px;
  opacity: 0.7;
}

@keyframes bounceArrow {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* Services Section */
.services {
  min-height: 100vh;
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  padding: 80px 0;
  position: relative;
}

.service_head {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 80px;
}

.service_head h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.service_head p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.6;
}

.services .container {
  flex-direction: column;
  gap: 100px;
}

.qr_service,
.billing_service,
.analysis_service {
  display: flex;
  align-items: center;
  gap: 60px;
}

.billing_service {
  flex-direction: row-reverse;
}

.qr_detail,
.billing_detail,
.analysis_detail {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.qr_detail_head,
.billing_detail_head,
.analysis_detail_head {
  display: flex;
  align-items: center;
  gap: 20px;
}

.qr_detail_head i,
.billing_detail_head i,
.analysis_detail_head i {
  padding: 20px;
  border-radius: 16px;
  font-size: 32px;
}

.qr_detail_head i {
  background: var(--gradient-yellow);
  color: #000;
}

.billing_detail_head i {
  background: var(--dark-bg);
  color: var(--primary-yellow);
}

.analysis_detail_head i {
  background: linear-gradient(135deg, #666, #999);
  color: var(--text-primary);
}

.qr_detail_head h3,
.billing_detail_head h3,
.analysis_detail_head h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text-primary);
  font-weight: 700;
}

.qr_detail_mid p,
.billing_detail_mid p,
.analysis_detail_mid p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--text-secondary);
  line-height: 1.7;
}

.qr_detail_end,
.billing_detail_end,
.analysis_detail_end {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.qr_detail_end ul,
.billing_detail_end ul,
.analysis_detail_end ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.qr_detail_end ul li,
.billing_detail_end ul li,
.analysis_detail_end ul li {
  font-size: 15px;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.qr_detail_end ul li::before,
.billing_detail_end ul li::before,
.analysis_detail_end ul li::before {
  content: '●';
  color: var(--primary-yellow);
  position: absolute;
  left: 0;
  font-size: 12px;
  top: 6px;
}

/* Service Cards */
.service_card {
  flex: 0 0 400px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.premium_jump {
  position: absolute;
  top: -6%;
  right: -4%;
  background: var(--gradient-yellow);
  color: #000;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  animation: floatBounce 3s ease-in-out infinite;
  z-index: 2;
  box-shadow: var(--shadow-glow);
}

.billing_service .premium_jump {
  left: -4%;
  right: auto;
}

.card_frame {
  width: 100%;
  height: 100%;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-card);
}

.card_frame:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.card_icon {
  width: 80%;
  height: 80%;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.qr_service .card_icon {
  background: var(--gradient-yellow);
}

.billing_service .card_icon {
  background: var(--dark-bg);
}

.analysis_service .card_icon {
  background: linear-gradient(135deg, #666, #999);
}

.card_icon i {
  font-size: 80px;
  transition: all 0.3s ease;
}

.qr_service .card_icon i {
  color: #000;
}

.billing_service .card_icon i,
.analysis_service .card_icon i {
  color: var(--text-primary);
}

.billing_service .card_icon i {
  color: var(--primary-yellow);
}

.card_frame:hover .card_icon i {
  transform: scale(1.1);
}

/* Features Section */
.features {
  min-height: 100vh;
  background: var(--dark-bg);
  padding: 80px 0;
  position: relative;
}

.features::before,
.features::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 194, 10, 0.1), transparent 70%);
  filter: blur(100px);
  animation: floatGlow 8s ease-in-out infinite alternate;
  pointer-events: none;
}

.features::before {
  width: 300px;
  height: 300px;
  top: 20%;
  right: 10%;
}

.features::after {
  width: 400px;
  height: 400px;
  bottom: 20%;
  left: 10%;
  animation-delay: 4s;
}

.features .container {
  flex-direction: column;
}

.feature_head {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 80px;
}

.feature_head h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.feature_head p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.6;
}

.feature_cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.fcard {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 40px;
  text-align: left;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-card);
}

.fcard:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255, 194, 10, 0.5);
}

.fcard i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: var(--gradient-yellow);
  color: #000;
  border-radius: 18px;
  font-size: 32px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.fcard:hover i {
  transform: scale(1.1);
  box-shadow: var(--shadow-glow);
}

.fcard h4 {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.fcard:hover h4 {
  color: var(--primary-yellow);
}

.fcard p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* CTA Section */
.get_your_trial {
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.get_your_trial .content {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 50px;
  text-align: center;
  max-width: 800px;
  box-shadow: var(--shadow-card);
}

.get_your_trial .content h4 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 20px;
}

.content_description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 40px;
}

.trial_price_btn {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.trial,
.price {
  padding: 16px 32px;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 180px;
}

.trial {
  border: none;
  background: var(--gradient-yellow);
  color: #000;
  box-shadow: var(--shadow-glow);
}

.trial:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 194, 10, 0.4);
}

.price {
  border: 2px solid var(--primary-yellow);
  color: var(--primary-yellow);
  background: rgba(255, 194, 10, 0.05);
}

.price:hover {
  background: rgba(255, 194, 10, 0.1);
  transform: translateY(-3px);
}

/* Insights Section */
.insights {
  background: linear-gradient(135deg, #111 0%, #000 100%);
  padding: 80px 0;
}

.insights .container {
  flex-direction: column;
}

.insight_head {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 80px;
}

.insight_head h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.insight_head p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.6;
}

.insight_cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.insight_card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-card);
}

.insight_card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.card_top {
  background: linear-gradient(135deg, var(--dark-bg), #1a1a1a);
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card_top i {
  background: var(--gradient-yellow);
  color: #000;
  font-size: 32px;
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow-glow);
}

.content_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px 0;
}

.insight_topic {
  background: rgba(255, 194, 10, 0.2);
  color: var(--primary-yellow);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.topic_date {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
}

.content_head {
  padding: 20px 24px 30px;
}

.content_head h5 {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
}

.content_head p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--dark-bg), #000);
  padding: 80px 0 20px;
  border-top: 1px solid rgba(255, 194, 10, 0.1);
}

footer .container {
  flex-direction: column;
  gap: 60px;
  align-items: flex-start;
}

.footer_topic {
  max-width: 100%;
  text-align: center;
}

.footer_topic h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: "Kaushan Script", cursive;
  color: var(--text-primary);
  margin-bottom: 16px;
  background: var(--gradient-yellow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer_topic h5 {
  font-size: 18px;
  color: var(--primary-yellow);
  font-weight: 600;
  margin-bottom: 16px;
}

.footer_topic p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.footer_row {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  justify-items: center;
}

.quick_links,
.contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.quick_links h3,
.contact h3 {
  font-size: 20px;
  color: var(--primary-yellow);
  font-weight: 600;
}

.quick_links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quick_links ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 16px;
}

.quick_links ul li a:hover {
  color: var(--primary-yellow);
}

.contact_info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact_info i {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 18px;
}

.contact_info i p {
  font-size: 16px;
}

.social_handle {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.social_handle i {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  font-size: 20px;
  padding: 12px;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.social_handle i:hover {
  background: var(--gradient-yellow);
  color: #000;
  transform: translateY(-3px);
}

.social_handle a{
  display: flex;
  text-decoration: none;
}

.made_by {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.made_by p {
  color: var(--text-muted);
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  :root {
    --container-padding: clamp(20px, 4vw, 60px);
  }
  
  .qr_service,
  .billing_service,
  .analysis_service {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  
  .billing_service {
    flex-direction: column;
  }
  
  .qr_detail_end,
  .billing_detail_end,
  .analysis_detail_end {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    transition: left 0.3s ease;
    border-top: 1px solid rgba(255, 194, 10, 0.2);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu ul {
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 0;
    height: 100%;
    justify-content: flex-start;
  }
  
  .nav-menu ul li a {
    font-size: 18px;
    padding: 1rem;
    display: block;
  }
  
  .demo-btn {
    display: none;
  }
  
  .home .container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
    padding-top: 40px;
  }
  
  .topic,
  .preview {
    width: 100%;
  }
  
  .demo {
    justify-content: center;
  }
  
  .topic ul {
    justify-content: center;
  }
  
  .feature_cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .insight_cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .trial_price_btn {
    flex-direction: column;
    align-items: center;
  }
  
  .get_your_trial .content {
    padding: 30px 20px;
  }

  .billing_service{
    display: flex;
    flex-direction: column-reverse;
  }

  .service_card{
    width: 100% !important;
  }

  .qr_detail_end ul, .billing_detail_end ul, .analysis_detail_end ul{
    text-align: start;
  }

  .qr_detail_end ul li::before, .billing_detail_end ul li::before, .analysis_detail_end ul li::before {
    margin-top: -4px;
  }
}

@media (max-width: 480px) {
  :root {
    --container-padding: 20px;
  }
  
  .nav-container {
    padding: 15px var(--container-padding);
  }
  
  .frame {
    padding: 16px;
  }
  
  .display {
    padding: 20px;
    min-width: 240px;
  }
  
  .fcard,
  .get_your_trial .content {
    padding: 24px;
  }
  
  .service_card {
    flex: 1;
    height: 300px;
  }
  
  .premium_jump {
    font-size: 10px;
    padding: 6px 12px;
  }
}
