/* Root Variables */
:root {
  --primary-color: #44110e; /* Deep burgundy */
  --secondary-color: #ca9867; /* Warm beige */
  --dark-color: #1a1a1a;
  --light-color: #f8f9fa;
  --gray-color: #6c757d;
  --white-color: #ffffff;
  --black-color: #000000;
  --bg-gradient: linear-gradient(135deg, var(--primary-color) 0%, #6b2b28 100%);
}

/* Base Styles */
body {
  font-family: "Poppins", sans-serif;
  color: var(--dark-color);
  background-color: var(--light-color);
  overflow-x: hidden;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn {
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: all 0.3s ease;
}

.btn:hover::after {
  transform: translateX(0);
}

.btn-btz {
  background-color: var(--primary-color);
  color: var(--white-color);
  border: none;
}

.btn-btz:hover {
  color: #ca9867 !important;
  background-color: #36100e;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(68, 17, 14, 0.2);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.btn-outline-light {
  background-color: transparent;
  color: var(--white-color);
  border: 2px solid var(--white-color);
}

.btn-outline-light:hover {
  background-color: var(--white-color);
  color: var(--primary-color);
}

/* Navigation */
.navbar {
  background: white;
  padding: 0px;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(68, 17, 14, 0.95);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
}

.navbar-brand img {
  height: 70px;
}

.l-logo {
  display: none;
}

.navbar.scrolled .l-logo {
  display: block;
}

.navbar.scrolled .d-logo {
  display: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 1.2rem;
}

.logo-text {
  font-weight: 800;
  color: var(--primary-color);
}

.navbar.scrolled .logo-text {
  color: var(--white-color);
}

.nav-link {
  color: var(--black-color);
  font-weight: 600;
  padding: 8px 15px !important;
  border-radius: 50px;
  margin: 0 5px;
  position: relative;
}

.navbar.scrolled .nav-link {
  color: rgba(255, 255, 255, 0.8);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white-color) !important;
  background-color: var(--primary-color);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Off-Canvas Mobile Menu */
.offcanvas {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.offcanvas-header .btn-close {
  filter: invert(1);
}

.offcanvas-title .logo-text {
  color: var(--white-color);
}

.offcanvas-body .nav-link {
  color: rgba(255, 255, 255, 0.8);
  padding: 10px 0 !important;
  margin: 5px 0;
  display: block;
}

.offcanvas-body .nav-link:hover,
.offcanvas-body .nav-link.active {
  color: var(--white-color);
  background-color: transparent;
  padding-left: 15px !important;
}

/* Section Styling */
.section-header {
  margin-bottom: 50px;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px;
}

.section-subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 2px;
  background-color: var(--secondary-color);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 4px;
  background-color: var(--secondary-color);
  bottom: 0px;
  left: 0;
  border-radius: 2px;
}

.text-center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  background-color: var(--primary-color);
  color: var(--white-color);
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  z-index: 1;
}

.hero-title-line {
  display: block;
}

.hero-highlight {
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
}

.hero-highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: rgba(202, 152, 103, 0.3);
  z-index: -1;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 30px;
  z-index: 1;
  max-width: 80%;
}

.hero-cta {
  z-index: 1;
}

.hero-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); */
  transform: perspective(1000px) rotateY(-10deg);
  transition: all 0.5s ease;
}

.hero-image-container:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.hero-image {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.hero-image-container:hover .hero-image {
  transform: scale(1.05);
}

.floating-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 10px 15px;
  border-radius: 10px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  animation: float 3s ease-in-out infinite;
}

.floating-icon {
  position: absolute;
  z-index: 2;
}

.floating-icon.fruit-1 {
  top: 10%;
  left: -30px;
  animation: floatHorizontal 8s ease-in-out infinite;
}

.floating-icon.veggie-1 {
  bottom: 20%;
  right: -30px;
  animation: floatHorizontal 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes floatHorizontal {
  0%,
  100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(-20px);
  }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.mouse {
  width: 25px;
  height: 40px;
  border: 2px solid var(--white-color);
  border-radius: 20px;
  position: relative;
}

.mouse::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  width: 4px;
  height: 8px;
  background-color: var(--white-color);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    top: 5px;
    opacity: 1;
  }
  100% {
    top: 20px;
    opacity: 0;
  }
}

/* About Section */
.about-section {
  background-color: var(--white-color);
}

.about-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
}

.about-image {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-image-container:hover .about-image {
  transform: scale(1.05);
}

.about-badge {
  position: absolute;
  bottom: 0px;
  right: 0px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 15px 20px;
  border-radius: 15px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.about-badge .number {
  font-size: 1.5rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.about-badge .text {
  font-size: 0.9rem;
  display: block;
}

.about-text {
  color: var(--gray-color);
  margin-bottom: 30px;
}

.about-features {
  margin-top: 30px;
}

.about-feature {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.about-feature .feature-icon {
  margin-right: 20px;
  height: 50px;
  width: 50px;
}

.about-feature h4 {
  font-size: 1.25rem;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.about-feature p {
  color: var(--gray-color);
  margin-bottom: 0;
}

/* Why Choose Us Section */
.why-us-section {
  background: var(--bg-gradient);
  color: var(--white-color);
  position: relative;
  overflow: hidden;
}

.why-us-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,50 Q25,25 50,50 T100,50" fill="none" stroke="%23ca9867" stroke-width="0.5" opacity="0.3"/></svg>')
    repeat;
  animation: slide 15s linear infinite;
  z-index: 1;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.why-us-section .container {
  position: relative;
  z-index: 2;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--secondary-color);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.5s ease;
  backdrop-filter: blur(5px);
  margin-bottom: 20px;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  background: rgba(202, 152, 103, 0.15);
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(202, 152, 103, 0.4), transparent);
  transition: transform 0.7s ease;
  transform: scale(0);
}

.benefit-card:hover::before {
  transform: scale(1);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.benefit-card:hover .benefit-icon {
  transform: rotate(360deg);
}

.benefit-card h3 {
  font-size: 1.5rem;
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.benefit-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* App Showcase Section */
.app-showcase-section {
  background-color: var(--light-color);
}

.phone-mockup {
  position: relative;
  width: 300px;
  height: 600px;
  margin: 0 auto;
  background-color: var(--dark-color);
  border-radius: 40px;
  padding: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.screen {
  width: 100%;
  height: 100%;
  border-radius: 25px;
  overflow: hidden;
}

.app-screen-carousel {
  width: 100%;
  height: 100%;
}

.app-screen {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.app-screen-carousel .swiper-pagination {
  bottom: 10px;
}

.app-screen-carousel .swiper-pagination-bullet {
  background: var(--gray-color);
  opacity: 0.5;
}

.app-screen-carousel .swiper-pagination-bullet-active {
  background: var(--primary-color);
  opacity: 1;
}

.app-feature-list {
  margin-top: 30px;
}

.app-feature {
  display: flex;
  margin-bottom: 30px;
}

.feature-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-right: 0px;
  min-width: 50px;
}

.feature-content h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.feature-content p {
  color: var(--gray-color);
}

/* Download Section */
.download-section {
  background: var(--bg-gradient);
  color: var(--white-color);
}

.download-title {
  color: var(--secondary-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.download-text {
  color: var(--light-color);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.download-badges {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.download-badge img {
  height: 40px;
  transition: transform 0.3s ease;
}

.download-badge img:hover {
  transform: scale(1.1);
}

.download-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary-color);
  font-size: 1rem;
}

.feature-item i {
  color: var(--secondary-color);
}

.swiper-container {
  width: 100%;
  padding: 1rem 0;
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  /*height: 400px;*/
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid var(--secondary-color);
}

/* Contact Section */
.contact-section {
  background-color: var(--light-color);
}

.contact-form .form-control {
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  margin-bottom: 15px;
  background-color: var(--white-color);
}

.contact-form .form-control:focus {
  box-shadow: none;
  border-color: var(--secondary-color);
}

.contact-info {
  background-color: var(--white-color);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-item {
  display: flex;
  margin-bottom: 25px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(202, 152, 103, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-right: 20px;
}

.contact-content h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.contact-content p {
  color: var(--gray-color);
  margin-bottom: 0;
}

/* Footer */
.footer {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.footer-brand {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.footer-brand .logo-icon {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.footer-brand img {
  height: 65px;
}

.footer-brand .logo-text {
  color: var(--white-color);
}

.footer-text {
  opacity: 0.8;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white-color);
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--secondary-color);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--white-color);
  padding-left: 10px;
}

.footer-links a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--secondary-color);
  transition: all 0.3s ease;
}

.footer-links a:hover::before {
  width: 20px;
}

.newsletter-form .input-group {
  border-radius: 50px;
  overflow: hidden;
}

.newsletter-form .form-control {
  border-radius: 50px 0 0 50px;
  border: none;
  padding: 12px 20px;
}

.newsletter-form .btn {
  border-radius: 0 50px 50px 0;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
}

.footer-copy {
  opacity: 0.7;
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .section-title {
    font-size: 2rem;
  }

  .download-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 767.98px) {
  .navbar {
    padding: 0px 0;
  }

  .hero-section {
    padding: 100px 0 60px;
    text-align: center;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin-left: auto;
    margin-right: auto;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-title::after {
    bottom: -10px;
  }

  .about-image-container {
    margin-bottom: 50px;
  }

  .about-badge {
    right: 20px;
  }

  .download-badges {
    justify-content: center;
  }

  .download-features {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-cta .btn {
    display: block;
    width: 100%;
    margin-bottom: 15px;
  }

  .hero-cta .btn:last-child {
    margin-bottom: 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .download-badges {
    flex-direction: column;
    align-items: center;
  }
}

.section {
  padding: 80px 0;
}
/* Contact Section Styling */
.contact-section {
  background: var(--light-color); /* Fallback solid light background */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="rgba(68, 17, 14, 0.05)" d="M0 0 L50 50 L100 0 L100 100 L50 50 L0 100 Z"/></svg>'); /* Subtle diagonal geometric pattern */
  background-repeat: repeat;
  background-size: 50px 50px; /* Adjust pattern size for subtlety */
  padding: 80px 0; /* Existing padding, adjust if needed */
  position: relative;
}
/* Ensure text remains readable */
.contact-section .section-title,
.contact-section .contact-info h4,
.contact-section .contact-info p {
  color: var(--dark-color); /* High contrast */
  font-weight: 400; /* Light, modern typography */
  letter-spacing: 0.5px; /* Subtle spacing for elegance */
}

/* Form styling */
.contact-form .form-control {
  background: rgba(255, 255, 255, 0.9); /* Transparent white for depth */
  border: none;
  border-bottom: 1px solid rgba(108, 117, 125, 0.3); /* Light gray underline */
  border-radius: 0;
  padding: 15px 10px;
  font-size: 16px;
  transition: border-color 0.3s ease, transform 0.2s ease;
}

.contact-form .form-control:focus {
  border-bottom-color: var(--primary-color);
  transform: translateY(-2px); /* Subtle lift on focus */
  box-shadow: none;
}

/* Button styling */
.contact-form .btn-btz {
  background: var(--primary-color);
  border: none;
  border-radius: 50px; /* Highly rounded for modern look */
  padding: 12px 35px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
}

.contact-form .btn-btz:hover {
  background: var(--secondary-color);
  color: var(--dark-color) !important;
  transform: scale(1.05); /* Slight scale-up effect */
}

/* Contact info icons */
.contact-info .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.contact-info .contact-icon {
  color: var(--white-color);
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  ); /* Gradient icon background */
  border-radius: 12px; /* Soft square for modern feel */
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  transition: transform 0.3s ease;
}

.contact-info .contact-icon:hover {
  transform: translateY(-3px); /* Subtle hover lift */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-section {
    background-size: 30px 30px, cover; /* Smaller particles on mobile */
    padding: 60px 0;
  }

  .contact-form .btn-btz {
    width: 100%;
    padding: 12px;
  }

  .contact-info .contact-icon {
    width: 40px;
    height: 40px;
  }
}

/* Add this to your stylesheet */
.download-section {
  background-color: var(--dark-color);
  position: relative;
  overflow: hidden;
}

/* Container for animated elements */
.download-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Animated circles */
.circle-animation {
  position: absolute;
  border-radius: 50%;
  background: rgb(255, 128, 0);
  /* filter: blur(30px); */
  animation: zoomInOut 8s infinite ease-in-out;
}

.circle-1 {
  width: 100px;
  height: 100px;
  top: 0%;
  left: 0%;
}

.circle-2 {
  width: 200px;
  height: 200px;
  bottom: 15%;
  right: 0%;
  animation-delay: 2s;
}

/* 180-degree half-circle */
.half-circle {
  position: absolute;
  width: 400px;
  height: 200px;
  bottom: -50px;
  left: -100px;
  border-top-left-radius: 250px;
  border-top-right-radius: 250px;
  background: rgba(68, 17, 14, 0.7);
  animation: float 12s infinite ease-in-out;
}

/* Animations */
@keyframes zoomInOut {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.2;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

/* Ensure content stays above animations */
.download-section .container {
  position: relative;
  z-index: 1;
}

.foo-sec {
  padding: 80px 0 20px;
}

.footer-copy a {
  color: #ca9867 !important;
}

.footer-copy a:hover {
  color: #ffffff !important;
}

/* .footer .download-badges {
    display: flex;
    flex-direction: column;
} */







.inner-banner {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: #44110e;
}

.inner-banner .inner-title {
  padding: 6rem 1rem 3rem;
  position: relative;
  z-index: 1;
}

.inner-banner .inner-title h3 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.inner-banner .inner-title ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.inner-banner .inner-title ul li {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: #1c1c25;
  display: inline-block;
  position: relative;
  margin-right: 0.5rem;
  font-weight: 600;
}

.inner-banner .inner-title ul li i {
  font-size: clamp(1rem, 2vw, 1.2rem);
  top: 0.2rem;
  position: relative;
  left: 0.5rem;
}

.inner-banner .inner-title ul li:last-child {
  margin-right: 0;
}

.inner-banner .inner-title ul li::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: -1rem;
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 50%;
  background-color: #98fbcc;
  display: none;
}

.inner-banner .inner-title ul li a {
  color: #1c1c25;
}

.inner-banner .inner-title ul li a:hover {
  color: #98fbcc;
}

.inner-banner .inner-line .line1 {
  position: absolute;
  left: 0;
  top: -4rem;
  width: 2rem;
  height: 8rem;
  background-color: #98fbcc;
  border-radius: 50px;
  transform: rotate(-35deg);
  display: none;
}

.inner-banner .inner-line .line2 {
  position: absolute;
  right: 0;
  bottom: -4rem;
  width: 2rem;
  height: 8rem;
  background-color: #aa6bd8;
  border-radius: 50px;
  transform: rotate(-35deg);
  display: none;
}

@media (min-width: 768px) {
  .inner-banner .inner-title {
    padding: 8rem 2rem 4rem;
  }

  .inner-banner .inner-line .line1,
  .inner-banner .inner-line .line2 {
    display: block;
  }
}

.blitzd-header h1 {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2rem);
}

.blitzd-container {
  max-width: 90%;
  margin: 1rem auto;
  padding: 1rem;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.blitzd-heading {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  margin-bottom: 0.5rem;
  color: #333;
}

.blitzd-paragraph {
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  margin-bottom: 0.75rem;
}

.blitzd-list {
  margin: 0.75rem 0;
  padding-left: 1rem;
  list-style: none;
}

.blitzd-list li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.blitzd-list li::before {
  content: "◉";
  color: #44110e;
  position: absolute;
  left: 0;
  font-size: 1rem;
  top: 0;
}

.blitzd-link {
  color: #44110e;
  text-decoration: none;
}

.blitzd-link:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .blitzd-container {
    max-width: 80%;
    padding: 1.5rem;
  }

  .blitzd-heading {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
  }

  .blitzd-paragraph {
    font-size: clamp(0.9rem, 2vw, 1rem);
  }

  .blitzd-list {
    padding-left: 1.25rem;
  }

  .blitzd-list li {
    padding-left: 1.75rem;
  }

  .blitzd-list li::before {
    font-size: 1.2rem;
  }
}