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

:root {
  --primary-blue: #b0cdff;
  --secondary-purple: #746df7;
  --accent-blue: #20abf4;
  --icon-blue: #0033ee;
  --text-black: #000000;
  --pure-white: #ffffff;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
  --border-radius: 12px;
  --transition: all 0.3s ease;
  --white: #F7F7F7;
}

body {
  font-family: "Switzer Light", sans-serif;
  line-height: 1.6;
  color: var(--text-black);
  background-color: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-family: "Outfit Bold", sans-serif;
}

h2,
h3 {
  font-family: "Switzer Semibold", sans-serif;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-black);
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(
    45deg,
    var(--secondary-purple),
    var(--accent-blue)
  );
  border-radius: 2px;
}

/* Buttons */
.btn {
  padding: 12px 24px;
  border: none;
  border-radius: var(--border-radius);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(
    45deg,
    var(--secondary-purple),
    var(--accent-blue)
  );
  color: var(--pure-white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--text-black);
  border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
  background: var(--primary-blue);
  color: var(--text-black);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(247, 247, 247, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  /* padding: 1rem 0; */
  transition: var(--transition);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-black);
}

.brand-logo {
  position: relative;
  /* width: 40px;
    height: 40px; */
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-logo a {
  line-height:0;
}

.logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-icon {
  color: var(--pure-white);
  font-size: 1.5rem;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-black);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  font-size: 0.875rem;
}

.nav-link:hover {
  color: var(--secondary-purple);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-purple);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--text-black);
  margin: 3px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(
    135deg,
    var(--white) 0%,
    var(--primary-blue) 100%
  );
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(
    45deg,
    var(--text-black),
    var(--secondary-purple)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--text-black);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-hover);
}

/* USP Section */
.usp-section {
  padding: 80px 0;
  background: var(--pure-white);
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.usp-card {
  text-align: center;
  padding: 2rem;
  border-radius: var(--border-radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.usp-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.usp-icon {
  font-size: 3rem;
  color: var(--icon-blue);
  margin-bottom: 1rem;
}

.usp-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-black);
}

.usp-description {
  color: var(--text-black);
  line-height: 1.6;
}


/* QR Section */
.qr-section {
  padding: 80px 0;
  background: var(--pure-white);
}

.qr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.qr-card {
  text-align: center;
  padding: 2rem;
  border-radius: var(--border-radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.qr-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.qr-code {
  margin-bottom: 1.5rem;
}

.qr-code img {
  width: 150px;
  height: 150px;
  border-radius: var(--border-radius);
}

.qr-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-black);
}

.qr-subtitle {
  color: var(--text-black);
  margin-bottom: 1rem;
}

.store-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 2rem;
}

.play-store-badge, .ios-badge{
  width: 128px !important; /* Default width */
  height: auto;
  display: block;
}

/* 404 Page */
#message {
  background: white;
  max-width: 360px;
  margin: 120px auto 80px;
  padding: 32px;
  border-radius: var(--border-radius);
}

#message p { 
  line-height: 140%; 
  margin: 16px 0 24px; 
  font-size: 14px; 
  color: #000000; 
}

@media (max-width: 768px) {
  .play-store-badge, .ios-badge {
    width: 128px !important; /* Smaller width for mobile */
    height: auto; /* Maintain aspect ratio and make it responsive */
    display: block; /* Ensures it takes up its own line and allows margin auto */
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .play-store-badge, .ios-badge {
    width: 130px; /* Medium width for tablets */
  }
}

/* Desktop - 1367px and above */
@media (min-width: 1367px) {
  .play-store-badge, .ios-badge {
    width: 150px; /* Larger width for desktops */
  }
}

/* Footer */
.footer {
  background: var(--text-black);
  color: var(--pure-white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-brand .brand-icon {
  color: var(--primary-blue);
}

.footer-description {
  color: #ccc;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--icon-blue);
  color: var(--pure-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--accent-blue);
  transform: translateY(-2px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  margin-bottom: 1rem;
  color: var(--primary-blue);
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: #ccc;
  text-decoration: none;
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--primary-blue);
}

.footer-column i {
  margin-right: 0.5rem;
  color: var(--accent-blue);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  color: #ccc;
}

/* About Section */
.about-section {
  padding: 80px 0;
  background: var(--pure-white);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-black);
  margin-bottom: 2rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--icon-blue);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-black);
  font-weight: 500;
}

/* Legal Pages Styles */
.legal-section {
  padding: 120px 0 80px;
  background: var(--white);
  min-height: 100vh;
}

.legal-header {
  text-align: center;
  margin-bottom: 3rem;
}

.legal-header h1 {
  font-size: 3rem;
  color: var(--text-black);
  margin-bottom: 1rem;
}

.legal-updated {
  color: var(--text-black);
  font-style: italic;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-item {
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--pure-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.legal-item h2 {
  color: var(--secondary-purple);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--primary-blue);
  padding-bottom: 0.5rem;
}

.legal-item h3 {
  color: var(--text-black);
  font-size: 1.25rem;
  margin: 1.5rem 0 0.5rem;
}

.legal-item p {
  color: var(--text-black);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-item ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.legal-item li {
  color: var(--text-black);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

/* Store Links */
.store-link {
  text-decoration: none;
  color: var(--icon-blue);
  transition: var(--transition);
}

.store-link:hover {
  color: var(--secondary-purple);
  transform: translateY(-2px);
}

/* Footer contact links */
.footer-column a {
  color: #ccc;
  text-decoration: none;
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--primary-blue);
}

/* Responsive Design */

/* Mobile Portrait - 320px to 480px */
@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  .nav-container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .usp-card,
  .feature-card {
    padding: 1.5rem;
  }
}

/* Mobile Landscape & Small Tablets - 481px to 768px */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    padding: 2rem 0;
    height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.active .bar:nth-child(3) {
    /* transform: translateY(-8px) rotate(-45deg); */
    transform: translateY(-10px) rotate(-45deg) !important;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-cta {
    justify-content: center;
  }

  .usp-grid {
    grid-template-columns: 1fr;
  }

  .qr-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: left; /* Align content to the left in single column */
    gap: 2rem; /* Adjusted gap for mobile */
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: left; /* Align content to the left in single column */
    gap: 2rem; /* Adjusted gap for mobile */
  }
 .footer-brand {
    text-align: left; /* Ensure brand content is left-aligned */
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 1rem; /* Adjusted gap for mobile links */
  }

  .footer-description {
    text-align: left; /* Ensure description is left-aligned */
    margin-bottom: 1rem; /* Adjust spacing */
  }

  .social-links {
    justify-content: flex-start; /* Align social links to the left */
    margin-bottom: 1.5rem; /* Add space below social links */
  }

  .footer-column ul li {
    text-align: left; /* Ensure list items are left-aligned */
  }

  .footer-bottom {
    text-align: center; /* Keep bottom text centered */
  }
  .btn {
    margin: 0 auto; /* Center buttons if needed */
    width: 100%;
    max-width: 300px;
  }

  /* About section responsive */
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  /* Legal pages responsive */
  .legal-header h1 {
    font-size: 2.5rem;
  }

  .legal-item {
    padding: 1.5rem;
  }

  .legal-item h2 {
    font-size: 1.25rem;
  }
}

/* Tablets - 769px to 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .qr-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .footer-content {
    display: grid; /* Ensure grid display */
    grid-template-columns: 1fr; /* Default to single column */
    text-align: left; /* Align text left in columns */  }

  /* Ensure contact info stacks vertically */
  .footer-column ul li {
    display: flex;
    flex-direction: row;
    align-items: center; /* Align contact items to the center */
    margin-bottom: 1rem;
    gap: 0.5rem; /* Add some spacing */
  }

  /* Adjust for screen sizes that can fit two columns */
  .footer-links {
    gap: 2rem; /* Adjust gap for tablets */
    grid-template-columns: repeat(2, 1fr); /* Two columns for links */
  }
}
@media (min-width: 850px) {
  .footer-content {
    grid-template-columns: 1fr 1.5fr; /* Adjusted two-column layout for better balance */
    gap: 3rem;
  }
}

/* Large Tablets/Small Laptops - 1025px to 1366px */
@media (min-width: 1025px) and (max-width: 1366px) {
  .container {
    max-width: 1200px;
    padding: 0 40px;
  }

  .hero-title {
    font-size: 4rem;
  }

  .usp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Footer adjustments for 1025px to 1123px */
@media (min-width: 1025px) and (max-width: 1123px) {
  .footer-content {
    display: grid; /* Ensure grid display */
    grid-template-columns: 1fr 1.5fr; /* Two-column layout */
    gap: 3rem; /* Maintain gap */
  }

  .footer-links {
    gap: 2rem; /* Maintain gap */
  }

  /* Ensure contact info stacks vertically */
  .footer-column ul li {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
}

/* Desktop - 1367px and above */
@media (min-width: 1367px) {
  .container {
    /* max-width: 1400px; */
    max-width: 1200px;
  }

  .hero-title {
    font-size: 4.5rem;
  }

  .usp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.hero-image {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading states */
img {
  transition: opacity 0.3s ease;
}

img[loading="lazy"] {
  opacity: 0;
}

img[loading="lazy"].loaded {
  opacity: 1;
}

/* Outfit Bold */
@font-face {
  font-family: "Outfit Bold";
  src: url("/Brand Fonts/Outfit/For Web/Outfit-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

/* Switzer Semibold */
@font-face {
  font-family: "Switzer Semibold";
  src: url("/Brand Fonts/Switzer/For Web/fonts/Switzer-Semibold.ttf")
    format("truetype");
  font-weight: 600; /* Semibold weight */
  font-style: normal;
}

/* Switzer Light */
@font-face {
  font-family: "Switzer Light";
  src: url("/Brand Fonts/Switzer/For Web/fonts/Switzer-Light.ttf")
    format("truetype");
  font-weight: 300; /* Light weight */
  font-style: normal;
}





