/* ============================================================
   JSPS Accounting Solutions — style.css
   Global stylesheet for all public pages
   ============================================================ */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

/* ── Custom Properties ─────────────────────────────────── */
:root {
  /* Theme Colors - TaxManager Palette */
  --primary: #1a7a38; /* TaxManager Green */
  --primary-light: #229946; /* Lighter Green for hovers */
  --primary-dark: #115225; /* Dark Green */
  --accent: #f1c40f; /* TaxManager Yellow/Gold */
  --accent-light: #f4d03f;
  --gold: #f1c40f;

  /* Background & Text Colors */
  --bg-light: #f4fdf6; /* Very subtle green tint for alt sections */
  --bg-white: #ffffff;
  --text-dark: #333333;
  --text-muted: #666666;
  --border: #eaeaea;

  /* Shadows - Adjusted to match the softer TaxManager UI */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.08);

  /* Radii & Transitions (Kept intact for layout stability) */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.25s ease;
}

/* ── Reset / Base ───────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  /* Updated font to Poppins */
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ── Typography ─────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
}

/* ── Layout helpers ─────────────────────────────────────── */
.container-xl {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-pad {
  padding: 80px 0;
}
.section-pad-sm {
  padding: 56px 0;
}
.section-alt {
  background: var(--bg-light);
}

/* ── Section header ─────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}
.section-header p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}
.section-tag {
  display: inline-block;
  background: rgba(43, 168, 74, 0.1);
  color: var(--accent);
  border: 1px solid rgba(43, 168, 74, 0.25);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  padding: 5px 14px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: "DM Sans", sans-serif;
}
.btn-primary-cta:hover {
  background: var(--accent-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(43, 168, 74, 0.3);
}
.btn-outline-cta {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline-cta:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.btn-sm-primary {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition);
}
.btn-sm-primary:hover {
  background: var(--primary-light);
}

/* ── Navbar ──────────────────────────────────────────────── */
.site-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  width: 100%;
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  width: 100%;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  /* Pin brand to the left; nav links stay on the right */
  margin-right: auto;
  flex-shrink: 0;
}

/* ── Navbar Logo Image ── */
.navbar-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
}

.login-page-logo {
  width: 130px;
  height: 130px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
  margin-left: 150px;
}

.footer-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
  /* margin-left: 150px; */
}
/* ── Hero Poster Image ── */
.hero-poster {
  max-height: 340px;
  width: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.logo-box {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  text-align: center;
  flex-shrink: 0;
}
.logo-text .brand-name {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
}
.logo-text .brand-tagline {
  font-size: 11px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links .nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}
.nav-links .nav-link:hover {
  color: var(--primary);
  background: var(--bg-light);
}
.nav-links .nav-link.active {
  color: var(--primary);
  font-weight: 600;
}
.nav-links .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.nav-links .nav-cta {
  background: var(--primary);
  color: #fff !important;
  border-radius: var(--radius-sm);
  padding: 8px 18px;
  margin-left: 6px;
}
.nav-links .nav-cta:hover {
  background: var(--primary-light) !important;
}
.nav-links .nav-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary);
  cursor: pointer;
  padding: 4px;
}
.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  padding: 12px 2rem;
  background: var(--bg-white);
}
.mobile-menu.open {
  display: block;
}
.mobile-menu a {
  display: block;
  padding: 11px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid #f0f4f8;
}
.mobile-menu a:last-child {
  border-bottom: none;
}
.mobile-menu a.active {
  color: var(--primary);
  font-weight: 600;
}

/* ── WhatsApp Float ─────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 900;
  background: #25d366;
  color: #fff;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: transform var(--transition);
}
.wa-float:hover {
  transform: scale(1.1);
  color: #fff;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 55%,
    var(--primary-light) 100%
  );
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 40px;
  padding-bottom: 60px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 6px 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
}
.hero-heading {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-accent {
  color: #7dd8a4;
}
.hero-subtext {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  line-height: 1.78;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 52px;
  flex-wrap: wrap;
}
.hero-stat .stat-num {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.hero-stat .stat-lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
  display: block;
}
.hero-float-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.float-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  color: #fff;
  min-width: 210px;
}
.float-icon {
  font-size: 22px;
  color: #7dd8a4;
  margin-bottom: 6px;
}
.float-card h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}
.float-card p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* ── Why Cards ───────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.why-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid transparent;
  transition: all var(--transition);
}
.why-card:hover {
  background: var(--bg-white);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
  transform: translateY(-4px);
}
.why-icon {
  width: 52px;
  height: 52px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  margin-bottom: 16px;
}
.why-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── Services Grid ───────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 18px;
}
.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: block;
  color: inherit;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  color: inherit;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.srv-icon {
  width: 54px;
  height: 54px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 14px;
  transition: all var(--transition);
}
.service-card:hover .srv-icon {
  background: var(--primary);
}
.service-card h4 {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  margin: 0;
}

/* ── Service Detail Cards ────────────────────────────────── */
.service-detail-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
  height: 100%;
}
.service-detail-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--primary);
}
.sdc-icon {
  width: 58px;
  height: 58px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
  transition: all var(--transition);
}
.service-detail-card:hover .sdc-icon {
  background: var(--primary);
}
.service-detail-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.service-detail-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.learn-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.learn-more:hover {
  gap: 8px;
  color: var(--primary);
}

/* ── Process Steps ───────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}
.process-step {
  text-align: center;
  padding: 32px 24px;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 52px;
  right: -1px;
  width: 2px;
  height: 40px;
  background: var(--border);
}
.process-num {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 10px;
}
.process-icon {
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  margin: 0 auto 16px;
}
.process-step h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Testimonials ─────────────────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testi-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.testi-stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testi-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
}
.testi-info h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.testi-info p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* ── Blog Cards ──────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: block;
  color: inherit;
}
.blog-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.blog-thumb {
  height: 180px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.blog-emoji {
  font-size: 52px;
  position: relative;
  z-index: 1;
}
.blog-body {
  padding: 22px;
}
.blog-cat {
  display: inline-block;
  background: rgba(43, 168, 74, 0.1);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.blog-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}
.blog-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.68;
  margin-bottom: 16px;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}
.blog-avatar {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
}
.blog-meta .sep {
  opacity: 0.4;
}

/* ── Blog filters ─────────────────────────────────────────── */
.blog-filters-bar {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.blog-filter-form {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.filter-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  min-width: 240px;
}
.filter-search input {
  border: none;
  outline: none;
  font-size: 14px;
  background: transparent;
  width: 100%;
}
.filter-cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-tag {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-tag:hover,
.filter-tag.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* ── Pagination ──────────────────────────────────────────── */
.pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}
.page-btn {
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  transition: background var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.page-btn:hover {
  background: var(--primary-light);
  color: #fff;
}
.page-info {
  font-size: 14px;
  color: var(--text-muted);
}

/* ── Article Detail ──────────────────────────────────────── */
.article-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding-bottom: 80px;
}
.article-header {
  text-align: center;
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
  position: fixed;
}
.article-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
  margin: 16px 0 24px;
}
.article-meta-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.art-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-muted);
}
.tag-pill {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 2px 10px;
  font-size: 12px;
  color: var(--text-muted);
  margin: 0 2px;
}
.article-body h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  margin: 36px 0 14px;
}
.article-body p {
  font-size: 16px;
  color: #374151;
  line-height: 1.85;
  margin-bottom: 20px;
}
.article-body ul {
  font-size: 16px;
  color: #374151;
  line-height: 1.85;
  margin-bottom: 20px;
  padding-left: 24px;
}
.article-body li {
  margin-bottom: 8px;
}
.article-body blockquote {
  background: var(--bg-light);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 28px 0;
  font-style: italic;
}
.author-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 48px 0;
}
.author-avatar {
  width: 56px !important;
  height: 56px !important;
  font-size: 18px !important;
  min-width: 56px;
}
.author-details h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.author-details p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* ── About Hero ──────────────────────────────────────────── */
.about-hero {
  background: var(--bg-light);
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.about-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.2;
}
.about-hero p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 16px;
}
.about-visual {
  background: var(--primary);
  border-radius: var(--radius-xl);
  padding: 36px;
  color: #fff;
}
.av-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.av-item:last-child {
  border-bottom: none;
}
.av-num {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #7dd8a4;
  min-width: 80px;
}
.av-text h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}
.av-text p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* ── Team Cards ──────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.team-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.team-photo {
  height: 180px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-initials {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
}
.team-info {
  padding: 20px;
}
.team-info h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.team-role {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 6px;
}
.team-qual {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── Page Hero ───────────────────────────────────────────── */
.page-hero {
  background: var(--primary);
  padding: 64px 0;
  color: #fff;
}
.page-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin: 14px 0 14px;
}
.page-hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 540px;
  margin: 0 auto;
}
.page-hero .section-tag {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

/* ── Empty State ─────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
}
.empty-state i {
  font-size: 56px;
  margin-bottom: 20px;
  opacity: 0.4;
}
.empty-state h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.empty-state p {
  font-size: 15px;
}

/* ── Contact ─────────────────────────────────────────────── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--primary);
  margin: 14px 0 16px;
  line-height: 1.2;
}
.contact-info > p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 28px;
}
.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.cd-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary);
}
.cd-text h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.cd-text p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}
.cd-text a {
  color: var(--primary);
}

/* ── Forms ───────────────────────────────────────────────── */
.contact-form {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.contact-form h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}
.required {
  color: #ef4444;
}
.hint {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}
.btn-submit {
  width: 100%;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: "DM Sans", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-submit:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
}

/* ── Auth Page ───────────────────────────────────────────── */
.auth-section {
  min-height: calc(100vh - 72px);
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
}
.auth-container {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  width: 100%;
  max-width: 480px;
  box-shadow: var(--shadow-md);
}
.auth-brand {
  text-align: center;
  margin-bottom: 28px;
}
.auth-logo {
  margin: 0 auto 12px;
  width: 56px;
  height: 56px;
  font-size: 18px;
}
.auth-brand h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.auth-brand p {
  font-size: 13px;
  color: var(--text-muted);
}
.auth-tabs {
  display: flex;
  gap: 4px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 4px;
  margin-bottom: 24px;
}
.auth-tab {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 6px;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  font-family: "DM Sans", sans-serif;
}
.auth-tab.active {
  background: var(--bg-white);
  color: var(--primary);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.auth-back {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
}
.auth-back a {
  color: var(--primary);
  font-weight: 500;
}

/* ── Breadcrumb ──────────────────────────────────────────── */
.breadcrumb-bar {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  font-size: 13px;
  flex-wrap: wrap;
}
.breadcrumb-list li {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.breadcrumb-list li a {
  color: var(--primary);
}
.breadcrumb-list li a:hover {
  text-decoration: underline;
}
.breadcrumb-list li:last-child {
  color: var(--text-dark);
  font-weight: 500;
}
.breadcrumb-list .sep {
  color: var(--text-muted);
  opacity: 0.5;
  font-size: 15px;
}

/* ── CTA Strip ───────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
  padding: 72px 0;
  color: #fff;
}
.cta-strip h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 14px;
}
.cta-strip p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
}

/* ── Alerts ──────────────────────────────────────────────── */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.6;
}
.alert-success {
  background: rgba(43, 168, 74, 0.1);
  color: #1a7a38;
  border: 1px solid rgba(43, 168, 74, 0.25);
}
.alert-danger {
  background: rgba(239, 68, 68, 0.1);
  color: #991b1b;
  border: 1px solid rgba(239, 68, 68, 0.25);
}
.alert ul {
  margin: 0;
  padding-left: 18px;
}

/* ── Badge Pills ─────────────────────────────────────────── */
.badge-pill {
  display: inline-block;
  padding: 3px 11px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}
.badge-green {
  background: rgba(43, 168, 74, 0.1);
  color: #1a7a38;
}
.badge-blue {
  background: rgba(11, 61, 107, 0.1);
  color: var(--primary);
}
.badge-gold {
  background: rgba(201, 152, 42, 0.12);
  color: #7a5a0a;
}
.badge-red {
  background: rgba(239, 68, 68, 0.1);
  color: #991b1b;
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--text-dark);
  color: #fff;
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo {
  background: rgba(255, 255, 255, 0.12) !important;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  margin-bottom: 20px;
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}
.footer-bottom a:hover {
  color: #fff;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
  }
  .contact-wrap {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-float-cards {
    display: none;
  }
}
/* ── Navbar mobile fix: match Bootstrap's lg breakpoint (992px) ── */
@media (max-width: 991.98px) {
  .nav-links {
    display: none !important;
  }
  .hamburger {
    display: block !important;
  }
  .nav-container {
    height: 64px;
    padding: 0 1rem;
  }
  .navbar-brand {
    gap: 8px;
  }
  .navbar-logo {
    width: 40px;
    height: 40px;
  }
  .logo-text .brand-name {
    font-size: 13px;
    max-width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .logo-text .brand-tagline {
    font-size: 10px;
  }
  .mobile-menu {
    padding: 8px 1rem 16px;
  }
  .mobile-menu a {
    padding: 13px 4px;
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .process-step:not(:last-child)::after {
    display: none;
  }
  .hero-stats {
    gap: 20px;
  }
  .container-xl {
    padding: 0 1rem;
  }
  .section-pad {
    padding: 56px 0;
  }
}
@media (max-width: 480px) {
  .auth-container {
    padding: 28px 20px;
  }
  .contact-form {
    padding: 24px 20px;
  }
}

/* CSS Reset & Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  color: #333;
  background-color: #fcfcfc;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.btn {
  padding: 10px 24px;
  border-radius: 5px;
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
  border: none;
}
.btn-primary {
  background-color: #1a7a38;
  color: white;
}
.btn-outline {
  background-color: transparent;
  border: 2px solid #1a7a38;
  color: #1a7a38;
}
.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}
.section-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #1a7a38;
  margin: 10px auto 0;
}
section {
  padding: 60px 0;
}

/* Navigation & Header (Section 1) */
header {
  background: white;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 2rem;
}
.logo {
  font-size: 24px;
  font-weight: 700;
  color: #1a7a38;
  display: flex;
  align-items: center;
  gap: 5px;
}
.logo span {
  color: #222;
}
nav > ul {
  display: flex;
  gap: 25px;
}
nav > ul > li {
  position: relative;
  padding: 10px 0;
  cursor: pointer;
  font-weight: 500;
  font-size: 15px;
}
nav > ul > li::after {
  content: " \25BE";
  font-size: 12px;
} /* Dropdown arrow */

/* Dropdown Functionality */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  min-width: 200px;
  padding: 10px 0;
  z-index: 10;
}
nav > ul > li:hover .dropdown-menu {
  display: block;
}
.dropdown-menu li {
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 400;
}
.dropdown-menu li:hover {
  background: #f0fdf4;
  color: #1a7a38;
}
.dropdown-menu li::after {
  content: none;
} /* Remove arrow from inner items */
.profile-icon {
  width: 40px;
  height: 40px;
  background: #f1c40f;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: bold;
}

/* Hero Section (Section 1) */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 0;
  background: #fff;
}
.hero-content {
  flex: 1;
  padding-right: 40px;
}
.hero-content h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1a7a38;
}
.hero-content h1 span {
  color: #283593;
}
.hero-content p {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
}
.hero-buttons {
  display: flex;
  gap: 15px;
}
.hero-image {
  flex: 1;
  text-align: right;
}
.hero-image img {
  max-width: 100%;
  height: auto;
}

/* Pricing Cards (Section 2) */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pricing-card {
  background: white;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
}
.pricing-card h3 {
  font-size: 18px;
  margin-bottom: 20px;
}
.features {
  background: #f4fdf6;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  flex-grow: 1;
}
.features li {
  font-size: 13px;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.features li::before {
  content: "✔";
  color: #1a7a38;
}
.price-area {
  margin-top: auto;
}
.price-label {
  font-size: 12px;
  color: #666;
  font-weight: 600;
}
.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 16px;
  margin-right: 10px;
}
.discount {
  background: #e74c3c;
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 11px;
}
.new-price {
  font-size: 28px;
  font-weight: 700;
  color: #1a7a38;
  margin: 10px 0;
}
.new-price span {
  font-size: 14px;
  font-weight: 400;
  color: #333;
}
.pricing-card .btn {
  width: 100%;
  text-align: center;
}

/* Individual & Startups Grid (Section 3 & 5) */
.service-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.service-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  width: 180px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.service-card img {
  width: 60px;
  margin-bottom: 15px;
}
.service-card h4 {
  font-size: 15px;
}
.center-btn {
  text-align: center;
  margin-top: 20px;
}

/* Business Section Layout (Section 4) */
.business-container {
  display: flex;
  align-items: center;
  gap: 40px;
}
.business-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.biz-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.biz-card h4 {
  margin-bottom: 10px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.biz-card p {
  font-size: 12px;
  color: #666;
}
.business-image {
  flex: 1;
  text-align: center;
}
.business-image img {
  max-width: 80%;
}

/* Testimonials (Section 6) */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimo-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-top: 4px solid #f1c40f;
}
.stars {
  color: #f1c40f;
  margin-bottom: 15px;
}
.testimo-text {
  font-size: 13px;
  color: #555;
  margin-bottom: 20px;
  min-height: 100px;
}
.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.client-info img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ccc;
}
.client-info h5 {
  font-size: 14px;
}

/* Footer Top (Support & Partners) (Section 8) */
.partners-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}
.partner-box {
  background: white;
  border: 1px solid #eaeaea;
  padding: 20px 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.support-box {
  background: white;
  border: 1px solid #eaeaea;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}
.support-icon {
  width: 40px;
  height: 40px;
  background: #f4fdf6;
  color: #1a7a38;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}

/* Dark Footer (Section 8) */
footer {
  background-color: #1a1a1a;
  color: #ccc;
  padding: 60px 0 20px;
  font-size: 13px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.footer-column h4 {
  color: #f1c40f;
  font-size: 15px;
  margin-bottom: 20px;
  font-weight: 600;
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
  display: inline-block;
}
.footer-column ul li {
  margin-bottom: 12px;
}
.footer-column ul li a:hover {
  color: #1a7a38;
}

/* Responsive */
@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .business-container {
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-content {
    padding-right: 0;
    margin-bottom: 30px;
  }
  .hero-buttons {
    justify-content: center;
  }
  /* nav links hidden via .nav-links rule above; site-navbar stays visible */
  .pricing-grid,
  .testimonial-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .partners-grid {
    flex-wrap: wrap;
  }
}

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

:root {
  --green: #1e8c3e;
  --green-dark: #155f2b;
  --green-light: #e8f5ed;
  --green-mid: #2da84f;
  --navy: #0d2240;
  --text: #333;
  --text-light: #666;
  --border: #e0e0e0;
  --white: #fff;
  --bg: #f9fafb;
  --red: #e53935;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: #fff;
}

/* ── NAVBAR ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  background: #fff;
  border-bottom: 3px solid var(--green);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}
.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  border: 3px solid var(--green-mid);
}
.logo-text {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
}
.logo-text span {
  color: var(--green);
}
.nav-links {
  display: flex;
  gap: 0;
  align-items: center;
}
.nav-links a {
  padding: 8px 18px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--green);
}
.nav-links a::after {
  content: "▾";
  font-size: 10px;
  opacity: 0.6;
}
.nav-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-avatar svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

/* ── HERO SLIDER ── */
.hero-slider {
  position: relative;
  overflow: hidden;
}
.hero-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.18, 1);
}
.hero-slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 80px 50px;
  min-height: 480px;
}
.hero-slide:nth-child(1) {
  background: linear-gradient(135deg, #fff 60%, #eaf7ef 100%);
}
.hero-slide:nth-child(2) {
  background: linear-gradient(135deg, #fff 60%, #e8f0fb 100%);
}
.hero-slide:nth-child(3) {
  background: linear-gradient(135deg, #fff 60%, #fef9e7 100%);
}

.hero-text {
  flex: 1;
  max-width: 520px;
}
.hero-subtitle {
  font-size: 22px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 8px;
}
.hero-subtitle span {
  color: var(--green);
}
.hero-title {
  font-family: "Poppins", sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--green);
  line-height: 1.1;
  margin-bottom: 18px;
}
.hero-desc {
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 36px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 6px;
  padding: 11px 26px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
}
.hero-img {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.hero-illustration {
  width: 420px;
  height: 340px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-circle {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  position: absolute;
  right: 20px;
}
.hero-slide:nth-child(1) .hero-circle {
  background: #f0faf3;
}
.hero-slide:nth-child(2) .hero-circle {
  background: #eaf0fc;
}
.hero-slide:nth-child(3) .hero-circle {
  background: #fef9e7;
}
.hero-card {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(30, 140, 62, 0.13);
  padding: 24px 30px;
  min-width: 220px;
  text-align: center;
}
.hero-card-icon {
  font-size: 48px;
  margin-bottom: 8px;
}
.hero-card-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}
.hero-bubble {
  position: absolute;
  top: 30px;
  right: 80px;
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.hero-slide:nth-child(1) .hero-bubble {
  background: #ffa000;
  box-shadow: 0 4px 12px rgba(255, 160, 0, 0.3);
}
.hero-slide:nth-child(2) .hero-bubble {
  background: #1565c0;
  box-shadow: 0 4px 12px rgba(21, 101, 192, 0.3);
}
.hero-slide:nth-child(3) .hero-bubble {
  background: #e53935;
  box-shadow: 0 4px 12px rgba(229, 57, 53, 0.3);
}

/* Dots & Arrows */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 0 8px;
  background: #fff;
}
.dots {
  display: flex;
  gap: 8px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s;
}
.dot.active {
  background: var(--green);
  transform: scale(1.3);
}
.slider-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--green);
  background: #fff;
  color: var(--green);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.slider-arrow:hover {
  background: var(--green);
  color: #fff;
}

/* ── SECTION TITLE ── */
.section-title {
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 40px;
}
.underline-bar {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 40px;
  margin-top: -30px;
}
.underline-bar span {
  display: block;
  height: 4px;
  border-radius: 2px;
}
.underline-bar .u1 {
  width: 40px;
  background: var(--green);
}
.underline-bar .u2 {
  width: 60px;
  background: var(--green-dark);
}

/* ── TAX FILING PLANS ── */
.plans {
  padding: 60px 60px;
  background: var(--bg);
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.plan-card {
  background: #fff;
  border: 2px solid var(--green-light);
  border-radius: 16px;
  padding: 28px 22px;
  box-shadow: 0 2px 16px rgba(30, 140, 62, 0.07);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(30, 140, 62, 0.15);
}
.plan-title {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
}
.plan-features {
  background: var(--green-light);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 20px;
}
.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.4;
}
.plan-feature:last-child {
  margin-bottom: 0;
}
.check {
  color: var(--green);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}
.plan-starts {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 4px;
  font-weight: 500;
}
.plan-original {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
  display: inline;
  margin-right: 8px;
}
.discount-badge {
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  padding: 2px 8px;
  display: inline-block;
}
.plan-price {
  font-family: "Poppins", sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--green);
  margin: 8px 0 16px;
}
.btn-subscribe {
  display: block;
  width: 100%;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-subscribe:hover {
  background: var(--green-dark);
}

/* ── INDIVIDUAL ── */
.individual {
  padding: 60px;
  background: #fff;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 36px;
}
.service-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 32px 18px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.service-card:hover {
  border-color: var(--green);
  box-shadow: 0 8px 24px rgba(30, 140, 62, 0.12);
  transform: translateY(-4px);
}
.service-icon {
  font-size: 46px;
  margin-bottom: 14px;
}
.service-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}
.view-more-wrap {
  text-align: center;
}

/* ── BUSINESS ── */
.business {
  padding: 60px;
  background: var(--bg);
}
.business-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.business-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  flex: 1;
}
.biz-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
  transition: all 0.2s;
}
.biz-card:hover {
  box-shadow: 0 8px 24px rgba(30, 140, 62, 0.13);
  transform: translateY(-3px);
}
.biz-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.biz-card-icon {
  font-size: 22px;
}
.biz-card-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.55;
}
.business-illus {
  flex: 0 0 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.biz-illus-box {
  width: 260px;
  height: 300px;
  background: linear-gradient(145deg, #e8f5ed, #c8e8d4);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 90px;
}

/* ── STARTUPS ── */
.startups {
  padding: 60px;
  background: #fff;
}
.startup-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto 36px;
}
.startup-card {
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 30px 24px;
  transition: all 0.2s;
  cursor: pointer;
}
.startup-card:hover {
  border-color: var(--green);
  box-shadow: 0 8px 24px rgba(30, 140, 62, 0.1);
}
.startup-card-icon {
  font-size: 40px;
  margin-bottom: 14px;
}
.startup-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.startup-card-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 18px;
}
.btn-know {
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-know:hover {
  background: var(--green-dark);
}

/* ── WHY TAXMANAGER ── */
.why {
  padding: 60px;
  background: var(--bg);
}
.why-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  flex: 1;
}
.why-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
}
.why-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.why-card-icon {
  font-size: 26px;
}
.why-card-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.55;
}
.why-illus {
  flex: 0 0 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.why-illus-box {
  width: 260px;
  height: 290px;
  background: linear-gradient(145deg, #e8f5ed, #c8e8d4);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 90px;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 60px;
  background: #fff;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 36px;
}
.testi-card {
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: box-shadow 0.2s;
}
.testi-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.stars {
  color: #ffa000;
  font-size: 18px;
  margin-bottom: 14px;
}
.testi-text {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 18px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.testi-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

/* ── FEATURED IN ── */
.featured {
  padding: 40px 60px;
  background: var(--bg);
}
.featured-logos {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 12px;
}
.featured-logo {
  background: #fff;
  border-radius: 10px;
  padding: 14px 28px;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 15px;
  color: #444;
}
.featured-logo.money {
  color: #c62828;
}
.featured-logo.mc {
  color: #2e7d32;
}
.featured-logo.bs {
  color: #1565c0;
}

/* ── BLOGS ── */
.blogs {
  padding: 60px;
  background: #fff;
}
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.blog-card {
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
}
.blog-card:hover {
  box-shadow: 0 8px 24px rgba(30, 140, 62, 0.12);
  transform: translateY(-4px);
}
.blog-img {
  height: 150px;
  background: linear-gradient(135deg, #c8e8d4, #a5d6b0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
}
.blog-body {
  padding: 18px;
}
.blog-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.4;
}
.blog-date {
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 8px;
}
.blog-desc {
  font-size: 12.5px;
  color: var(--text-light);
  line-height: 1.55;
}

/* ── FAQ ── */
.faq {
  padding: 60px;
  background: var(--bg);
}
.faq-list {
  max-width: 860px;
  margin: 0 auto;
}
.faq-item {
  margin-bottom: 12px;
  border-radius: 8px;
  overflow: hidden;
}
.faq-q {
  background: var(--green);
  color: #fff;
  padding: 16px 20px;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-q.closed {
  background: var(--green-light);
  color: var(--navy);
}
.faq-a {
  background: #fff;
  padding: 16px 20px;
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.65;
  border: 1.5px solid var(--green-light);
  border-top: none;
}
.faq-a ul {
  padding-left: 18px;
  margin-top: 8px;
}
.faq-a li {
  margin-bottom: 4px;
}

/* ── PARTNERSHIP ── */
.partnership {
  padding: 50px 60px;
  background: #fff;
}
.partner-logos {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 12px;
}
.partner-logo {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  min-width: 160px;
  min-height: 64px;
}
.partner-logo.hdfc {
  color: #1565c0;
}
.partner-logo.au {
  color: #7b1fa2;
}
.partner-logo.easy {
  color: #1b5e20;
}

/* ── SUPPORT ── */
.support {
  padding: 50px 60px;
  background: var(--bg);
}
.support-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.support-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
}
.support-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.support-icon.email {
  background: #e3f2fd;
}
.support-icon.phone {
  background: #e8f5e9;
}
.support-icon.chat {
  background: #f3e5f5;
}
.support-label {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 2px;
}
.support-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

/* ── FOOTER ── */
footer {
  background: #111;
  color: #ccc;
  padding: 50px 60px 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
.footer-col-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.footer-sub-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  margin: 10px 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-link {
  display: block;
  font-size: 12.5px;
  color: #aaa;
  text-decoration: none;
  margin-bottom: 5px;
  transition: color 0.2s;
}
.footer-link:hover {
  color: var(--green);
}
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
  font-size: 12.5px;
  color: #666;
}

/* Utilities */
.center {
  text-align: center;
}
.mt-8 {
  margin-top: 8px;
}
.mt-16 {
  margin-top: 16px;
}

/* ── Team grid: centered layout for 2 cards ── */
.team-grid--centered {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.team-grid--centered .team-card {
  width: 240px;
  flex-shrink: 0;
}
.hero-slider-wrap {
  overflow: hidden; /* ← clips all slides that are off-screen */
  position: relative;
}
/* ══════════════════════════════════════════════════════════════
   MOBILE HAMBURGER MENU FIX
   — Shows hamburger & hides desktop nav-links on small screens
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* 1. Show the hamburger button */
  .hamburger {
    display: block;
  }

  /* 2. Hide desktop nav-links (both navbar systems) */
  .site-navbar .nav-links,
  .nav-container .nav-links {
    display: none !important;
  }

  /* 3. Mobile menu panel: full-width, proper stacking */
  .mobile-menu {
    position: absolute;
    top: 72px; /* matches .nav-container height */
    left: 0;
    right: 0;
    width: 100%;
    background: var(--bg-white);
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 8px 1.5rem 16px;
  }

  /* 4. Make the site-navbar position:relative so the
        absolute mobile-menu positions against it */
  .site-navbar {
    position: sticky; /* keep sticky scrolling */
    overflow: visible; /* allow dropdown to escape */
  }

  /* 5. Each link gets a comfortable tap target */
  .mobile-menu a {
    display: block;
    padding: 13px 4px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    border-bottom: 1px solid #f0f4f8;
  }
  .mobile-menu a:last-child {
    border-bottom: none;
  }
  .mobile-menu a.active,
  .mobile-menu a:hover {
    color: var(--primary);
  }

  /* 6. Slide 2 hero-poster: constrain on mobile so it
        doesn't overflow on small screens */
  .hero-poster {
    max-height: 220px;
    width: 100%;
    object-fit: contain;
  }
}
