/* =========================
   Global Styles
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    overflow-x: hidden;
}

html{
    scroll-behavior:smooth;
}
body {
    position: relative;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    transition: background 0.3s ease, color 0.3s ease;
}
body::before{
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(37,99,235,0.06), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(59,130,246,0.05), transparent 45%);
  pointer-events: none;
  z-index: -1;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ===============================
   GST SERVICE PAGE - PREMIUM UI
================================ */

/* ---------- THEME VARIABLES ---------- */

:root{
  --primary: #2563eb;
  --accent: #3b82f6;

  --bg: #f5f7fb;
  --section-bg: #ffffff;
  --card-bg: #ffffff;

  --text: #1e293b;
  --text-light: #64748b;

  --border: #e2e8f0;
  --shadow: 0 10px 30px rgba(0,0,0,0.06);

  /* Compliance Colors */
  --due-color:#f59e0b;
  --annual-color:#2563eb;
  --audit-color:#6366f1;
  --late-color:#ef4444;
}

/* DARK MODE */
body.dark{
  --primary:#D4AF37;
  --accent:#facc15;

  --bg:#0f172a;
  --section-bg:#111827;
  --card-bg:#1e293b;

  --text:#f1f5f9;
  --text-light:#94a3b8;

  --border:#334155;
  --shadow:0 10px 30px rgba(0,0,0,0.4);

  /* Compliance Colors Dark */
  --due-color:#fbbf24;
  --annual-color:#60a5fa;
  --audit-color:#818cf8;
  --late-color:#f87171;
}


/* ---------- GLOBAL ---------- */

.service-section,
.incometax-section,
.payroll-section,
.compliance-section,
.tds-section,
.bank-section{
  padding: 90px 20px;
  background: var(--bg);
}

.service-section h1,
.incometax-section h1,
.payroll-section h1,
.compliance-section h1,
.tds-section h1,
.bank-section h1{
  text-align: center;
  font-size: 38px;
  letter-spacing: -0.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 25px;
}

.service-section h1 span,
.incometax-section h1 span,
.payroll-section h1 span,
.compliance-section h1 span,
.tds-section h1 span,
.bank-section h1 span{
  color: var(--primary);
}


.sub-text{
  max-width: 800px;
  margin: 0 auto 18px auto;
  text-align: center;
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
}

/* Authority Note */
.authority-note {
    max-width: 850px;
    margin: 0 auto 50px auto;
    padding: 18px 25px;
    border-left: 4px solid var(--accent);
    background: var(--card-bg);
    border-radius: 8px;
    font-size: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.sub-text a,
.mission-card a,
.compliance-card a,
.gst-timeline-content a,
.tds-section a,
.tax-timeline .timeline-content a,
.service-line a,
.faq-section a,
.seo-support-text a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  position: relative;
}

.sub-text a::after,
.mission-card a::after,
.compliance-card a::after,
.gst-timeline-content a::after,
.tds-section a::after,
.tax-timeline .timeline-content a::after,
.service-line a::after,
.faq-section a::after,
.seo-support-text a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: 0.3s;
}

.sub-text a:hover::after,
.mission-card a:hover::after,
.compliance-card a:hover::after,
.gst-timeline-content a:hover::after,
.tds-section a:hover::after,
.tax-timeline .timeline-content a:hover::after,
.service-line a:hover::after,
.faq-section a:hover::after,
.seo-support-text a:hover::after {
  transform: scaleX(1);
}
/* ---------- CARDS GRID ---------- */

.mission-wrapper{
  padding: 60px 20px;
  margin-top: 70px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;

  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- CARD DESIGN ---------- */

.mission-card{
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 40px 32px;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
  isolation:isolate;
}
body.dark .mission-card{
  background: rgba(30,41,59,0.85);
}

/* hover effect */
.mission-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.10);
}

body.dark .mission-card:hover{
  box-shadow: 0 20px 50px rgba(0,0,0,0.10);
}

/* animated top border */
.mission-card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  transition: width 0.4s ease;
  pointer-events: none;
}


.mission-card h3{
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--text);
  position: relative;
}

.mission-card p{
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 15px;
}

.mission-card ul{
  padding-left: 18px;
  margin-top:10px;
}

.mission-card ul li{
  margin-bottom: 10px;
  font-size: 14.5px;
  color: var(--text-light);
}

.mission-card:hover::before{
  width: 100%;
}
.mission-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
      120deg,
      transparent,
      rgba(255,255,255,0.08),
      transparent
  );
  opacity:0;
  transition:opacity .4s ease;
  pointer-events: none;
}

.mission-card:hover::after{
  opacity:1;
}

/* ---------- GST TIMELINE SECTION ---------- */

.gst-timeline-section{
  padding:100px 0;
  background:var(--section-bg);
}

/* Title */

.timeline-title{
  text-align:center;
  font-size:36px;
  font-weight:700;
  margin-bottom:12px;
  color:var(--text);
}

.timeline-subtext{
  text-align:center;
  max-width:650px;
  margin:auto;
  margin-bottom:70px;
  color:var(--text-light);
  font-size:16px;
}

/* Timeline container */

.gst-timeline{
  position:relative;
  max-width:900px;
  margin:auto;
  padding-left:110px;
}

/* Vertical line */

.gst-timeline::before{
  content:"";
  position:absolute;
  left:40px;
  top:0;
  width:3px;
  height:100%;
  background:linear-gradient(
    to bottom,
    var(--border),
    var(--border),
    transparent
  );
}

/* Timeline item */

.timeline-item{
  position:relative;
  margin-bottom:55px;
}

/* Circle */

.timeline-date{
  position:absolute;
  left:12px;
  top:0;
  width:52px;
  height:52px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:17px;
  color:#fff;
  box-shadow:0 6px 18px rgba(0,0,0,0.15);
  border:4px solid var(--section-bg);
  z-index:2;
}

/* Content Card */

.timeline-content{
  background:var(--card-bg);
  padding:24px 28px;
  border-radius:14px;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  transition:all 0.35s ease;
  position:relative;
}

/* Card hover */

.timeline-content:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(0,0,0,0.08);
  border-color:var(--primary);
}

/* Heading */

.timeline-content h4{
  margin-bottom:10px;
  color:var(--text);
  font-size:19px;
  font-weight:600;
}

/* Paragraph */

.timeline-content p{
  color:var(--text-light);
  margin-bottom:6px;
  font-size:15px;
}

/* Status Colors */

.timeline-date.due{
  background:var(--due-color);
}

.timeline-date.annual{
  background:var(--annual-color);
}

.timeline-date.audit{
  background:var(--audit-color);
}

.timeline-date.late{
  background:var(--late-color);
}

/* Text highlight */

.due-text{
  color:var(--due-color);
  font-weight:600;
}

.late-text{
  color:var(--late-color);
  font-weight:600;
}

/* Service line */

.service-line{
  margin-top:10px;
  font-size:14px;
  font-weight:500;
  color:var(--primary);
  display:flex;
  align-items:center;
  gap:6px;
}

.service-line::before{
  content:"✔";
  color:#22c55e;
  font-weight:700;
  font-size:15px;
}


/* =========================
   INCOME TAX DUE DATES
========================= */

.tax-dates-section{
  padding:90px 0;
  background:var(--section-bg);
}

.tax-dates-section h2{
  text-align:center;
  margin-bottom:50px;
  font-size:32px;
  color:var(--text);
}
/* Timeline container */

.tax-timeline{
  position:relative;
  max-width:700px;
  margin:auto;
}

/* vertical line */

.tax-timeline::before{
  content:"";
  position:absolute;
  left:17px;
  top:0;
  bottom:0;
  width:3px;
  height:100%;
  background:var(--border);
}

/* timeline item */

.timeline-item{
  position:relative;
  margin-bottom:40px;
  padding-left:60px;
}

/* dot */

.timeline-dot{
  position:absolute;
  left:7px;
  top:10px;
  width:20px;
  height:20px;
  border-radius:50%;
  background:var(--primary);
  border:3px solid var(--card-bg);
  box-shadow:0 0 0 4px rgba(37,99,235,0.15);
}

/* card */

.timeline-content{
  background:var(--card-bg);
  padding:22px 26px;
  border-radius:12px;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  transition:all .3s ease;
}

/* hover */

.timeline-content:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 40px rgba(0,0,0,0.10);
}

/* heading */

.timeline-content h3{
  margin-bottom:8px;
  font-size:18px;
  color:var(--text);
}
.due-date,
.timeline-content .late-date{
  color: var(--due-color);
  font-weight: 700;
  letter-spacing: 0.2px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 4px;
  margin-right: 5px;
  display: inline-block;
}
.due-date.on-time {
  color: var(--due-color);       /* Greenish / before due date */
  background-color: rgba(245, 158, 11, 0.1); /* Light background variant */
}

.due-date.due-soon {
  color: var(--annual-color);    /* Orange/Blue for due date */
  background-color: rgba(37, 99, 235, 0.1); /* Light background variant */
}

.due-date.late {
  color: var(--late-color);      /* Red for late fee */
  background-color: rgba(239, 68, 68, 0.1); /* Light background variant */
}

.late-date,
.timeline-content .late-date {
  color: var(--late-color);
  font-weight: 600;
  letter-spacing: 0.2px;
}

.due-note{
  margin-top:20px;
  padding:14px 18px;
  border-left:4px solid var(--accent);
  background:color-mix(in srgb, var(--accent) 12%, transparent);
  font-size:15px;
  line-height:1.6;
  color:var(--text);
  border-radius:6px;
}

/* =========================
   MCA & ROC Compliance Section
========================= */

/* ---------- Card Container ---------- */
.roc-compliance {
  text-align: center; /* center headings and paragraphs */
  margin: 60px auto;
}

.roc-compliance h2 {
  font-size: 32px;
  color: var(--text);
  margin-bottom: 15px;
}

.roc-compliance p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 30px;
  text-align: center; /* center paragraph */
}

/* ---------- Compliance Card ---------- */
.roc-compliance .compliance-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow);
  margin: auto;
  max-width: 1000px;
  overflow-x: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.roc-compliance .compliance-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* ---------- Compliance Table ---------- */
.compliance-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 16px;
  color: var(--text);
  min-width: 600px;
  margin-bottom: 20px;
}

.compliance-table th,
.compliance-table td {
  padding: 14px 18px;
  text-align: center; /* center table content */
  border-bottom: 1px solid var(--border);
}

.compliance-table th {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}

.compliance-table tbody tr:nth-child(even) {
  background: rgba(59,130,246,0.05);
}

.compliance-table tbody tr:hover {
  background: rgba(59,130,246,0.12);
}

/* Rounded corners for table header */
.compliance-table th:first-child {
  border-top-left-radius: 12px;
}

.compliance-table th:last-child {
  border-top-right-radius: 12px;
}

/* DEADLINE NOTE FIXED */
.deadline-note {
  display: center;
  align-items: center;
  gap: 10px;

  width: fit-content;              
  max-width: 700px;          
  margin: 15px auto;          

  padding: 12px 14px;

  border-left: 4px solid var(--accent);
  background: rgba(37, 99, 235, 0.05);

  border-radius: 8px;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
  
}

/* ICON */
.deadline-note i {
  color: var(--accent);
  font-size: 1rem;
  margin-top: 3px; /* ✅ aligns nicely with first text line */
}

/* HOVER */
.deadline-note:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* LINK */
.deadline-note a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
}

/* DARK MODE */
body.dark .deadline-note {
  background: rgba(255, 255, 255, 0.05);
}
/* ---------- Due Tags ---------- */
.due-tag {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  min-width: 90px;
}

.due-tag.upcoming { background-color: var(--annual-color);font-weight: 600; }   /* Upcoming > 30 days */
.due-tag.due-soon { background-color: var(--due-color);font-weight: 600; } /* Due < 30 days */
.due-tag.overdue { background-color: var(--late-color);font-weight: 600; }    /* Overdue */

/* ---------- Quick Tips Box ---------- */
.quick-tips {
  background: rgba(59,130,246,0.08);
  border-left: 4px solid var(--primary);
  border-radius: 16px;
  padding: 20px;
  margin-top: 25px;
  text-align: left; /* left-align tips for readability */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.quick-tips h4 {
  margin-bottom: 12px;
  font-size: 18px;
  color: var(--primary);
}

.quick-tips ul {
  margin: 0;
  padding-left: 20px;
}

.quick-tips li {
  margin-bottom: 8px;
  color: var(--text-light);
}
/* -------------------- TDS Deadlines Section -------------------- */
.tds-deadlines {
  margin-top: 50px;
  text-align: center;
  padding: 0 15px;
}

.tds-deadlines h2 {
  font-size: 30px;
  color: var(--text);
  margin-bottom: 30px;
  font-weight: 700;
}

/* Table Styling */
.deadline-table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.deadline-table th,
.deadline-table td {
  padding: 14px 20px;
  text-align: center;
  font-size: 16px;
  border-bottom: 1px solid var(--border);
}

.deadline-table th {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}

/* Gradient highlights per quarter (Light Mode) */
.deadline-table tr:nth-child(1) td {
  background: linear-gradient(90deg, #ffe8d6, #ffd2a6);
}

.deadline-table tr:nth-child(2) td {
  background: linear-gradient(90deg, #d0ebff, #a5d8ff);
}

.deadline-table tr:nth-child(3) td {
  background: linear-gradient(90deg, #e7f5ff, #a5d8ff);
}

.deadline-table tr:nth-child(4) td {
  background: linear-gradient(90deg, #f0fdfa, #a5f5d0);
}

/* Hover effect */
.deadline-table tr:hover td {
  background-color: var(--accent);
  color: var(--text);
  transition: 0.3s;
}

/* -------------------- Dark Mode Gradients -------------------- */
body.dark .deadline-table th {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

body.dark .deadline-table tr:nth-child(1) td {
  background: linear-gradient(90deg, #5c3d00, #8a5e1e);
}

body.dark .deadline-table tr:nth-child(2) td {
  background: linear-gradient(90deg, #003f5c, #1a6f91);
}

body.dark .deadline-table tr:nth-child(3) td {
  background: linear-gradient(90deg, #001f3f, #004080);
}

body.dark .deadline-table tr:nth-child(4) td {
  background: linear-gradient(90deg, #00331a, #006633);
}

/* ===============================
   COMPLIANCE SECTION (THEME BASED)
================================ */

.compliance-section {
  padding: 80px 20px;
  background: var(--bg);
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 40px;
}

/* GRID */
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* CARD */
.compliance-card {
  background: var(--card-bg);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* GLOW EFFECT (THEME BASED) */
.compliance-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, var(--accent), transparent 70%);
  opacity: 0;
  transition: 0.4s;
}

.compliance-card:hover::before {
  opacity: 0.12;
}

.compliance-card:hover {
  transform: translateY(-6px) scale(1.01);
}

/* HEADER */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-header h3 {
  color: var(--text);
  font-size: 1.1rem;
}

/* ICON */
.toggle-icon {
  font-size: 1.4rem;
  color: var(--text-light);
  transition: 0.3s;
}

/* CONTENT */
.card-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ACTIVE STATE */
.compliance-card.active .card-content {
  max-height: 300px;
  margin-top: 15px;
}

.compliance-card.active .toggle-icon {
  transform: rotate(45deg);
  color: var(--accent);
}

/* LIST */
.compliance-card ul {
  padding-left: 18px;
}

.compliance-card li {
  margin-bottom: 8px;
}

/* ===============================
   COLOR VARIANTS (KEY FEATURE 🔥)
================================ */

.compliance-card.due {
  border-left: 4px solid var(--due-color);
}

.compliance-card.audit {
  border-left: 4px solid var(--audit-color);
}

.compliance-card.late {
  border-left: 4px solid var(--late-color);
}

.compliance-card.highlight {
  border-left: 4px solid var(--accent);
}

/* ===============================
   NOTE BOX
================================ */

.compliance-note {
  margin-top: 30px;
  padding: 15px;
  border-left: 4px solid var(--accent);
  background: rgba(0,0,0,0.03);
  border-radius: 10px;
  color: var(--text-light);
}

/* DARK MODE FIX */
body.dark .compliance-note {
  background: rgba(255,255,255,0.05);
}

/* ===============================
   FINAL ULTRA TABLE (CLEAN)
================================ */

.ultra-wrap {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

/* SOFT GLOW BORDER */
.ultra-wrap::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 16px;

  background: linear-gradient(
    120deg,
    transparent,
    var(--accent),
    transparent
  );

  opacity: 0;
  transition: 0.4s ease;
  z-index: 0;
}

.ultra-wrap:hover::before {
  opacity: 0.6;
  filter: blur(6px);
}

/* TABLE */
.ultra-table {
  position: relative;
  z-index: 1;

  width: 100%;
  border-collapse: collapse;
  border-radius: 14px;
  overflow: hidden;

  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);

  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

/* SUBTLE HOVER (NOT TOO MUCH) */
.ultra-table:hover {
  transform: translateY(-4px);
}

/* HEADER */
.ultra-table th {
  padding: 13px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-size: 0.9rem;
}

/* CELLS */
.ultra-table td {
  padding: 12px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  transition: 0.2s ease;
}

/* ROW HOVER (CLEAN) */
.ultra-table tbody tr:hover td {
  background: rgba(37, 99, 235, 0.05);
}

/* IMPORTANT VALUES */
.ultra-table .highlight {
  color: var(--late-color);
  font-weight: 600;
}

/* BADGE (LESS AGGRESSIVE) */
.tds-col::after {
  content: "Strict";
  position: absolute;
  top: 6px;
  right: 8px;

  font-size: 0.6rem;
  padding: 2px 6px;
  border-radius: 5px;

  background: var(--late-color);
  color: #fff;
}

/* ALERT BOX CLEAN */
.tds-warning,
.tds-example {
  max-width: 650px;
  margin: 20px auto;
  padding: 12px 14px;

  border-radius: 8px;
  font-size: 0.9rem;

  transition: 0.25s ease;
}

/* COLORS */
.tds-warning {
  border-left: 4px solid var(--late-color);
  background: rgba(239, 68, 68, 0.06);
}

.tds-example {
  border-left: 4px solid var(--accent);
  background: rgba(37, 99, 235, 0.05);
}

/* SUBTLE HOVER */
.tds-warning:hover,
.tds-example:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* DARK MODE */
body.dark .ultra-table {
  background: rgba(30,41,59,0.7);
}

body.dark .ultra-table tbody tr:hover td {
  background: rgba(255,255,255,0.05);
}

body.dark .tds-warning,
body.dark .tds-example {
  background: rgba(255,255,255,0.04);
}

/* ---------- FAQ SECTION ---------- */

.faq-section{
  padding: 80px 20px;
  background: var(--section-bg);
}

.faq-section h2{
  text-align: center;
  font-size: 30px;
  margin-bottom: 50px;
  color: var(--text);
}

.faq-item{
  max-width: 850px;
  margin: 0 auto 25px auto;
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.04);
}

.faq-item:hover{
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.faq-item h4{
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--text);
}

.faq-item p{
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ---------- CTA SECTION ---------- */

.service-cta{
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(135deg, var(--primary), #1e40af);
  color:var(--text);
  position: relative;
  overflow: hidden;
}

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

.service-cta p{
  font-size: 16px;
  max-width: 650px;
  margin: 0 auto 35px auto;
  opacity: 0.95;
  line-height: 1.6;
}
.service-cta::before{
  content:"";
  position:absolute;
  width:300px;
  height:300px;
  background:rgba(255,255,255,0.08);
  border-radius:50%;
  top:-80px;
  right:-80px;
}

/* ===============================
   PREMIUM CTA BUTTON
================================= */

.btn-ctaa{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 15px 38px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;

  background: linear-gradient(135deg, var(--primary), #2563eb);
  color: #ffffff;

  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;

  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35);
}

/* Shine Effect */
.btn-ctaa::before{
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      120deg,
      rgba(255,255,255,0.3),
      rgba(255,255,255,0.05),
      rgba(255,255,255,0.3)
  );
  transition: all 0.6s ease;
}

.btn-ctaa:hover::before{
  left: 100%;
}

/* Hover */
.btn-ctaa:hover{
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.5);
}

/* Active Click */
.btn-ctaa:active{
  transform: scale(0.97);
}

/* Large Version */
.large-btnn{
  font-size: 17px;
  padding: 18px 48px;
}


/* Dark Mode Adjustment */
body.dark .btn-ctaa{
  box-shadow: 0 10px 30px rgba(59,130,246,0.4);
}

body.dark .btn-ctaa:hover{
  box-shadow: 0 20px 45px rgba(59,130,246,0.6);
}
/* =========================
   AUTHORITY SECTION – PREMIUM
========================= */

.authority-section {
    padding: 100px 0;
    background: linear-gradient(
        to bottom,
        var(--section-bg),
        var(--bg)
    );
    position: relative;
}

.authority-section h2 {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.authority-section .sub-text {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
    color: var(--text);
    opacity: 0.75;
    font-size: 15px;
}

/* Grid Layout */
.authority-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

/* Card Design */
.authority-card {
    background: var(--card-bg);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border:1px solid var(--border);
    position: relative;
    overflow: hidden;
}

/* Subtle Top Accent Line */
.authority-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Hover Effect */
.authority-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.authority-card:hover::before {
    opacity: 1;
}

/* Card Title */
.authority-card h3 {
    font-size: 19px;
    margin-bottom: 14px;
    font-weight: 600;
}

/* Link Styling */
.authority-card h3 a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

/* Smooth Underline Animation */
.authority-card h3 a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -5px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.authority-card h3 a:hover::after {
    width: 100%;
}

.authority-card h3 a:hover {
    color: var(--accent);
}

/* Paragraph */
.authority-card p {
    font-size: 14.5px;
    line-height: 1.7;
    opacity: 0.85;
}

/* Dark Mode Support */
body.dark .authority-card {
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
}

body.dark .authority-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

body.dark .authority-section {
    background: linear-gradient(
        to bottom,
        #111827,
        #0f172a
    );
}

.seo-support-text {
    margin: 60px auto 0;
    padding-top: 20px;
    max-width: 850px;
    font-size: 14px;
    line-height: 1.7;
    text-align: center;
    color: var(--text-light);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}
/* ===============================
   SCROLL REVEAL ANIMATIONS
================================ */

/* Initial hidden state */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

/* Active visible state */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Slight zoom variation */
.reveal-zoom {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-zoom.active {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delay helpers */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }
.delay-8 { transition-delay: 0.8s; }


/* ===============================
   TABLET OPTIMIZATION
================================ */
@media (min-width: 769px) and (max-width: 1024px){

  .service-section{
    padding: 70px 25px;
  }

  .service-section h1{
    font-size: 32px;
  }

  .sub-text{
    font-size: 16px;
  }

  /* Force 2 columns for better balance */
  .mission-wrapper{
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 50px 20px;
  }

  .mission-card{
    padding: 30px;
  }

  .faq-section{
    padding: 70px 25px;
  }

  .faq-item{
    padding: 24px;
  }

  .service-cta{
    padding: 80px 25px;
  }

  .service-cta h2{
    font-size: 26px;
  }
  .reveal,
  .reveal-zoom{
    transition-duration: 0.6s;
  }
}

/* ===============================
   MOBILE OPTIMIZATION
================================ */
@media (max-width: 768px){

  .service-section{
    padding: 60px 15px;
  }

  .service-section h1{
    font-size: 26px;
    line-height: 1.3;
  }

  .sub-text{
    font-size: 15px;
  }

  /* Single column */
  .mission-wrapper{
    grid-template-columns: 1fr;
    padding: 35px 15px;
    gap: 20px;
  }

  .mission-card{
    padding: 22px;
    border-radius: 14px;
  }

  .mission-card h3{
    font-size: 18px;
  }

  .mission-card p,
  .mission-card ul li{
    font-size: 14px;
  }
  .gst-timeline{
    padding-left:80px;
  }

  .gst-timeline::before{
    left:32px;
  }

  .timeline-item{
    margin-bottom:45px;
  }

  .timeline-date{
    left:6px;
    width:44px;
    height:44px;
    font-size:15px;
  }

  .timeline-content{
    padding:18px 20px;
  }

  .timeline-title{
    font-size:28px;
  }
  .tax-dates-section{
    padding:70px 20px;
  }

  .tax-dates-section h2{
    font-size:26px;
  }

  .due-dates li{
    padding:18px 20px;
  }
  .faq-section{
    padding: 60px 15px;
  }

  .faq-section h2{
    font-size: 22px;
  }

  .faq-item{
    padding: 20px;
  }

  .service-cta{
    padding: 70px 20px;
  }

  .service-cta h2{
    font-size: 22px;
  }

  .service-cta p{
    font-size: 14.5px;
  }

  .btn-ctaa{
    width: 100%;
    max-width: 280px;
  }
  .reveal,
  .reveal-zoom{
    transition-duration: 0.6s;
  }
  .roc-compliance h2 {
    font-size: 26px;
  }
  .roc-compliance p {
    font-size: 15px;
  }
  .compliance-table th, .compliance-table td {
    padding: 10px 12px;
    font-size: 14px;
  }
  .quick-tips h4 {
    font-size: 16px;
  }
  .deadline-table thead {
    display: none;
  }

  .deadline-table, 
  .deadline-table tbody, 
  .deadline-table tr, 
  .deadline-table td {
    display: block;
    width: 100%;
  }

  .deadline-table tr {
    margin-bottom: 15px;
    background: var(--section-bg);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-radius: 10px;
    padding: 15px;
  }

  .deadline-table td {
    text-align: left;
    padding: 10px 15px;
    position: relative;
    font-size: 15px;
  }

  .deadline-table td::before {
    content: attr(data-label);
    font-weight: 600;
    text-transform: uppercase;
    width: 120px;
    display: inline-block;
    color: var(--text-light);
  }
}