* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #B9D0BF;
  --secondary: #FFFFFF99;
  --white: #fff;
  --primary-font: "Outfit";
  --secondary-font: "Syne";
}

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font: inherit;
  vertical-align: baseline;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit
}

body {
  font-family: 'Outfit';
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: var(--secondary);
  background-color: #0F0F10;
}

html {
  scroll-behavior: smooth !important;
}


.text-accent {
  color: var(--primary);
}

/* Header Styling */
.header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100 !important;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.header.scrolled {
  background-color: rgba(0, 0, 0);
  backdrop-filter: blur(10px);
}

.logo {
  color: var(--white);
  text-decoration: none;
  letter-spacing: 1px;
  transition: transform 0.3s ease;
  font-weight: 600;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 0%;
}

.logo span {
  color: var(--primary);
}

.logo:hover {
  transform: scale(1.05);
}

/* Navigation Menu */
.nav-list {
  list-style: none;
  display: flex;
  gap: 10px;
}

.nav-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  position: relative;
  padding-bottom: 5px;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:focus {
  color: var(--white);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Hamburger Menu for Mobile */
.nav-toggle {
  display: none;
  /* Hide on desktop */
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.hamburger {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  transition: transform 0.3s ease, top 0.3s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

.nav-toggle.open .hamburger {
  background-color: transparent;
}

.nav-toggle.open .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.open .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}



.whatsapp-contact {
  position: fixed;
  bottom: 2%;
  right: 2%;
  z-index: 9999 !important;
  background-color: white;
  padding: 20px;
  border-radius: 50%;
  display: block;
  transition: all 0.5s;
}

.whatsapp-contact:hover {
  transform: translateY(-10px);
}



/* ===== Hero ===== */
.hero {
  height: 80vh;
  /* background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%); */
  /* position: absolute; */
  overflow: hidden;
  background: radial-gradient(circle at top right,
      rgba(185, 208, 191, 0.3),
      transparent 40%),
    radial-gradient(circle at bottom left,
      rgba(185, 208, 191, 0.3),
      transparent 40%),
    #000000;
}

.hero .banner-text {
  padding-top: 180px;
  max-width: 900px;
  z-index: 2 !important;
}

.hero .banner-text h1 {
  font-weight: 600;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 0%;
}

.hero .banner-text p {
  font-weight: 300;
  font-size: 20px;
  line-height: 33px;
  text-align: center;
  color: var(--secondary);
}

.hero .banner-text .btn {
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  padding: 15px 20px;
  border-radius: 34px;
}

.hero .banner-text .btn-dark {
  color: var(--white);
  background-color: #1A1A1A;
}

.hero .banner-text .btn-light {
  color: black;
  background-color: var(--white);
}

/* ===== Background Particles ===== */
.particle {
  position: absolute;
  /* opacity: 0.2; */
}

.triangle {
  top: -10%;
  left: 35%;
  width: 200px;
  height: 200px;
  transform: translateX(-50%) rotate(0deg);
  border-top: 2px solid rgba(255, 255, 255, 0.05);
  border-left: 2px solid rgba(255, 255, 255, 0.05);
  border-right: 2px solid rgba(255, 255, 255, 0.05);
  border-bottom: 2px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  /* opacity: 17%; */
  background: transparent;
  animation: rotateTriangle 10s linear infinite;
}

@keyframes rotateTriangle {
  from {
    transform: translateX(-50%) rotate(0deg);
  }

  to {
    transform: translateX(-50%) rotate(360deg);
  }
}

.circle {
  bottom: -5%;
  left: 20%;
  width: 250px;
  height: 250px;
  border: 2px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: pulseCircle 4s ease-in-out infinite;
}

@keyframes pulseCircle {

  0%,
  100% {
    transform: translateX(-50%) scale(1);
  }

  50% {
    transform: translateX(-50%) scale(1.1);
  }
}

.line {
  position: absolute;
  width: 200px;
  height: 200px;
  overflow: visible;
}

/* Left Line */
.line-left {
  top: 10%;
  left: 0%;
  border-bottom: 2px solid rgba(255, 255, 255, 0.05);
  border-bottom-right-radius: 35px;
  animation: lineMove1 8s ease-in-out infinite;
}

/* Right Line */
.line-right {
  bottom: 25%;
  right: 0%;
  border-top: 2px solid rgba(255, 255, 255, 0.05);
  border-top-left-radius: 35px;
  animation: lineMove2 8s ease-in-out infinite;
}

/* SVG Icon Animation */
.line-icon {
  position: absolute;
  animation: iconLeftMove 3s linear infinite;
  color: white !important;
  z-index: 1 !important;
  opacity: 0.5;
}

/* Left Line Animation (Left → Right → Left) */
@keyframes iconLeftMove {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(200px);
  }

  100% {
    transform: translateX(0);
  }
}

/* Right Line SVG */
.line-left .line-icon {
  bottom: -10%;
  right: 0;
  animation: iconRightMove 5s linear infinite;

}

/* Right Line SVG */
.line-right .line-icon {
  top: -8%;
  right: 0;
  transform: rotate(20deg);
  animation: iconRightMove 5s linear infinite;

}

/* Right Line Animation (Right → Left → Right) */
@keyframes iconRightMove {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-180px);
  }

  100% {
    transform: translateX(0);
  }
}

/* Optional gentle pulsing effect */
.line-icon circle {
  animation: glowPulse 1.5s ease-in-out infinite;
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

/* ===== Highlight Lines ===== */
.highlight-lines {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 320px;
  transform: rotate(90deg);
  margin-top: 55px;
}

.highlight-line {
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(166, 255, 204, 0.3) 30%, rgba(255, 255, 255, 0.1) 10%);
  background-size: 200% 100%;
  animation: moveLight 2s linear infinite;
}

@keyframes moveLight {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* ===== Scroll Banner ===== */
.scroll-banner {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  padding: 30px 0;
  position: relative;
  background-color: var(--primary);
}

.scroll-text {
  display: inline-flex;
  gap: 80px;
  animation: scrollLoop 400s linear infinite;
  will-change: transform;
}

.scroll-text h3 {
  font-size: 2rem;
  font-family: 'Syne Extra';
  font-weight: 900 !important;
  letter-spacing: 2px;
  color: black;
  text-transform: uppercase;
  margin: 0;
}

@keyframes scrollLoop {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


/* Shared Section Title */
.section-title {
  color: #fff;
  font-weight: 600;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  font-family: 'Outfit';

}

.section-title span {
  color: var(--primary);
}

/* === Example Demo Cards === */
.demo-card {
  /* background: #121212; */
  border: 1px solid #FFFFFF26;
  border-radius: 12px;
  transition: 0.3s;
}

.demo-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.demo-card h4 {
  font-weight: 500;
  font-size: 32px;
  line-height: 100%;
  color: var(--white);
  padding-top: 30px;
  padding-bottom: 12px;
}

.demo-card p {
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
}

.demo-link {
  color: var(--primary);
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  padding-top: 30px;
}

.demo-link:hover {
  text-decoration: underline;
}

/* === Powerful Features === */
.feature-box {
  background: transparent;
  border: 1px solid #FFFFFF26;
  border-radius: 12px;
  text-align: left;
  transition: 0.3s;
}

.feature-box:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.feature-box h5 {
  font-weight: 500;
  font-style: Medium;
  font-size: 30px;
  line-height: 100%;
  text-align: left;
  color: var(--white);
}

.feature-box p {
  font-weight: 400;
  font-style: Medium;
  font-size: 20px;
  line-height: 25px;
  padding-top: 20px;
}




.our-pricing {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

/* Equal height fix */
.our-pricing .row {
  display: flex;
  flex-wrap: wrap;
}

.our-pricing .col-lg-6 {
  display: flex;
}

/* Left Side Image */
.pricing-image {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.pricing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Right Side Box */
.our-pricing {
  background-color: #000;
}

.pricing-box {
  background: #000;
  border: 1px solid #FFFFFF33;
  border-radius: 12px;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}

.pricing-box:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.pricing-box h5 {
  font-weight: 500;
  font-style: Medium;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--primary);
}

.pricing-box h6 {
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--white);
}

.pricing-box h2 {
  font-weight: 400;
  font-size: 50px;
  line-height: 100%;

}

.pricing-box h4 {
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  color: var(--primary);
  padding-bottom: 12px;
}

.price-text {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
}

.price-text span {
  color: var(--primary);
  font-weight: 500;
}

.pricing-list {
  list-style: none;
  padding-left: 0;
}

.pricing-list li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #ccc;
  position: relative;
  padding-left: 20px;
}

.pricing-list li::before {
  content: "✔";
  color: var(--primary);
  position: absolute;
  left: 0;
  top: 0;
}

/* WE HELP SECTION */
.we-help-section {
  background: var(--bg-dark);
  border-top: 1px solid #1a1a1a;
  color: var(--light);
  position: relative;
}

.help-box-wrapper {
  /* border: 1px solid #2a2a2a; */
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.help-box {
  flex: 1 1 calc(33.33% - 1rem);
  background: transparent;
  color: var(--light);
  text-align: center;
  padding: 1.5rem;
  border-right: 1px solid oklab(28.502% 0 -0.00003);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 220px;
  transition: all 0.3s ease;
}

.help-box:last-child {
  border-right: none;
}

.help-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.help-box h4 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-style: Medium;
  font-size: 32px;
  line-height: 100%;
  text-align: center;
  color: white;
}

.help-box p {
  color: var(--secondary);
  max-width: 280px;
  font-weight: 400;
  font-style: Medium;
  font-size: 20px;
  padding-top: 10px;
  line-height: 25px;

}

.help-box:hover {
  background: rgba(185, 208, 191, 0.05);
  border-color: var(--primary);
  transform: translateY(-4px);
}

/* FAQ SECTION */
.faq-item {
  background-color: transparent;
  color: var(--white);
  border-radius: 10px;
  margin: 20px 0;
  border: 1px solid #FFFFFF26;
}

.question {
  padding: 24px 80px 24px 24px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
}

.question::after {
  content: "\002B";
  font-size: 2.2rem;
  position: absolute;
  right: 20px;
  transition: 0.2s;
}

.question.active::after {
  transform: rotate(45deg);
}

.answercont {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.answer {
  color: var(--secondary);
  padding: 0 20px 20px;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.8rem;
}


/* CONTACT FORM SECTION */

/* .contact-section {
  padding: 50px;
}

.con-bg {
  background: radial-gradient(circle at top right,
      rgba(185, 208, 191, 0.3),
      transparent 35%),
    radial-gradient(circle at bottom left,
      rgba(185, 208, 191, 0.3),
      transparent 35%),
    #000000;
  padding: 50px;
  border-radius: 24px;
}

.contact-section .section-title {
  font-size: 32px;
}

.contact-section p {
  font-weight: 500;
  font-style: Medium;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}

.contact-title {
  font-size: 2rem;
  font-weight: 600;
}

.contact-title span {
  color: var(--primary);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group label {
  color: white;
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  padding-left: 2px;
  padding-bottom: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: 1px solid #FFFFFF26;
  border-radius: 8px;
  color: var(--secondary);
  padding: 14px;
  resize: none;
  transition: border 0.3s ease;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;

}

.form-group textarea {
  min-height: 200px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  outline: none;
}

.btn-submit {
  background: var(--primary);
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-submit:hover {
  background: #a6c7b0;
}


.btn-whatsapp {
  display: inline-block;
  background: var(--primary);
  color: black;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
} */




.contact-section .row {
  display: flex;
  align-items: stretch;
  /* make columns equal height */
}

.contact-left {
  background: transparent;
  border-radius: 12px;
  /* padding: 30px; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.contact-info {
  border: 1px solid #FFFFFF33;
  padding: 20px;
  border-radius: 12px;


}

.contact-right {
  background: transparent;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  border: 1px solid #FFFFFF33;
}

.row.align-items-stretch {
  display: flex;
}

.contact-left img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  flex: 1;
}

.contact-left .contact-info h5 {
  color: white;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  padding-bottom: 15px;
  padding-top: 15px;
}

.contact-left .contact-info p {
  width: 100%;
  background: transparent;
  border: 1px solid #FFFFFF26;
  border-radius: 8px;
  color: var(--secondary);
  padding: 14px;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
}


.contact-section .section-title {
  font-size: 32px;
  text-align: left;
}

.contact-section .contact-right p {
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
  color: var(--secondary);
  padding-bottom: 20px;
}

.contact-right label {
  color: white;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  padding-left: 2px;
  padding-bottom: 10px;
  padding-top: 15px;
}

.contact-right input,
.contact-right textarea {
  width: 100%;
  background: transparent;
  border: 1px solid #FFFFFF26;
  border-radius: 8px;
  color: var(--secondary);
  padding: 14px;
  resize: none;
  transition: border 0.3s ease;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  color: white;
  outline: none;
}

.contact-right input::placeholder,
.contact-right textarea::placeholder {
  color: var(--secondary);
}

.contact-right textarea {
  min-height: 180px;
}

.contact-right input:focus,
.contact-right textarea:focus {
  border-color: var(--primary);
  background-color: transparent;
  color: white;
  outline: none !important;
  box-shadow: none;
}

.send-btn {
  background: var(--primary);
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
}

.send-btn:hover {
  background: #a6c7b0;
}

@media (max-width: 767px) {
  .contact-section .row {
    flex-direction: column;
  }

  .contact-left img {
    height: auto;
  }
}

@media (max-width: 1399px) {
  .contact-right textarea {
    min-height: 105px;
  }
}

@media (max-width: 1199px) {
  .contact-right textarea {
    min-height: 200px;
  }
}


































/* FOOTER */

.footer-section {
  background-color: #0b0b0b;
  color: #ffffff;
  padding: 60px 0 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-left {
  flex: 1 1 300px;
}

.footer-logo {
  font-weight: 600;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 0%;

}

.footer-logo span {
  color: #b9d0bf;
  /* subtle green accent */
}

.footer-desc {
  color: var(--secondary);
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  padding: 20px 0;
}

.footer-social h4 {
  font-weight: 400;
  font-size: 22px;
  line-height: 100%;
  color: var(--secondary);
  padding-top: 10px;
  padding-bottom: 20px;
}

.footer-social a i {
  color: #b9d0bf;
  font-size: 22px;
  margin-right: 16px;
  transition: color 0.3s ease;
  font-weight: 900 !important;
}

.footer-social a:hover {
  color: #fff;
}

.footer-address {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b5b5b5;
  font-size: 15px;
  line-height: 1.5;
  margin-top: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}

.footer-links h4 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #b5b5b5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #b5b5b5;
}

.footer-bottom strong {
  color: #b9d0bf;
}


/* Mobile Navigation Menu */
@media (max-width: 576px) {
  .hero .banner-text {
    padding-top: 250px;
  }

  .hero .banner-text h1 {
    font-size: 38px;
  }

  .hero .banner-text p {
    font-size: 18px;
    line-height: 1.5;
  }

  .hero .banner-text .btn {
    font-size: 15px;
    padding: 10px 20px;
  }

  .demo-card h4 {
    font-size: 24px;
  }

  .demo-card p {
    font-size: 18px;
  }

  .feature-box h5 {
    font-size: 26px;
  }

  .feature-box p {
    font-size: 18px;
  }

  .pricing-box h2 {
    font-size: 35px;
  }

  .help-box h4 {
    font-size: 24px;
  }

  .help-box p {
    font-size: 18px;
  }

  .question {
    font-size: 20px;
  }

  .answer {
    font-size: 18px;
  }

  .we-help-section {
    border-bottom: 1px solid #1a1a1a;
  }

  .contact-section {
    padding: 0 5px;
  }

  .con-bg {
    padding: 30px 20px;
  }

  .contact-section .section-title {
    font-size: 28.5px;
    margin-bottom: 15px !important;
  }

  .contact-section p {
    font-size: 18px;
  }


  .btn-whatsapp {
    width: 100%;
  }

  /* Left Line */
  .line-left {
    top: 8%;
    left: 0%;
  }

  /* Right Line */
  .line-right {
    bottom: 22%;
    right: 0%;
  }
}


/* Mobile Navigation Menu */
@media (max-width: 767px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: #000;
    padding: 80px 0 0 20px;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    transition: right 0.4s ease-in-out;
  }

  .nav.open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 1.5rem;
  }

  .nav-link {
    font-size: 1.2rem;
  }

  .nav-toggle {
    display: block;
  }

  .header.scrolled .nav-toggle {
    /* Optional: Change hamburger color on scroll */
    color: var(--secondary);
  }

  .hero .banner-text h1 {
    font-size: 42px;
  }

  .hero .banner-text p {
    font-size: 20px;
    line-height: 1.5;
  }

  .hero .banner-text .btn {
    font-size: 16px;
    padding: 15px 20px;
  }

  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .demo-card,
  .feature-box {
    text-align: left;
  }

  .price-text {
    font-size: 2rem;
  }

  .pricing-box {
    padding: 30px;
  }

  .pricing-box h5 {
    font-size: 24px;
  }

  .pricing-box h6 {
    font-size: 14px;
  }

  .pricing-box h2 {
    font-size: 40px;
  }

  .contact-right label {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .contact-right input {
    font-size: 16px;
  }

  .footer-left {
    flex: 1 1 100px;
  }
}

/* Responsive Fix */
@media (max-width: 991px) {
  .our-pricing .row {
    flex-direction: column;
  }

  .pricing-box {
    text-align: left;
  }

  .price-text {
    font-size: 2.5rem;
  }

  .help-box {
    flex: 1 1 100%;
    border-right: none;
    border-bottom: 1px solid #2a2a2a;
  }

  .help-box:last-child {
    border-bottom: none;
  }
}