* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

/* Additional styles for language selector */
.language-selector {
  position: relative;
  margin-right: 15px;
}

.language-selector select {
  padding: 5px 30px 5px 10px;
  border-radius: 4px;
  background-color: #f0f8ff;
  border: 1px solid #4682b4;
  color: #1a5276;
  font-size: 14px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a5276' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 16px;
}

.language-selector select:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(70, 130, 180, 0.3);
}

/* Form field styles for registration and settings */
.form-group {
  margin-bottom: 15px;
}

.form-label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #333;
}

.form-control {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.form-control:focus {
  border-color: #4682b4;
  outline: none;
  box-shadow: 0 0 0 2px rgba(70, 130, 180, 0.1);
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.form-col {
  flex: 1;
  min-width: 200px;
}

/* Optional fields styles */
.optional-field {
  position: relative;
}

.optional-label {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 12px;
  color: #777;
  background: white;
  padding: 0 5px;
}

/* Phone with country code */
.phone-input {
  display: flex;
}

.country-code {
  width: 80px;
  margin-right: 10px;
}

/* Invoices tab styles */
.invoices-list {
  margin-top: 20px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.invoice-item {
  display: flex;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #eee;
  background-color: white;
}

.invoice-item:hover {
  background-color: #f9f9f9;
}

.invoice-details {
  flex: 1;
}

.invoice-date {
  color: #666;
  font-size: 14px;
}

.invoice-amount {
  font-weight: bold;
  font-size: 16px;
  margin-left: 25px;
}

.invoice-actions {
  display: flex;
  gap: 10px;
}

.invoice-button {
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  border: none;
  font-weight: 500;
}

.pay-button {
  background-color: #4caf50;
  color: white;
}

.download-button {
  background-color: #f0f8ff;
  color: #1a5276;
  border: 1px solid #1a5276;
}

/* Responsive styles for new elements */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 10px;
  }

  .phone-input {
    flex-direction: column;
    gap: 10px;
  }

  .country-code {
    width: 100%;
    margin-right: 0;
  }

  .invoice-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .invoice-actions {
    margin-top: 15px;
    width: 100%;
  }

  .invoice-button {
    flex: 1;
    text-align: center;
  }
}

.qr-codes {
  display: flex;
  gap: 20px;
  margin-top: 15px;
}

.qr-code {
  text-align: center;
}

.qr-code p {
  margin-top: 5px;
  font-size: 14px;
  font-weight: bold;
}

/* App Download Section Styles */
.app-download {
  margin: 40px 0;
  padding: 30px;
  background-color: #f1f5f9;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.app-download h3 {
  font-size: 24px;
  color: #1e40af;
  margin-bottom: 20px;
  text-align: center;
}

.app-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.qr-codes {
  display: flex;
  gap: 40px;
  margin-bottom: 24px;
}

.qr-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qr-code {
  width: 150px;
  height: 150px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px;
  background-color: white;
}

.qr-code img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.qr-label {
  margin-top: 10px;
  font-weight: 600;
  color: #0f172a;
}

.app-links {
  /* margin-top: 24px; */
  flex: 1;
}

.app-links p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #334155;
}

.download-buttons {
  padding-top: 24px;
  display: flex;
  gap: 50px;
  margin-bottom: 20px;
}

.download-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.download-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.download-button i {
  margin-right: 8px;
  font-size: 18px;
}

.android {
  background-color: #0f9d58;
}

.ios {
  background-color: #000000;
}

.download-note {
  font-size: 14px;
  color: #64748b;
}

@media (max-width: 768px) {
  .app-content {
    flex-direction: column;
  }

  .qr-codes {
    margin-bottom: 30px;
  }
}

@media (max-width: 500px) {
  .qr-codes,
  .download-buttons {
    flex-direction: column;
    align-items: ;
  }
}
/* Security Section Styles */
.security {
  padding: 80px 0;
  position: relative;
  background-color: #f8fafc;
}

.security-container {
  display: flex;
  align-items: center;
  gap: 100px;
}

.security-text {
  flex: 1;
}

.security-image {
  flex: 1;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  background-color: white;
  scale: 0.8;
}

.security-features {
  margin-top: 20px;
  list-style-type: none;
  padding: 0;
}

.security-features li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.security-features i {
  color: #1e40af;
  margin-right: 10px;
  font-size: 18px;
}

@media (max-width: 768px) {
  .security-container {
    flex-direction: column;
  }

  .security-image {
    width: 100%;
    margin-top: 40px;
  }
}

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

/* Navbar styles */
/* Update your existing CSS with these additions */

.navbar {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 15px 0;
}

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

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #1a5276;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #1a5276;
}

.nav-button {
  background: linear-gradient(135deg, #1a5276 0%, #4682b4 100%);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  transition: transform 0.3s;
  text-decoration: none;
}

.nav-button:hover {
  transform: translateY(-2px);
}

/* Mobile menu icon - hidden by default */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #1a5276;
  z-index: 200;
}

/* Language selector styles */
.language-selector {
  margin-right: 15px;
}

.language-selector select {
  /* padding: 5px 10px; */
  border-radius: 5px;
  border: 1px solid #ddd;
  background-color: white;
  cursor: pointer;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .nav-container {
    flex-wrap: wrap;
    padding: 0 15px;
    position: relative;
  }

  .logo img {
    width: 150px; /* Smaller logo for mobile */
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    z-index: 99;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    width: 100%;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .language-selector {
    order: 2;
    margin-right: 10px;
  }

  .nav-button {
    display: none; /* Hide the button on mobile */
  }

  /* Add a mobile version of the button to the nav menu */
  .nav-links .nav-button-mobile {
    display: inline-block;
    margin-top: 15px;
    background: linear-gradient(135deg, #1a5276 0%, #4682b4 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    width: auto;
  }
}

/* Header styles */
header {
  background: linear-gradient(135deg, #1a5276 0%, #4682b4 100%);
  color: white;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header-text {
  flex: 1;
}

.header-image {
  flex: 1;
  text-align: center;
}

h1 {
  font-size: 36px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.subtitle {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.price {
  font-size: 22px;
  font-weight: bold;
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.2);
  display: inline-block;
  padding: 8px 15px;
  border-radius: 50px;
}

.hero-button {
  display: inline-block;
  background-color: #ff7f50;
  color: white;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: bold;
  margin-top: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.hero-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 127, 80, 0.4);
}

.header-shape {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #f9f9f9;
  border-radius: 100% 100% 0 0;
}

/* Features section */
.features {
  padding: 100px 0 80px;
  background-color: white;
}

.section-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 32px;
  color: #1a5276;
}

.section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
  color: #666;
}

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

.feature-item {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 36px;
  color: #1a5276;
  background: linear-gradient(135deg, #e6f7ff 0%, #f0f8ff 100%);
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  margin-bottom: 20px;
}

.feature-item h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #1a5276;
}

.feature-item ul {
  padding-left: 5px;
  margin-top: 15px;
}

.feature-item li {
  margin-bottom: 8px;
}

.feature-bg {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f7ff 100%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: -1;
  opacity: 0.5;
}

/* Screenshots section */
.screenshots {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.screenshot-container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.screenshot-text {
  flex: 1;
}

.screenshot-image {
  flex: 1;
  position: relative;
}

.screenshot-box {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.screenshot-box svg {
  width: 100%;
  height: auto;
  display: block;
}

.screenshot-floating {
  position: absolute;
  top: 20%;
  right: -30px;
  width: 40%;
  transform: rotate(8deg);
  z-index: 2;
}

.screenshot-floating svg {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .screenshot-container {
    flex-direction: column;
    text-align: center;
  }

  .screenshot-image {
    width: 100%;
    margin-top: 20px;
  }

  .screenshot-box {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .screenshot-floating {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 300px;
    margin: 20px auto 0;
    transform: none;
  }
}

/* Add tablet-specific styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .screenshot-container {
    flex-direction: row;
    align-items: center;
  }

  .screenshot-image {
    flex: 1;
    position: relative;
  }

  .screenshot-box {
    width: 100%;
  }

  .screenshot-floating {
    position: absolute;
    top: 20%;
    right: -30px;
    width: 40%;
    transform: rotate(8deg);
  }
}

/* Getting started section */
.getting-started {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #f0f8ff 100%);
  position: relative;
}

.steps-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.step {
  background-color: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  display: flex;
  gap: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.step:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
  background: linear-gradient(135deg, #1a5276 0%, #4682b4 100%);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.step-content {
  /* width: 100%; */
  flex-grow: 1;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1a5276;
}

.getting-started-bg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 30%;
  height: 70%;
  background: linear-gradient(
    135deg,
    rgba(26, 82, 118, 0.1) 0%,
    rgba(70, 130, 180, 0.1) 100%
  );
  border-radius: 30% 0 0 0;
  z-index: 0;
}

/* Testimonials section */
.testimonials {
  padding: 80px 0;
  background-color: white;
}

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

.testimonial-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  position: relative;
}

.testimonial-quote {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
}

.testimonial-quote::before {
  content: "";
  font-size: 60px;
  color: #1a5276;
  opacity: 0.2;
  position: absolute;
  top: -20px;
  left: -10px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.author-image img {
  width: 100%;
  height: auto;
}

.author-info h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.author-info p {
  font-size: 14px;
  color: #666;
}

/* CTA section */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a5276 0%, #4682b4 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.cta-primary {
  background-color: #ff7f50;
  color: white;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: bold;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-secondary {
  background-color: transparent;
  color: white;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: bold;
  border: 2px solid white;
  transition: transform 0.3s, background-color 0.3s;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 127, 80, 0.4);
}

.cta-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.cta-shape {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta-shape-2 {
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

/* Footer */
footer {
  padding: 60px 0 30px;
  background-color: #1a2a38;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #4682b4;
}

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

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: #999;
}

/* Responsive styles */
@media (max-width: 1265px) {
  .header-content {
    flex-direction: column;
    text-align: center;
  }

  .screenshot-container {
    flex-direction: column;
    text-align: center;
  }

  .screenshot-floating {
    position: static;
    transform: none;
    margin-top: 20px;
    width: 100%;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  h1 {
    font-size: 28px;
  }

  .section-title {
    font-size: 26px;
  }

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

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

.nav-button-mobile {
  display: none;
}

@media (max-width: 768px) {
  .nav-button-mobile {
    display: block;
    background-color: #1a5276;
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
  }

  .nav-button-mobile:hover {
    background-color: #154360;
  }
}
