* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* GST steps: force icon above content and center on small phones */
@media (max-width: 600px) {
  .gst-steps-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 12px;
  }

  .gst-steps-grid .gst-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 12px 14px !important;
    gap: 8px !important;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  }

  .gst-steps-grid .step-circle {
    position: static !important;
    order: -1 !important;
    margin: 0 0 8px 0 !important;
    width: 48px !important;
    height: 48px !important;
    line-height: 48px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #F4C430 !important;
    color: #0f1724 !important;
    font-weight: 700 !important;
    box-shadow: 0 6px 14px rgba(0,0,0,0.04) !important;
    border: none !important;
    font-size: 14px !important;
  }

  .gst-steps-grid .card-body h3 {
    font-size: 18px !important;
    margin-bottom: 6px !important;
  }
}

/* Navigation styles */
.nav-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
}

/* Ensure sticky header does not overlap page content on small screens */
@media (max-width: 768px) {
  :root {
    --nav-height: 68px;
  }

  body {
    padding-top: var(--nav-height, 68px) !important; /* use CSS variable set by JS when available */
  }
}

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

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #6b21a8;
}

.hamburger {
  display: none;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
  }
  
  .hamburger span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    transition: 0.3s;
  }
  
  .nav-links {
    display: none;
  }
}

/* Hero section styles (for compareempires.html) */
.hero-section {
  padding: 80px 24px 60px;
  text-align: center;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.main-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 24px;
  line-height: 1.1;
}

.subtitle {
  font-size: 1.25rem;
  color: #64748b;
  margin-bottom: 8px;
  font-weight: 400;
}

.subtitle-secondary {
  font-size: 1.25rem;
  color: #64748b;
  margin-bottom: 40px;
  font-weight: 400;
}

.cta-buttons {
  text-align: center;
  margin: 40px 0 60px;
}

.cta-buttons .btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: #0f1724;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.cta-buttons .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 23, 36, 0.15);
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 16px 40px;
  }
  
  .main-title {
    font-size: 2.5rem;
  }
  
  .subtitle,
  .subtitle-secondary {
    font-size: 1.1rem;
  }
}

/* Comparison table styles (for compareempires.html) */
.table-scroll-wrapper {
  width: 100%;
  overflow-x: auto;
  padding: 12px 24px 28px 24px;
  margin-bottom: 40px;
}

.comparison-table {
  width: 100%;
  min-width: 900px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 28px rgba(16,24,40,0.06);
  border: 1px solid #eef2f7;
}

.comparison-row {
  display: flex;
  width: 100%;
}

.comparison-header {
  background: linear-gradient(90deg,#0f1724,#111827);
  color: #fff;
}

.feature-name {
  flex: 0 0 260px;
  padding: 18px 16px;
  font-weight: 700;
  color: #0f1724;
  background: #fff;
  font-size: 16px;
  text-align: left;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f3f4f6;
}

.company-header-cell {
  flex: 1;
  padding: 18px 16px;
  text-align: center;
  border-left: 1px solid #f3f4f6;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg,#0f1724,#111827);
  color: #fff;
  border-bottom: 1px solid #f3f4f6;
}

.feature-value,
.advfeature-value {
  flex: 1;
  padding: 18px 16px;
  text-align: center;
  border-left: 1px solid #f3f4f6;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #f3f4f6;
}

.company-header-cell .company-name { 
  font-weight: 700; 
  font-size: 16px;
}

.comparison-row:nth-child(odd) .feature-name { 
  background: #fcfcfd; 
}

.comparison-row:nth-child(even) .feature-name { 
  background: #fff; 
}

.advfeature-value {
  background: linear-gradient(90deg,#6b21a8,#a78bfa);
  color: #fff;
  font-weight: 700;
}

.comparison-header .feature-name {
  background: linear-gradient(90deg,#0f1724,#111827);
  color: transparent;
}

/* Remove bottom border from last row */
.comparison-row:last-child .feature-name,
.comparison-row:last-child .company-header-cell,
.comparison-row:last-child .feature-value,
.comparison-row:last-child .advfeature-value {
  border-bottom: none;
}

@media (max-width: 1000px) {
  .comparison-table { 
    min-width: 780px; 
  }
  
  .feature-name {
    flex: 0 0 200px;
  }
}

@media (max-width: 700px) {
  .table-scroll-wrapper { 
    padding: 12px 10px; 
  }
  
  .comparison-table { 
    min-width: 720px; 
  }
  
  .feature-name {
    flex: 0 0 180px;
    font-size: 14px;
  }
  
  .company-header-cell,
  .feature-value,
  .advfeature-value {
    font-size: 14px;
    padding: 16px 12px;
  }
}


body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: linear-gradient(135deg, #ffffff 0%, transparent 100%);
  min-height: 100vh;
  padding-top: 0;
  /* Removed padding to eliminate white space */
}

@media (max-width: 768px) {
  body {
    padding-top: 0;
    /* Removed mobile padding as well */
  }
}

  /* GST Steps Grid Styles */
  .gst-steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-top: 48px;
    border: 1px solid #f0f0f0;
    border-radius: 6px;
    background: #fff;
    overflow: hidden;
  }

  .gst-steps-grid .gst-card {
    position: relative;
    padding: 36px 48px;
    background: #fff;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    min-height: 160px;
    display: flex;
    align-items: flex-start;
  }

  /* Remove right border for right column items */
  .gst-steps-grid .gst-card:nth-child(2n) {
    border-right: none;
  }

  /* Remove bottom border for items in the last row */
  .gst-steps-grid .gst-card:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .gst-steps-grid .card-body h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #111;
    font-weight: 700;
  }

  .gst-steps-grid .card-body p {
    color: #6b6b6b;
    line-height: 1.6;
    margin-bottom: 14px;
  }

  .gst-steps-grid .card-badge {
    display: inline-block;
    padding: 8px 12px;
    font-weight: 600;
    font-size: 14px;
    color: #333;
    border-radius: 20px;
    background: transparent;
    border: 1px solid #eee;
  }

  .gst-steps-grid .step-circle {
    position: absolute;
    right: 22px;
    top: 18px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #222;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #222;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  }

  @media (max-width: 1024px) {
    .gst-steps-grid {
      grid-template-columns: 1fr;
    }

    .gst-steps-grid .gst-card {
      border-right: none;
      border-bottom: 1px solid #eee;
      padding: 28px 22px;
    }

    .gst-steps-grid .gst-card:nth-last-child(-n+1) {
      border-bottom: none;
    }

    .gst-steps-grid .card-body h3 {
      font-size: 20px;
    }

    .gst-steps-grid .step-circle {
      right: 18px;
      top: 14px;
      width: 40px;
      height: 40px;
    }
  }

  /* Improve mobile layout for smaller devices */
  @media (max-width: 768px) {
    .gst-steps-grid {
      margin-top: 20px;
      border-radius: 4px;
    }

    .gst-steps-grid .gst-card {
      padding: 14px 14px;
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 12px;
      min-height: auto;
    }

    .gst-steps-grid .card-body {
      flex: 1 1 auto;
    }

    /* Move the numbered circle inline and before the content on small screens */
    .gst-steps-grid .step-circle {
      position: static;
      order: -1;
      margin: 0 12px 0 0;
      width: 40px;
      height: 40px;
      font-size: 14px;
    }

    .gst-steps-grid .card-body h3 {
      font-size: 18px;
      margin-bottom: 6px;
    }
  }


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

/* Black & White Benefits Grid */
.bw-advantages {
  background: #fff;
  color: #111;
  padding-top: 40px;
  padding-bottom: 40px;
}

.bw-advantages .section-title h2 {
  color: #111;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.benefit-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  border: 1px solid #e9e9e9;
  background: #fff;
  transition: box-shadow 0.18s ease, transform 0.12s ease;
  min-height: 160px; /* make cards visually longer */
}

.benefit-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}

.benefit-icon {
  min-width: 64px;
  min-height: 64px;
  border-radius: 50%;
  border: 2px solid #111;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  background: #fff;
  font-size: 20px;
}

.benefit-body h4 {
  margin: 0 0 8px 0;
  font-size: 18px;
  color: #111;
}

.benefit-body p {
  margin: 0;
  color: #5a5a5a;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  /* Make cards full-bleed (wider) and keep them compact vertically
     Icon moves to top, text centered. Do NOT increase card height. */
  .benefits-grid {
    padding-left: 0;
    padding-right: 0;
  }

  .benefit-card {
    padding: 12px 20px;
    /* visually extend card to the edges of the container */
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    min-height: unset; /* do not force taller cards */
  }

  .benefit-icon {
    width: 48px;
    height: 48px;
    font-size: 18px;
    border-radius: 10px;
    margin: 0 0 6px 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .benefit-body h4 { margin: 0 0 6px 0; }
  .benefit-body p { margin: 0; }
}

/* Extend benefits grid breadth on small screens while keeping content centered */
@media (max-width: 600px) {
  .bw-advantages .container {
    padding-left: 0;
    padding-right: 0;
  }

  .bw-advantages .benefits-grid {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
    gap: 12px;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }

  /* ensure cards still behave and stay centered inside the expanded grid */
  .bw-advantages .benefit-card {
    max-width: 100%;
    width: auto;
  }
}

@media (max-width: 420px) {
  .benefit-body h4 {
    font-size: 16px;
  }
  .benefit-body p {
    font-size: 14px;
  }
  .benefit-card {
    gap: 12px;
  }
}

/* Better mobile layout for Benefits: icons left, text right, full-width touch targets */
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .benefit-card {
    flex-direction: row;
    align-items: center;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #f0f0f0;
    gap: 16px;
  }

  .benefit-icon {
    min-width: 44px;
    min-height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border: 1px solid #e6e6e6;
  }

  .benefit-body h4 {
    font-size: 17px;
    margin-bottom: 6px;
  }

  .benefit-body p {
    font-size: 14px;
    color: #6b6b6b;
  }

  /* Make entire card easier to tap */
  .benefit-card {
    touch-action: manipulation;
  }
}

/* Strong override for small phones: ensure icon is on top and text is centered
   This comes after the 768px rules so it wins when both apply. */
@media (max-width: 600px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    padding-left: 12px;
    padding-right: 12px;
    gap: 12px;
  }

  .benefit-card {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 12px 16px !important;
    gap: 8px !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  }

  .benefit-icon {
    width: 56px !important;
    height: 56px !important;
    min-width: unset !important;
    min-height: unset !important;
    font-size: 18px !important;
    margin-bottom: 8px !important;
    border-radius: 12px !important;
  }

  .benefit-body h4 { margin: 0 0 6px 0; }
  .benefit-body p { margin: 0; }
}
* Story cards (Requirements section) - unify font family and reduce sizes */
.cards-container .story-card {
  font-family: inherit; /* use the site's body font */
}

.cards-container .story-card h2 {
  font-family: inherit;
  font-size: 24px; /* reduced heading size */
  margin-bottom: 8px;
  line-height: 1.4;
}

.cards-container .story-card p {
  font-family: inherit;
  font-size: 18px; /* compact paragraph text */
  color: inherit;
  line-height: 1.5;
  margin: 0;
}

/* Slight spacing tweak so the bullets align neatly */
.cards-container .story-card p br { display: block; margin-bottom: 6px; }



/* Header */
header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
  background: transparent;
}

.nav-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  max-width: 1240px;
}

nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 5px 0;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 60px;
  width: 100%;
  flex-wrap: nowrap;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-right: 30px;
  flex-shrink: 0;
}

.logo-text {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  letter-spacing: -0.5px;
  font-size: 22px;
  color: #1a1a1a;
  position: relative;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #1a1a1a;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0px;
  position: relative;
  align-items: center;
  justify-content: flex-start;
  /* Align links to the left */
  flex: 1 1 auto;
  /* A more robust flex value */
  flex-grow: 1;
  /* Use flex-grow instead of flex: 1 */
  margin: 0 0px;
}

.nav-links a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.2s ease;
  padding: 8px 16px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #667eea;
  background: rgba(102, 126, 234, 0.1);
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.dropdown-arrow {
  font-size: 12px;
  transition: transform 0.2s ease;
  color: #666;
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  min-width: 200px;
  width: max-content;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  padding: 8px;
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.2);
  white-space: nowrap;

  /* Animation Properties */
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

/* Desktop hover behavior */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  .dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
  }
}

.dropdown-item {
  display: block;
  padding: 12px 16px;
  color: #1a1a1a !important;
  text-decoration: none;
  transition: all 0.2s ease;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  width: 100%;
  text-align: left;
}

.dropdown-item:hover {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea !important;
}

.dropdown-item span {
  font-weight: 500;
  font-size: 14px;
  display: block;
  text-align: left;
}

.header-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
  height: 100%;
}

/* New rule to align buttons to the right on desktop */
.header-buttons-li {
  margin-left: auto;
}

.btn-demo {
  padding: 9px 20px;
  background: transparent;
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-demo:hover {
  background: rgba(102, 126, 234, 0.1);
  border-color: #667eea;
  color: #667eea;
}

.btn-primary {
  padding: 9px 20px;
  background: #080202;
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

/* .btn-primary:hover {
  background: #080202; 
  color: #ffffff;      
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
} */

.btn-primary::after {
  content: "→";
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.btn-primary:hover::after {
  transform: translateX(4px);
}

/* Hero Section */
.hero {
  background: #667eea;
  padding: 140px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 0;
  /* No negative margin needed since body padding is removed */
  padding-top: 120px;
  /* Reduced padding for closer navbar-content gap */
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #ffffff;
  letter-spacing: -1px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Ensure hero headings in other templates (e.g., index.html) use the same reduced weight */
.hero-left h1,
.hero h1,
.hero-content h1 {
  font-weight: 500;
}

/* Strong override: ensure hero headings render with the lighter weight across all pages
   Uses !important to override inline <style> rules and utility classes (Tailwind) if needed. */
.hero-left h1, .hero-left h1.font-extrabold, .hero h1, .hero-content h1 {
  font-weight: 400 !important;
}
.hero-left p{
  font-size: 17px !important;
}

.hero-text h1 .highlight {
  color: #f4c430;
}

.hero-text p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  line-height: 1.6;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.btn-large {
  padding: 14px 28px !important;
  border-radius: 12px;
  font-size: 16px !important;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  min-width: auto !important;
  width: auto !important;
}

.btn-black {
  background: rgba(255, 255, 255, 0.95);
  color: #1a1a1a;
  backdrop-filter: blur(20px);
}

.btn-black:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.btn-white {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.service-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.perks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* This styles the inner grid of partner logos */
.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Mobile responsive styles for perks and rewards section */
@media (max-width: 768px) {
  .perks-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .partner-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* CTA Sections Mobile Responsive */
@media (max-width: 768px) {
  /* Services section CTA buttons */
  .gst-section div[style*="display: flex; justify-content: center"] {
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 0 20px !important;
  }

  .gst-section div[style*="display: flex; justify-content: center"] a {
    width: 100% !important;
    max-width: 280px !important;
    text-align: center !important;
    justify-content: center !important;
  }
}

@media (max-width: 480px) {
  /* Additional CTA mobile styles for smaller screens */
  .gst-section div[style*="display: flex; justify-content: center"] {
    padding: 0 16px !important;
  }

  .gst-section div[style*="display: flex; justify-content: center"] a {
    max-width: 100% !important;
    padding: 12px 24px !important;
    font-size: 15px !important;
  }
}

/* #WE People First Company CTA Section Mobile Responsive */
@media (max-width: 768px) {
  /* Main CTA section container */
  section[style*="background: #ffebd0"] {
    margin: 0 20px !important;
    padding: 40px 20px !important;
  }

  /* Hero grid layout */
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    text-align: center !important;
  }

  /* Left content padding */
  .hero-grid > div:first-child {
    padding-left: 0 !important;
  }

  /* Main heading */
  .hero-grid h2 {
    font-size: 2.2rem !important;
    margin-bottom: 20px !important;
  }

  /* Description text */
  .hero-grid p {
    font-size: 1rem !important;
    margin-bottom: 24px !important;
  }

  /* Button container */
  .hero-grid div[style*="display: flex"] {
    flex-direction: column !important;
    gap: 12px !important;
    align-items: center !important;
  }

  /* Individual buttons */
  .hero-grid a {
    width: 100% !important;
    max-width: 280px !important;
    text-align: center !important;
    justify-content: center !important;
    padding: 14px 28px !important;
  }

  /* Right side image container */
  .hero-grid > div:last-child {
    margin-left: 0 !important;
    width: 100% !important;
    max-width: 350px !important;
    height: 300px !important;
    margin: 0 auto !important;
  }

  /* Image inside container */
  .hero-grid img {
    width: 100% !important;
    height: auto !important;
    max-width: 300px !important;
  }
}

@media (max-width: 480px) {
  /* Additional styles for smaller mobile screens - #WE People First Company section */
  section[style*="background: #ffebd0"] {
    margin: 0 16px !important;
    padding: 30px 16px !important;
  }

  .hero-grid h2 {
    font-size: 1.8rem !important;
  }

  .hero-grid a {
    max-width: 100% !important;
    padding: 12px 24px !important;
    font-size: 15px !important;
  }

  .hero-grid > div:last-child {
    height: 250px !important;
  }
}

.service-link:hover {
  color: #4c51bf;
  transform: translateX(4px);
}

.trustpilot {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 14px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 500;
}

.stars {
  color: #10b981;
  font-size: 16px;
}

.hero-visual {
  position: relative;
}

/* Glassmorphism Card Styles */
.glassmorphism-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.glassmorphism-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  border-radius: 20px;
  pointer-events: none;
}

.glass-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.accounting-badge {
  background: rgba(52, 152, 219, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(52, 152, 219, 0.3);
  border-radius: 15px;
  padding: 20px 30px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.accounting-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(52, 152, 219, 0.3) 0%,
    rgba(52, 152, 219, 0.1) 100%
  );
  border-radius: 15px;
  pointer-events: none;
}

.accounting-badge h2 {
  position: relative;
  z-index: 2;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.accounting-badge h3 {
  position: relative;
  z-index: 2;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 8px 0 0 0;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.professional-image {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.professional-image img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(1.1) contrast(1.1);
  transition: transform 0.3s ease;
}

.glassmorphism-card:hover .professional-image img {
  transform: scale(1.05);
}

.hero-image {
  width: 100%;
  border-radius: 16px;
  background: #f8fafc;
  padding: 48px 32px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-image h3 {
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 16px;
  font-weight: 600;
}

.hero-image p {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
}

/* Remove boxed background for hero images in hero sections across pages */
.hero-section .hero-image,
.hero .hero-image,
.hero-content .hero-image,
.hero-right .hero-image {
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  text-align: left !important;
}

.hero-section .hero-image img,
.hero .hero-image img,
.hero-content .hero-image img,
.hero-right .hero-image img {
  border-radius: 0 !important;
  display: block;
  width: 100%;
  height: auto;
}

/* Section Styles */
.section-title {
  text-align: center;
  margin-bottom: 34px;
}

.section-title h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-title p {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

/* Advantages Section */
.advantages {
  padding: 30px 0;
  background: #fff;
}

.advantages-modern {
  padding: 0 0 60px 0;
  margin-top: -30px;
  background: #fff;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Mobile responsive for advantages grid */
@media (max-width: 1024px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }
}

.advantage-card {
  background: #e5e8f5;
  padding: 32px;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.advantage-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #1a1a1a;
  font-weight: 600;
}

.advantage-card p {
  color: #64748b;
  line-height: 1.6;
}

/* Mandatory Section */
.mandatory-section {
  background: #e5f5e5;
  color: #fff;
  padding: 48px;
  border-radius: 12px;
  margin-top: 64px;
}

.mandatory-section h3 {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 16px;
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.mandatory-section > p {
  text-align: center;
  color: #1a1a1a;
  font-size: 16px;
  margin-bottom: 32px;
}

.mandatory-list {
  display: grid;
  gap: 16px;
}

.mandatory-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.3);
  padding: 16px;
  border-radius: 8px;
}

.bullet {
  color: #f4c430;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 2px;
}

.mandatory-item p {
  margin: 0;
  line-height: 1.6;
  color: #1a1a1a;
  font-size: 14px;
}

/* Requirements Section */
.requirements {
  padding: 0 0 80px 0;
  background: #f8fafc;
}

.requirements-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.requirement-item {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.requirement-item h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: #1a1a1a;
  font-weight: 600;
}

.requirement-item ul {
  list-style: none;
  padding: 0;
}

.requirement-item ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #64748b;
}

.requirement-item ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: bold;
}

/* Process Section */
.process {
  padding: 80px 0;
  background: #fff;
}

.process-timeline {
  width: 80px;
  height: 3px;
  background: #667eea;
  margin: 16px auto 0;
  border-radius: 2px;
}

.process-steps {
  display: grid;
  gap: 24px;
  margin-top: 48px;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}

.step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 32px;
  background: #f8fafc;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.step:hover {
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.step-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* Enforce a single solid badge appearance globally to avoid overlapping shapes */
.step-number {
  background: #0b3333 !important; /* brand teal */
  color: #ffffff !important;
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: none !important;
  position: relative !important;
  z-index: 2 !important;
}

.step-number::before,
.step-number::after {
  display: none !important;
  content: none !important;
}

.step-number span {
  /* Make inner span neutral so only the outer .step-number circle is visible */
  width: auto;
  height: auto;
  background: transparent;
  color: inherit;
  border-radius: 0;
  display: inline-block;
  align-items: initial;
  justify-content: initial;
  font-size: inherit;
  font-weight: 700;
  padding: 0;
  margin: 0;
}

.step-icon {
  font-size: 32px;
}

/* Hide decorative step-icon globally to avoid double-shape/badge overlap */
.step-icon {
  display: none !important;
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #1a1a1a;
  font-weight: 600;
}

.step-content p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 16px;
}

.step-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(102, 126, 234, 0.1);
  color: #0c3737;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.process-footer {
  margin-top: 64px;
  text-align: center;
}

.process-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.stat-item {
  background: #fff;
  padding: 24px 20px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-2px);
}

.stat-item h4 {
  font-size: 2rem;
  color: #0c3737;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-item p {
  color: #64748b;
  font-size: 14px;
  margin: 0;
}

/* GST Section */

/* GST Registration Section */
.gst-section {
  padding: 40px 0;
  background: #f8fafc;
}

.gst-content {
  margin-top: 48px;
}

.gst-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 64px;
}

.gst-text h3 {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.gst-text p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 16px;
}

.note-box {
  background: #fff;
  border-left: 4px solid #f4c430;
  padding: 20px;
  border-radius: 8px;
  margin-top: 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.note-box p {
  margin: 0;
  color: #475569;
  font-style: italic;
  font-size: 14px;
}

.gst-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gstin-format {
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
}

.gstin-format h4 {
  font-size: 1.25rem;
  color: #1a1a1a;
  margin-bottom: 24px;
  font-weight: 600;
}

.gstin-diagram {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  padding: 20px 0;
}

.gstin-part {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gstin-number {
  background: #f4c430;
  color: #1a1a1a;
  padding: 16px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
  min-width: 60px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gstin-number.main {
  background: #2c3e50;
  color: #ffffff;
  padding: 16px 24px;
  font-size: 16px;
  letter-spacing: 2px;
  min-width: 160px;
}

.gstin-label {
  font-size: 12px;
  color: #64748b;
  line-height: 1.4;
  font-weight: 500;
  max-width: 140px;
}

/* Mobile adjustments for GSTIN diagram */
@media (max-width: 600px) {
  .gstin-diagram {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
  }

  .gstin-part {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 6px 12px;
  }

  .gstin-number,
  .gstin-number.main {
    margin-bottom: 0;
    padding: 10px 14px;
    font-size: 16px;
    min-width: auto;
    border-radius: 10px;
  }

  .gstin-label {
    max-width: none;
    font-size: 13px;
    color: #64748b;
    line-height: 1.3;
    text-align: left;
  }

  .gstin-part .gstin-label {
    display: block;
  }
}

/* Documents Section */
.documents-section {
  margin-top: 48px;
}

.documents-section h3 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #1a1a1a;
  text-align: center;
}

.documents-section > p {
  text-align: center;
  color: #64748b;
  margin-bottom: 32px;
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1200px;
  /* You might want to ensure it doesn't get excessively wide */
  margin-left: auto;
  margin-right: auto;
}

.document-item {
  background: #181717;
  color: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.document-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.document-item h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 700;
  color: white;
  font-weight: 600;
}

.doc-description {
  color: #7851a9;
  font-weight: 500;
  margin-bottom: 16px;
}

.document-item ul {
  list-style: none;
  padding: 0;
}

.document-item ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: white;
}

.document-item ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: bold;
}

/* Clean Deliverables Design - Monochrome */
.deliverables-new {
  padding: 0 0 60px 0;
  background: #ffffff;
  position: relative;
}

.deliverables-header {
  text-align: center;
  margin-bottom: 40px;
}

.deliverables-header h2 {
  font-size: 48px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 16px;
}

.header-underline {
  width: 80px;
  height: 3px;
  background: #000000;
  margin: 0 auto 24px;
  border-radius: 2px;
}

.deliverables-subtitle {
  font-size: 18px;
  color: #666666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}

.deliverables-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.deliverable-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.08);
}

.deliverable-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.12);
  border-color: #000000;
}

.card-number {
  position: absolute;
  top: 20px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: #ffffff;
  background: #000000;
}

.card-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
  line-height: 1.3;
  padding-right: 60px;
}

.card-content p {
  color: #666666;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.card-accent {
  width: 100%;
  height: 3px;
  background: #000000;
  border-radius: 2px;
  margin-top: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .deliverables-showcase {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 16px;
  }
  
  .deliverables-header h2 {
    font-size: 36px;
  }
  
  .deliverable-card {
    padding: 20px 22px;
  }
  
  .card-content h3 {
    font-size: 20px;
    padding-right: 50px;
  }
}

.deliverable-item {
  background: #ffffff;
  padding: 36px 28px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.deliverable-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.deliverable-item h3 {
  color: #000000;
  font-size: 1.05rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.deliverable-item p {
  color: rgba(0,0,0,0.7);
  font-size: 14px;
  margin: 0;
}

/* Responsive: 2 columns on tablet, 1 column on mobile */
@media (max-width: 1024px) {
  .deliverables-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .deliverables-grid {
    grid-template-columns: 1fr;
  }
  .deliverables {
    padding: 28px 0;
  }
  .deliverable-item {
    padding: 20px;
    border-radius: 12px;
  }
}

/* Footer */
footer {
  background: #1a1a1a;
  color: #fff;
  padding: 60px 0 20px;
}

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

.footer-section h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #fff;
}

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

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

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-section ul li a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

/* MOBILE RESPONSIVE STYLES */
@media (max-width: 1024px) {
  .nav-container {
    padding: 0 24px;
  }

  .nav-links {
    gap: 24px;
    margin: 0 24px;
  }

  .hero-content {
    gap: 48px;
  }

  .hero-text h1 {
    font-size: 2.8rem;
  }

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

@media (max-width: 1024px) and (min-width: 769px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 300px;
    max-width: 85vw;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 90px 0 30px 0;
    margin: 0;
    gap: 0;
    transition: right 0.3s ease-in-out;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
    margin-bottom: 0;
  }

  .nav-links > li > a {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    display: block;
    border-radius: 0;
  }

  .nav-links > li > a:hover {
    background: rgba(102, 126, 234, 0.08);
  }

  /* Mobile Dropdown Fixes */
  .dropdown {
    width: 100%;
    position: relative;
    overflow: hidden;
  }

  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 16px 24px !important;
    display: flex !important;
    background: none !important;
    border: none;
    cursor: pointer;
    text-align: left;
    font-weight: 500;
    font-size: 16px;
    color: #1a1a1a;
  }

  .dropdown-toggle:hover {
    background: rgba(102, 126, 234, 0.08) !important;
    color: #1a1a1a !important;
  }

  .dropdown-arrow {
    transition: transform 0.3s ease;
    font-size: 10px;
    flex-shrink: 0;
    margin-left: auto;
  }

  .dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
  }

  .dropdown-menu {
    position: static !important;
    transform: none !important;
    left: auto !important;
    top: auto !important;
    box-shadow: none;
    background: rgba(102, 126, 234, 0.06);
    border: none;
    border-radius: 0;
    backdrop-filter: none;

    /* Smooth animation */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
      padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    opacity: 1;
    visibility: visible;
    display: block;
    padding: 0;
    margin: 0;
    width: 100%;
    min-width: auto;
  }

  .dropdown.active .dropdown-menu {
    max-height: 600px;
    padding: 8px 0;
  }

  .dropdown-item {
    padding: 14px 24px 14px 40px !important;
    border-radius: 0 !important;
    margin: 0;
    width: 100%;
    display: block !important;
    background: none !important;
    color: #1a1a1a !important;
    text-align: left;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
  }

  .dropdown-item:hover {
    background: rgba(102, 126, 234, 0.12) !important;
    color: #667eea !important;
  }

  .dropdown-item span {
    font-size: 15px;
    display: block;
  }

  /* Disable desktop hover effects on mobile */
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0;
  }

  .dropdown:hover .dropdown-arrow {
    transform: none;
  }

  .header-buttons-li {
    margin-left: 0;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    width: 100%;
  }

  .header-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-top: 0;
    padding: 0 24px;
  }

  .header-buttons a {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    justify-content: center;
    display: flex;
  }
}

@media (max-width: 768px) {
  header {
    padding: 8px 0;
  }

  .nav-container {
    padding: 0 16px;
    border-radius: 45px;
    min-height: 60px;
    margin: 10px 16px;
    z-index: 1001;
  }

  nav {
    padding: 8px 0;
    min-height: 50px;
  }

  .logo {
    font-size: 18px;
    z-index: 999;
  }

  .logo img {
    height: 40px !important;
  }

  .logo-text {
    font-size: 18px;
  }

  /* Hamburger Menu */
  .hamburger {
    display: flex;
    z-index: 1002;
    position: relative;
  }

  @media (min-width: 1201px) {
    .hamburger {
      display: none;
    }
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 300px;
    max-width: 85vw;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 90px 0 30px 0;
    margin: 0;
    gap: 0;
    transition: right 0.3s ease-in-out;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
    margin-bottom: 0;
  }

  .nav-links > li > a {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    display: block;
    border-radius: 0;
  }

  .nav-links > li > a:hover {
    background: rgba(102, 126, 234, 0.08);
  }

  /* Mobile Dropdown Fixes */
  .dropdown {
    width: 100%;
    position: relative;
    overflow: hidden;
  }

  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 16px 24px !important;
    display: flex !important;
    background: none !important;
    border: none;
    cursor: pointer;
    text-align: left;
    font-weight: 500;
    font-size: 16px;
    color: #1a1a1a;
  }

  .dropdown-toggle:hover {
    background: rgba(102, 126, 234, 0.08) !important;
    color: #1a1a1a !important;
  }

  .dropdown-arrow {
    transition: transform 0.3s ease;
    font-size: 10px;
    flex-shrink: 0;
    margin-left: auto;
  }

  .dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
  }

  .dropdown-menu {
    position: static !important;
    transform: none !important;
    left: auto !important;
    top: auto !important;
    box-shadow: none;
    background: rgba(102, 126, 234, 0.06);
    border: none;
    border-radius: 0;
    backdrop-filter: none;

    /* Smooth animation */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
      padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    opacity: 1;
    visibility: visible;
    display: block;
    padding: 0;
    margin: 0;
    width: 100%;
    min-width: auto;
  }

  .dropdown.active .dropdown-menu {
    max-height: 600px;
    padding: 8px 0;
  }

  .dropdown-item {
    padding: 14px 24px 14px 40px !important;
    border-radius: 0 !important;
    margin: 0;
    width: 100%;
    display: block !important;
    background: none !important;
    color: #1a1a1a !important;
    text-align: left;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
  }

  .dropdown-item:hover {
    background: rgba(102, 126, 234, 0.12) !important;
    color: #667eea !important;
  }

  .dropdown-item span {
    font-size: 15px;
    display: block;
  }

  /* Disable desktop hover effects on mobile */
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0;
  }

  .dropdown:hover .dropdown-arrow {
    transform: none;
  }

  .header-buttons-li {
    margin-left: 0;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    width: 100%;
  }

  .header-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-top: 0;
    padding: 0 24px;
  }

  .header-buttons a {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    justify-content: center;
    display: flex;
  }
}

/* Hero Section Mobile */
@media (max-width: 768px) {
  .hero {
    padding: 120px 0 60px;
    min-height: auto;
    margin-top: 0;
    /* No negative margin needed */
    padding-top: 100px;
    /* Reduced padding for closer gap on mobile */
  }
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-text p {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
}

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

  .btn-large {
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
  }
}

.trustpilot {
  flex-wrap: wrap;
  justify-content: center;
}

.glassmorphism-card {
  padding: 24px;
}

.professional-image {
  max-width: 100%;
}

@media (max-width: 768px) {
  .perks-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    /* Reduce the gap slightly for a better mobile look */
  }
}

/* Section Titles Mobile */
.section-title h2 {
  font-size: 2rem;
}

.section-title p {
  font-size: 1rem;
}

/* Advantages Grid Mobile */
@media (max-width: 768px) {
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .advantage-card {
    padding: 24px;
  }

  .advantage-card h3 {
    font-size: 1.3rem;
  }
}

.btn-demo {
  display: block;
  /* Or 'flex' if it uses flex properties */
}

/* Requirements Mobile */
@media (max-width: 768px) {
  .requirements {
    padding: 60px 0;
  }

  .requirements-content {
    grid-template-columns: 1fr;
  }

  /* Process Mobile */
  .process {
    padding: 60px 0;
  }

  .step {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }

  .step-number {
    flex-direction: row;
    justify-content: flex-start;
  }

  .step-content h3 {
    font-size: 1.3rem;
  }

  /* GST Section Mobile */
  .gst-section {
    align-items: center;
    padding: 20px;
  }

  .gst-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Ensure text appears before visual on mobile */
  .gst-text {
    order: 1;
  }

  .gst-visual {
    order: 2;
  }

  .gst-visual {
    position: static;
  }

  .gstin-format {
    padding: 24px;
  }

  .gstin-part {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Documents Grid Mobile */
  .documents-grid {
    grid-template-columns: 1fr;
  }

  .document-item {
    padding: 24px;
  }
}

/* Footer Mobile */
footer {
  padding: 48px 0 20px;
}

.footer-content {
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

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

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .section-title h2 {
    font-size: 1.7rem;
  }

  .advantage-card,
  .requirement-item,
  .document-item,
  .step {
    padding: 20px;
  }

  .gstin-format {
    padding: 20px;
  }

  .gstin-number {
    font-size: 14px;
    padding: 6px 12px;
    min-width: 50px;
    padding: 0 16px;
  }

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

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .section-title h2 {
    font-size: 1.7rem;
  }

  .advantage-card,
  .requirement-item,
  .document-item,
  .step {
    padding: 50px;
  }

  .gstin-format {
    padding: 20px;
  }

  .gstin-number {
    font-size: 14px;
    padding: 6px 12px;
    min-width: 50px;
  }

  .gstin-number.main {
    min-width: 120px;
  }
}

/* Overlay for mobile menu */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
}

.nav-overlay.active {
  display: block;
}

@media (max-width: 768px) {
  .nav-overlay.active {
    display: block;
  }
}

.footer-container {
  background-color: #ffffff;
  padding: 0;
}

.footer-header {
  background-color: #ffffff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 0px 0;
  margin-top: 5%;
}

.footer-header-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  height: 80px;
  width: auto;
}

.brand-name {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
}

.contact-section {
  display: flex;
  align-items: center;
}

.support-email {
  color: #2563eb;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.support-email:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px 40px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 60px;
}

.footer-column h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 24px;
}

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

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

.footer-column ul li a {
  color: #4a5568;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #2563eb;
}

.footer-bottom {
  border-top: 1px solid #e5e7eb;
  padding: 24px 0;
}

.footer-bottom-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links a,
.footer-links span {
  color: #4a5568;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #2563eb;
}

.footer-links span {
  color: #cbd5e0;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.copyright {
  color: #4a5568;
  font-size: 13px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  color: #4a5568;
  font-size: 18px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #2563eb;
}

@media (max-width: 1200px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }

  .header-divider {
    margin: 0 20px;
  }
}

@media (max-width: 768px) {
  .footer-header-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .header-divider {
    display: none;
  }

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

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-right {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* Compliance Content Responsive Styles */
@media (max-width: 768px) {
  .compliance-content {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .compliance-left h3 {
    font-size: 1.5rem !important;
  }

  .compliance-right > div {
    padding: 24px !important;
  }

  .compliance-right h4 {
    font-size: 1.3rem !important;
    margin-bottom: 24px !important;
  }
}

@media (max-width: 480px) {
  .compliance-content {
    gap: 30px !important;
  }

  .compliance-left {
    padding: 0 !important;
  }

  .compliance-left h3 {
    font-size: 1.4rem !important;
    margin-bottom: 20px !important;
  }

  .compliance-left p {
    font-size: 1rem !important;
    margin-bottom: 24px !important;
  }

  .note-box {
    padding: 20px !important;
  }

  .compliance-right > div {
    padding: 20px !important;
  }
}

/* Partners Grid Responsive Styles */
@media (max-width: 1024px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: repeat(3, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .partners-grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
    gap: 24px !important;
  }

  .partner-card {
    padding: 20px !important;
  }

  .partner-card > div:first-child {
    width: 80px !important;
    height: 80px !important;
  }

  .partner-card h3 {
    font-size: 16px !important;
  }
}

@media (max-width: 480px) {
  .partners-grid {
    gap: 20px !important;
  }

  .partner-card {
    padding: 16px !important;
    flex-direction: column !important;
    text-align: center !important;
    gap: 16px !important;
  }

  .partner-card > div:first-child {
    width: 70px !important;
    height: 70px !important;
  }
}

.trademarksymbols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0px auto;
}

@media (max-width: 480px) {
  .trademarksymbols {
    grid-template-columns: 1fr;
  }
}

/* ================================================= */
/* ============== IMPACT TIMELINE SECTION ============== */
/* ================================================= */

/* --- Desktop Styles (3-Column Grid) --- */
.impact-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  /* Left, Center, Right */
  gap: 20px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline-column-left,
.timeline-column-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.timeline-column-left {
  align-items: right;
  /* Align cards to the right */
}

.timeline-column-right {
  align-items: center;
  /* Align cards to the left */
}

.impact-timeline-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 450px;
}

.impact-timeline-card .card-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.impact-timeline-card .card-content i {
  font-size: 24px;
  color: #667eea;
  margin-top: 5px;
}

.impact-timeline-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px 0;
}

.impact-timeline-card p {
  color: #4b5563;
  line-height: 1.6;
  font-size: 1.1rem;
  margin: 0;
}

.impact-timeline-card .highlight-text {
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 16px;
}

/* --- Center Timeline Styles --- */
.timeline-center {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
}

.timeline-line-desktop {
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #fde68a, #c7d2fe, #a7f3d0);
  border-radius: 2px;
  position: relative;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 4px solid white;
}

.timeline-dot.dot-1 {
  top: 15%;
  background: #fde68a;
  box-shadow: 0 4px 12px rgba(252, 211, 77, 0.3);
}

.timeline-dot.dot-2 {
  top: 50%;
  background: #c7d2fe;
  box-shadow: 0 4px 12px rgba(129, 140, 248, 0.3);
}

.timeline-dot.dot-3 {
  top: 85%;
  background: #a7f3d0;
  box-shadow: 0 4px 12px rgba(52, 211, 153, 0.3);
}

/* --- Stats Box Styles --- */
.impact-stats-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.8);
  width: 100%;
  max-width: 450px;
}

.impact-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.stat-label {
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ================================================= */
/* ============== RESPONSIVE MOBILE FIX ============== */
/* ================================================= */

/* ================================================= */
/* ============== COMPANY REGISTRATION PROCESS ====== */
/* ================================================= */

.process {
  padding: 0 0 64px 0;
  margin-top: -40px;
  background: #ffffff;
}

.process .section-title h2 {
  font-size: 32px;
  color: #111111;
}

.process .section-title p {
  color: #555555;
  margin-top: 8px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 32px auto 0 auto;
}

.process-card {
  display: flex !important;
  gap: 20px;
  align-items: flex-start;
  background: transparent !important;
  border-radius: 12px;
  padding: 22px;
  border: none;
  box-shadow: none !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
}

.process-number {
  flex-shrink: 0;
  width: 64px !important;
  height: 64px !important;
  border-radius: 50% !important;
  background: #000000 !important;
  color: #ffffff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 700 !important;
  font-size: 20px !important;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06) !important;
}

/* Hide numeric circular badges per request; use plain tag + title layout */
.process-number {
  display: none !important;
}

.process-card { gap: 12px !important; }
.process-card .process-body { margin-left: 0 !important; }

/* ensure grid/card rules take precedence in case of earlier resets */
.process-grid > .process-card {
  display: flex !important;
}

.process-card .process-number {
  margin-right: 14px !important;
}

.process-body h3 {
  margin: 0 0 8px 0;
  font-size: 22px;
  color: #0b0b0b;
  font-weight: 700;
}

.process-body p {
  margin: 0 0 10px 0;
  color: #4b5563;
  line-height: 1.6;
}

.process-tag {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #111827;
  font-weight: 600;
  font-size: 13px;
}

/* colored tag variants to match reference */
.process-tag.tag-yellow { background: #fdf3c7; color: #6b4d00; }
.process-tag.tag-green  { background: #e6f7ee; color: #0b6b4f; }
.process-tag.tag-blue   { background: #eef5ff; color: #184b8c; }
.process-tag.tag-indigo { background: #f0eefc; color: #3b2b7a; }
.process-tag.tag-gray   { background: #f5f5f5; color: #374151; }

/* vertical column separators on wide screens */
.process-grid > .process-card { border-right: 1px solid #e6e6e6; padding-right: 28px; }
.process-grid > .process-card:nth-child(3n) { border-right: none; padding-right: 18px; }
.process-grid { align-items: start; }

/* remove separators on medium/smaller screens */
@media (max-width: 1024px) {
  .process-grid > .process-card { border-right: none; padding-right: 18px; }
}

/* adjust spacing to match the reference look */
.process { padding-top: 48px; padding-bottom: 32px; }
.process .section-title { text-align: center; margin-bottom: 28px; }
.process .section-title h2 { font-size: 36px; font-weight:800; }
.process .section-title p { max-width: 780px; margin: 8px auto 0 auto; color: #6b7280; }

/* Responsive: 2 columns */
@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive: stacked cards on mobile */
@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
    margin: 20px auto 0 auto;
    gap: 18px;
  }

  .process-card {
    flex-direction: column;
    padding: 18px;
  }

  .process-number {
    width: 56px;
    height: 56px;
    font-size: 18px;
  }
}

/* Small phones: slightly tighter */
@media (max-width: 480px) {
  .process {
    padding: 40px 12px;
  }

  .process-number {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }
}

/* End process styles */


@media (max-width: 992px) {
  .impact-grid {
    /* Switch to a single column layout */
    grid-template-columns: 1fr;
  }

  .timeline-center {
    /* Hide the vertical timeline on mobile */
    display: none;
  }

  .timeline-column-left,
  .timeline-column-right {
    /* Reset alignment for stacked view */
    align-items: center;
  }

  .impact-timeline-card,
  .impact-stats-box {
    max-width: 90%;
    /* Allow cards to fill the width */
    padding: 30px;
  }

  .impact-timeline-card h3 {
    font-size: 1.2rem;
  }

  .impact-timeline-card p {
    font-size: 0.9rem;
  }

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

  .stat-label {
    font-size: 0.85rem;
  }
}

@media (max-width: 468px) {
  .impact-timeline-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    position: relative;
    right: 20px;
  }
  .impact-stats-box {
    display: none;
  }
}

/* Hide specific footer subsections on mobile: Templates, Quick links, Partnership */
@media (max-width: 768px) {
  /* First footer column: hide the second heading (Templates) and its list */
  .footer-content > .footer-column:nth-child(1) h3:nth-of-type(2),
  .footer-content > .footer-column:nth-child(1) ul:nth-of-type(2),
  /* Second footer column: hide the second heading (Quick links) and its list */
  .footer-content > .footer-column:nth-child(2) h3:nth-of-type(2),
  .footer-content > .footer-column:nth-child(2) ul:nth-of-type(2),
  /* Fourth footer column: hide the second heading (Partnership) and its list */
  .footer-content > .footer-column:nth-child(4) h3:nth-of-type(2),
  .footer-content > .footer-column:nth-child(4) ul:nth-of-type(2) {
    display: none !important;
  }

  /* If you prefer to remove the entire column on mobile instead of just the subsection,
     you can hide the whole column with the selector below (commented out):
  .footer-content > .footer-column:nth-child(1),
  .footer-content > .footer-column:nth-child(2),
  .footer-content > .footer-column:nth-child(4) {
    display: none !important;
  }
  */
}
/* Mobile / tablet nav for the CURRENT rounded header */
@media (max-width: 1024px) {
  .nav-container{
    margin: 0px 1rem ;
    /* margin-right: 2.4rem; */
  }
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 90px;
    right: 0;
    /* left: 0; */
    transform: none; 
    /* transform: translateX(-50%); */
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 12px 16px;
    gap: 8px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    width: min(90vw, 420px);
  }

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

  .header-buttons-li {
    margin-left: 0;
  }
}
.nav-links a.btn-primary,
.nav-links a.btn-primary:hover {
  background: #080202 !important;
  color: #ffffff !important;
}


