/* ═══════════════════════════════════════════════════════════════════
   TYPOGRAPHY & BASE STYLES
   ═══════════════════════════════════════════════════════════════════ */

body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Consistent heading styles */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

h1 {
  font-size: 28px;
  margin-bottom: 16px;
}

h2 {
  font-size: 22px;
  margin-bottom: 12px;
}

h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

h5 {
  font-size: 14px;
  margin-bottom: 6px;
}

/* Paragraph and text consistency */
p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.small {
  font-size: 14px;
}

/* Typography utility classes */
.fw-light { font-weight: 300; }
.fw-normal { font-weight: 400; }
.fw-medium { font-weight: 500; }
.fw-semibold { font-weight: 600; }
.fw-bold { font-weight: 700; }

.text-xs { font-size: 12px; }
.text-sm { font-size: 14px; }
.text-base { font-size: 16px; }
.text-lg { font-size: 18px; }
.text-xl { font-size: 20px; }
.text-2xl { font-size: 22px; }

/* Content block separation with soft shadows */
.content-block {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
}

/* Section spacing utilities */
.section-padding {
  padding: 60px 0;
}

.section-padding-sm {
  padding: 40px 0;
}

.section-padding-lg {
  padding: 80px 0;
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════════ */

@media (max-width: 576px) {
  body {
    font-size: 14px;
  }
  
  h1 { font-size: 24px; }
  h2 { font-size: 20px; }
  h3 { font-size: 16px; }
  h4 { font-size: 15px; }
  h5 { font-size: 13px; }
  
  p {
    font-size: 14px;
    margin-bottom: 14px;
  }
  
  .content-block {
    padding: 16px;
    margin-bottom: 16px;
  }
}

@media (max-width: 767px) {
  html,
  body {
    overflow-x: hidden !important;
  }
}

@media (max-width: 768px) {
  .navbar-brand img {
    max-width: 120px; /* Adjust this value to your preferred size */
    height: auto;
  }
}

@media (max-width: 576px) {
  .navbar-brand img {
    max-width: 100px; /* Even smaller for extra small devices */
  }
}

.brand-logo {
  max-width: 220px; /* Set a medium max-width */
}

.brand-logo img {
  width: 100%; /* Ensures it scales within the parent */
  height: auto; /* Maintains aspect ratio */
  display: block;
}
.blue-section {
  background-image: linear-gradient(to right, #4285f4);
  padding: 30px 0 60px 0;
  color: white;
}

.vendor-card {
  background: white;
  color: black;
  border-radius: 20px;
  padding: 20px;
  width: 90%; /* Full width of column */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  margin-top: -130px; /* Controls top space */
}

.vendor-card .btn {
  width: 100%;
  border-radius: 20px;
}

@media (max-width: 767px) {
  .vendor-card {
    text-align: center;
    width: 38%; /* Smaller width */
    padding: 6px 6px; /* Tighter padding */
    margin: -80px 4px 0 auto; /* Slightly higher and right-aligned */
    font-size: 9px; /* Smaller text */
    height: 90%;
  }

  .vendor-card h5 {
    font-size: 10px; /* Reduce heading size */
    margin-bottom: 2px;
  }

  .vendor-card .btn {
    font-size: 10px;
    padding: 6px 20px;
  }
}

.custom-img {
  max-width: 120%; /* Slightly larger */
  width: 100%;
  height: auto;
}

/* ───────────  left-column background  ─────────── */
.hiw-illustration {
  position: relative;
  overflow: hidden;
  margin-left: -80px;
}

.hiw-illustration img {
  width: 97%;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.hiw-illustration .overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
}

/* ═══════════════════════════════════════════════════════════════════
   HOW IT WORKS SECTION IMPROVEMENTS
   ═══════════════════════════════════════════════════════════════════ */

/* Section container improvements */
#nextSection .container-fluid {
  padding: 60px 20px !important;
}

/* Section heading improvements */
#work {
  position: relative;
  margin-bottom: 40px !important;
}

#work::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #2d86ff, #1a73e8);
  border-radius: 2px;
}

/* Enhanced step list container */
.hiw-steps {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px; /* Increased spacing between steps */
}

/* Remove the old connecting line */
.hiw-steps::before {
  display: none;
}

/* Enhanced step container with card-like appearance */
.hiw-steps li {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 0; /* Reset since we're using gap */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.hiw-steps li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  border-color: #2d86ff;
}

/* Enhanced step number styling */
.hiw-step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2d86ff 0%, #1a73e8 100%);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 3px 12px rgba(45, 134, 255, 0.3);
  border: 2px solid #fff;
}

/* Enhanced badge styling */
.hiw-badge {
  background: linear-gradient(135deg, #e3f2fd 0%, #f1f8ff 100%);
  border-radius: 20px;
  font-weight: 700;
  color: #1565c0;
  font-size: 16px;
  border: 1px solid #bbdefb;
  transition: all 0.2s ease;
}

.hiw-badge:hover {
  background: linear-gradient(135deg, #bbdefb 0%, #e3f2fd 100%);
  color: #0d47a1;
}

/* Step content styling */
.hiw-steps .ms-3 {
  flex: 1;
}

.hiw-steps p {
  margin-bottom: 0;
  line-height: 1.6;
  color: #495057;
}

/* Mobile responsive improvements */
@media (max-width: 767.98px) {
  #nextSection .container-fluid {
    padding: 40px 16px !important;
  }
  
  .hiw-steps {
    gap: 16px;
  }
  
  .hiw-steps li {
    padding: 16px;
    border-radius: 12px;
  }
  
  .hiw-step-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .hiw-badge {
    font-size: 14px;
    padding: 8px 16px !important;
  }
  
  .hiw-steps .d-flex {
    align-items: flex-start !important;
  }
  
  .hiw-steps .ms-3 {
    margin-left: 12px !important;
  }
  
  #work::after {
    width: 40px;
    height: 3px;
  }
}

/* Tablet improvements */
@media (min-width: 768px) and (max-width: 991.98px) {
  #nextSection .container-fluid {
    padding: 50px 20px !important;
  }
  
  .hiw-steps {
    gap: 18px;
  }
  
  .hiw-steps li {
    padding: 18px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   END HOW IT WORKS SECTION IMPROVEMENTS
   ═══════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════
   ABOUT US SECTION IMPROVEMENTS
   ═══════════════════════════════════════════════════════════════════ */

/* About Us intro text styling */
.about-us-intro {
  line-height: 1.6 !important;
  font-size: 16px !important;
  font-weight: 400;
}

/* About Us text styling */
.about-us-text {
  line-height: 1.6;
  font-size: 16px;
  padding: 0 12px;
  color: #495057;
}

/* About card enhancements */
.about-card {
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.about-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
  border-color: #2d86ff;
}

/* Icon container styling */
.about-icon-container {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2d86ff 0%, #1a73e8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(45, 134, 255, 0.3);
  transition: all 0.3s ease;
}

.about-icon i {
  font-size: 32px;
  color: #fff;
}

.about-card:hover .about-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(45, 134, 255, 0.4);
}

/* Card title styling */
.about-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #2d86ff;
  margin-bottom: 8px;
}

/* Values grid styling */
.about-values-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.value-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  border-left: 4px solid #2d86ff;
  transition: all 0.2s ease;
}

.value-item:hover {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  transform: translateX(4px);
}

.value-icon {
  font-size: 18px;
  color: #2d86ff;
  margin-right: 12px;
  width: 24px;
  text-align: center;
}

.value-text {
  font-size: 15px;
  color: #495057;
}

/* Mobile responsive improvements */
@media (max-width: 767.98px) {
  .about-us-intro {
    font-size: 14px !important;
  }
  
  .about-us-text {
    font-size: 14px;
    padding: 0 8px;
  }
  
  .about-icon-container {
    width: 80px;
    height: 80px;
  }
  
  .about-icon {
    width: 64px;
    height: 64px;
  }
  
  .about-icon i {
    font-size: 24px;
  }
  
  .about-card-title {
    font-size: 18px;
    text-align: center;
  }
  
  .about-text-content {
    text-align: center;
  }
  
  .about-values-grid {
    gap: 12px;
  }
  
  .value-item {
    padding: 10px 12px;
    justify-content: center;
  }
  
  .value-icon {
    margin-right: 8px;
  }
  
  .value-text {
    font-size: 14px;
  }
}

/* Tablet improvements */
@media (min-width: 768px) and (max-width: 991.98px) {
  .about-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

/* Desktop improvements */
@media (min-width: 992px) {
  .about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   END ABOUT US SECTION IMPROVEMENTS
   ═══════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════
   FOOTER IMPROVEMENTS
   ═══════════════════════════════════════════════════════════════════ */

/* Footer base styling */
.footer {
  background-color: #4285f4 !important;
  color: white;
  padding: 40px 0 20px 0;
  position: relative;
}

/* Logo styling */
.footer-logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 16px;
}

/* Footer description */
.footer-description {
  font-size: 16px;
  line-height: 1.6;
  color: #e3e3e3;
  margin-bottom: 20px;
  font-weight: 400;
}

/* Footer section headings */
.footer-heading {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Footer links styling */
.footer-links {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li {
  margin-bottom: 0;
}

.footer-links a {
  color: #e3e3e3;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
  transform: translateX(3px);
}

/* Featured link styling */
.featured-link {
  font-weight: 700 !important;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.featured-link:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  transform: translateX(0) !important;
  text-decoration: none !important;
}

/* Social icons styling */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Footer divider */
.footer-divider {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 30px 0 20px 0;
}

/* Footer bottom section */
.footer-bottom {
  padding-top: 10px;
}

.footer-copyright {
  font-size: 14px;
  color: #e3e3e3;
  line-height: 1.6;
  font-weight: 400;
}

.dev-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.dev-link:hover {
  color: #fff;
  text-decoration: underline;
}

/* Mobile responsive improvements */
@media (max-width: 767.98px) {
  .footer {
    padding: 30px 0 15px 0;
  }
  
  .footer-logo {
    max-width: 150px;
  }
  
  .footer-description {
    font-size: 13px;
    text-align: center;
  }
  
  .footer-heading {
    font-size: 14px;
    text-align: center;
    margin-bottom: 12px;
  }
  
  .footer-links {
    text-align: center;
    gap: 8px;
  }
  
  .footer-links a {
    font-size: 13px;
  }
  
  .footer-social {
    justify-content: center;
    gap: 10px;
  }
  
  .social-link {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
  
  .footer-copyright {
    font-size: 11px;
  }
}

/* Tablet improvements */
@media (min-width: 768px) and (max-width: 991.98px) {
  .footer-social {
    justify-content: flex-start;
  }
}

/* Desktop improvements */
@media (min-width: 992px) {
  .footer-social {
    justify-content: flex-start;
  }
  
  .footer-description {
    text-align: left;
  }
  
  .footer-heading {
    text-align: left;
  }
  
  .footer-links {
    text-align: left;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   END FOOTER IMPROVEMENTS
   ═══════════════════════════════════════════════════════════════════ */

@media (max-width: 767.98px) {
  .hiw-illustration {
    margin-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  .hiw-illustration img {
    width: 170%; /* Bigger image for better coverage */
    max-width: none;
    opacity: 10;
    margin-top: 30px;
  }

  .hiw-illustration .overlay-content {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: auto;
    padding: 0;
  }
}

.custom-registration-card {
  background-color: #f1f0f5;
  border-radius: 30px;
  width: 100%;
  max-width: 500px;
}

.accordion-item {
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
}

.accordion-button {
  background-color: white;
  color: black;
  font-weight: 500;
  box-shadow: none;
  padding: 1rem 0;
  border: none;
}

.accordion-button::after {
  content: "+";
  font-size: 1.2rem;
  transform: none !important;
  background-image: none !important;
}

.accordion-button:not(.collapsed)::after {
  content: "-";
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  padding: 1rem 0;
}

h2.section-title {
  text-align: center;
  color: #2b66d2;
  font-weight: 700;
  margin-bottom: 2rem;
}

.footer {
  background-color: #1f4b8e;
  color: white;
  padding: 20px 20px;
}

.footer a {
  color: white;
  text-decoration: none;
  font-size: 12px;
}

.footer a:hover {
  text-decoration: underline;
}

.footer .social-icons i {
  font-size: 14px;
  margin-right: 20px;
  margin-left: 10px;
  color: white;
}

.footer small {
  font-size: 12px;
}

.footer ul {
  list-style: none;
  padding-left: 0;
}

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

.footer img {
  max-width: 220px;
  height: auto;
}

body {
  font-family: "Segoe UI", sans-serif;
}

/* ═══════════════════════════════════════════════════════════════════
   HERO SECTION IMPROVEMENTS
   ═══════════════════════════════════════════════════════════════════ */

/* Enhanced Hero Section */
.hero-fullwidth {
  padding: 48px 16px !important; /* Increased vertical spacing */
  min-height: auto !important;
}

/* Hero text column improvements */
.hero-text-col {
  padding: 48px 16px !important; /* Increased vertical spacing */
}

/* Google Play Button Enhancements */
.google-play-img {
  margin-top: 24px !important; /* Increased top margin */
  transform: scale(1.2) !important; /* Make button more prominent */
  transition: transform 0.3s ease !important;
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.google-play-img:hover {
  transform: scale(1.25) !important; /* Slight hover effect */
}

/* Play button container for better centering */
.play-btn-leftpad {
  display: flex !important;
  justify-content: center !important;
  margin-top: 24px !important;
}

/* Mobile specific hero improvements */
@media (max-width: 575.98px) {
  .hero-fullwidth {
    padding: 60px 20px !important; /* Even more spacing on mobile */
  }
  
  .hero-text-col {
    padding: 60px 20px !important; /* More generous mobile padding */
    text-align: center !important;
  }
  
  .google-play-img {
    margin-top: 32px !important; /* More space above button on mobile */
    transform: scale(1.3) !important; /* Larger on mobile for better touch targets */
    max-width: 280px !important; /* Ensure it doesn't get too large */
  }
  
  .play-btn-leftpad {
    justify-content: center !important;
    padding-left: 0 !important;
  }
  
  /* Override existing mobile styles for better spacing */
  .hero-text-col .highlight-text {
    text-align: center !important;
    padding-left: 0 !important;
    font-size: 1.4rem !important; /* Slightly larger for better readability */
    margin-bottom: 16px !important;
  }
  
  .hero-text-col .tagline {
    text-align: center !important;
    padding-left: 0 !important;
    font-size: 0.95rem !important; /* Slightly larger */
    margin-bottom: 24px !important;
  }
}

/* Tablet improvements */
@media (min-width: 576px) and (max-width: 991.98px) {
  .hero-fullwidth {
    padding: 56px 24px !important;
  }
  
  .hero-text-col {
    padding: 56px 24px !important;
  }
  
  .google-play-img {
    margin-top: 28px !important;
    transform: scale(1.25) !important;
  }
}

/* Right section image spacing improvements */
.col-md-6:has(img[src*="Group 285.svg"]) {
  padding: 32px 16px !important; /* More padding around printer image */
}

@media (max-width: 575.98px) {
  .col-md-6:has(img[src*="Group 285.svg"]) {
    padding: 40px 20px !important; /* Even more spacing on mobile */
    margin-top: 32px !important;
  }
}

/* Enhanced image styling */
img[src*="Group 285.svg"] {
  padding: 16px !important; /* Additional padding around the image itself */
  max-width: 85% !important; /* Slightly smaller to create more breathing room */
}

@media (max-width: 575.98px) {
  img[src*="Group 285.svg"] {
    padding: 24px !important;
    max-width: 80% !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   END HERO SECTION IMPROVEMENTS
   ═══════════════════════════════════════════════════════════════════ */

.hero {
  background: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 2rem;
}
.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #2b6ff2;
  line-height: 1.2;
}
.hero-text p {
  font-size: 1.2rem;
  margin-top: 1rem;
}
.app-image {
  position: relative;
}
.app-image img {
  width: 100%;
  max-width: 500px;
}
.feature-tag {
  position: absolute;
  background: white;
  border-radius: 2rem;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.feature-upload {
  top: 5%;
  left: 10%;
}
.feature-select {
  top: 30%;
  left: 5%;
}
.feature-customize {
  bottom: 15%;
  left: 15%;
}
.feature-track {
  bottom: 10%;
  right: 10%;
}
.feature-secured {
  top: 20%;
  right: 5%;
}

h2 {
  color: #ff6600;
  font-weight: bold;
}
.faq-item {
  background-color: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: border-left 0.3s ease;
}
.faq-question {
  padding: 15px 20px;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-answer {
  display: none;
  padding: 15px 20px;
  border-top: 1px solid #e0e0e0;
  background-color: #f1f1f1;
}
.faq-item.active {
  border-left: 5px solid #007bff; /* Blue border */
}
.faq-item.active .faq-answer {
  display: block;
}
.icon-toggle {
  font-size: 1.5rem;
  line-height: 1;
}
