/* ============================================================
   ROX GST & IT SERVICES — Main Stylesheet
   Brand: Orange #f08a25 | Green #149346 | Dark #0d1117
   Fonts: Poppins | DM Sans | Bebas Neue
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --orange: #f08a25;
  --green: #149346;
  --dark: #00390c;
  --light-bg: #f8f9fa;
  --text-dark: #1a1a2e;
  --text-muted: #6c757d;
  --white: #ffffff;
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --card-shadow-hover: 0 12px 40px rgba(240, 138, 37, 0.18);
  --border-radius: 12px;
  --gradient: linear-gradient(135deg, #f08a25 0%, #149346 100%);
  --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #00390c 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

/* ---------- Utility ---------- */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.section-title span {
  color: var(--orange);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 3rem;
}

.green-underline {
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
}

.green-underline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gradient);
  border-radius: 2px;
}

.btn-orange {
  background: var(--gradient);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-orange:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(240, 138, 37, 0.35);
  filter: brightness(1.08);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  color: var(--white);
  transform: scale(1.03);
}

/* ==================== NAVBAR ==================== */
.navbar-rox {
  background: transparent;
  padding: 1rem 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  z-index: 1000;
}

.navbar-rox.scrolled {
  background: var(--white) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 0.6rem 0;
}

.navbar-rox.scrolled .nav-link {
  color: var(--text-dark) !important;
}

.navbar-rox.scrolled .navbar-brand .brand-text {
  color: var(--text-dark);
}

.navbar-brand .brand-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.navbar-brand .brand-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  line-height: 1.2;
}

.navbar-brand .brand-sub {
  font-size: 0.65rem;
  font-weight: 400;
  opacity: 0.8;
  letter-spacing: 0.5px;
}

.nav-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9) !important;
  padding: 0.4rem 0.9rem !important;
  position: relative;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s ease, left 0.3s ease;
  border-radius: 1px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 70%;
  left: 15%;
}

.nav-link:hover {
  color: var(--orange) !important;
}

.navbar-toggler {
  border: none;
  outline: none !important;
  box-shadow: none !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-rox.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2826,26,46,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ==================== HERO ==================== */
.hero-section {
  min-height: 100vh;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-bg-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(240, 138, 37, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(20, 147, 70, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse at 60% 80%, rgba(240, 138, 37, 0.06) 0%, transparent 50%);
}

/* Geometric grid pattern */
.hero-bg-mesh::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240, 138, 37, 0.15);
  border: 1px solid rgba(240, 138, 37, 0.3);
  color: var(--orange);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero-h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.hero-h1 .highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero illustration */
.hero-illustration {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-svg-wrap {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  position: relative;
}

.hero-card-float {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: absolute;
  min-width: 180px;
}

.hero-card-float.card-1 {
  top: 10%;
  right: -10%;
  animation: float1 4s ease-in-out infinite;
}

.hero-card-float.card-2 {
  bottom: 15%;
  left: -8%;
  animation: float2 5s ease-in-out infinite;
}

.hero-card-float .fc-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.hero-card-float .fc-text strong {
  display: block;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
}

.hero-card-float .fc-text span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

@keyframes float1 {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(10px);
  }
}

/* Shield SVG illustration */
.shield-container {
  position: relative;
  width: 280px;
  height: 320px;
  margin: 60px auto;
}

.shield-outer {
  width: 280px;
  height: 320px;
  position: absolute;
  top: 0;
  left: 0;
}

.shield-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 138, 37, 0.15) 0%, transparent 70%);
  animation: shield-pulse 2.5s ease-in-out infinite;
}

@keyframes shield-pulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.3;
  }
}

/* ==================== STATS BAR ==================== */
.stats-section {
  background: var(--dark);
  padding: 0;
  position: relative;
}

.stats-bar {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--orange), var(--green)) 1;
  padding: 2.5rem 0;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  opacity: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item.animate-in {
  animation: fadeInUp 0.3s ease forwards;
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
}

.stat-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ==================== SERVICES SECTION ==================== */
.services-section {
  padding: 5rem 0;
  background: var(--white);
}

.service-card {
  background: var(--white);
  border: 1px solid #eef0f5;
  border-radius: var(--border-radius);
  padding: 2rem 1.5rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
}

.service-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0;
  background: var(--gradient);
  border-radius: 4px 0 0 4px;
  transition: height 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}

.service-card:hover::before {
  height: 100%;
}

.service-card.animate-in {
  animation: fadeInUp 0.3s ease forwards;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(240, 138, 37, 0.1) 0%, rgba(20, 147, 70, 0.1) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-3deg);
}

.service-icon .icon-orange {
  color: var(--orange);
}

.service-icon .icon-green {
  color: var(--green);
}

.service-card h5 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.service-link:hover {
  gap: 10px;
  color: var(--orange);
}

/* ==================== WHY CHOOSE US ==================== */
.why-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(240, 138, 37, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.feature-box {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  margin-bottom: 1rem;
}

.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(240, 138, 37, 0.12);
}

.feature-box.animate-in {
  animation: fadeInUp 0.3s ease forwards;
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.feature-box h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.feature-box p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

/* ==================== PROCESS SECTION ==================== */
.process-section {
  padding: 5rem 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
}

.process-step {
  text-align: center;
  position: relative;
  opacity: 0;
}

.process-step.animate-in {
  animation: fadeInUp 0.3s ease forwards;
}

.step-number {
  width: 64px;
  height: 64px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: white;
  margin: 0 auto 1.2rem;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.process-step:hover .step-number {
  transform: scale(1.1);
}

.step-connector {
  position: absolute;
  top: 32px;
  left: calc(50% + 32px);
  width: calc(100% - 64px);
  height: 2px;
  border-top: 2px dashed rgba(240, 138, 37, 0.35);
  z-index: 0;
}

.process-step h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.4rem;
}

.process-step p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-section {
  padding: 5rem 0;
  background: var(--light-bg);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--card-shadow);
  height: 100%;
  transition: transform 0.3s ease;
  opacity: 0;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-card.animate-in {
  animation: fadeInUp 0.3s ease forwards;
}

.testimonial-stars {
  color: #ffc107;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-dark);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.author-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.author-city {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==================== BLOG SECTION ==================== */
.blog-section {
  padding: 5rem 0;
  background: var(--white);
}

.blog-card {
  background: var(--white);
  border: 1px solid #eef0f5;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
}

.blog-card.animate-in {
  animation: fadeInUp 0.3s ease forwards;
}

.blog-thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
}

.blog-body {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.8rem;
}

.blog-category {
  background: rgba(240, 138, 37, 0.1);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.blog-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-excerpt {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s;
}

.blog-link:hover {
  gap: 9px;
  color: var(--orange);
}

/* ==================== CTA BANNER ==================== */
.cta-banner {
  background: var(--gradient);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::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='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%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/g%3E%3C/svg%3E");
}

.cta-banner h2 {
  color: white;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.btn-cta-white {
  background: white;
  color: var(--orange);
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-cta-white:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  color: var(--orange);
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--dark);
  padding: 4rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
}

.footer-brand .brand-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
  max-width: 260px;
}

.footer h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: white;
  letter-spacing: 0.5px;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 8px;
}

.footer h6::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gradient);
  border-radius: 1px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--orange);
  padding-left: 4px;
}

.footer-links a::before {
  content: '›';
  color: var(--orange);
  font-weight: bold;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
}

.footer-contact-item i {
  color: var(--orange);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 0.5rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-icon:hover {
  background: var(--gradient);
  color: white;
  border-color: transparent;
  transform: scale(1.1);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 1.2rem 0;
  margin-top: 3rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom a {
  color: var(--orange);
}

/* ==================== PAGE HEADER ==================== */
.page-header {
  background: var(--dark);
  padding: 7rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(240, 138, 37, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(20, 147, 70, 0.08) 0%, transparent 60%);
}

.page-header-content {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  color: white;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.5rem;
}

.breadcrumb-rox {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-rox li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-rox li a {
  color: var(--orange);
}

.breadcrumb-rox li+li::before {
  content: '/';
  margin-right: 8px;
}

/* ==================== SERVICES PAGE ==================== */
.filter-bar {
  padding: 2rem 0;
  background: var(--white);
  position: sticky;
  top: 70px;
  z-index: 100;
  border-bottom: 1px solid #eef0f5;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-btn {
  background: transparent;
  border: 2px solid #eef0f5;
  color: var(--text-muted);
  padding: 7px 18px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient);
  border-color: transparent;
  color: white;
}

.services-grid-section {
  padding: 3rem 0 5rem;
  background: var(--light-bg);
}

.service-full-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 1.8rem;
  height: 100%;
  border: 1px solid #eef0f5;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-top-color 0.3s ease;
  border-top: 3px solid transparent;
  opacity: 0;
}

.service-full-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
  border-top-color: var(--orange);
}

.service-full-card.animate-in {
  animation: fadeInUp 0.3s ease forwards;
}

.service-full-card.hidden {
  display: none;
}

.svc-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.badge-registration {
  background: rgba(240, 138, 37, 0.12);
  color: var(--orange);
}

.badge-gst {
  background: rgba(20, 147, 70, 0.12);
  color: var(--green);
}

.badge-it {
  background: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
}

.badge-compliance {
  background: rgba(111, 66, 193, 0.1);
  color: #6f42c1;
}

.badge-company {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.badge-dsc {
  background: rgba(23, 162, 184, 0.1);
  color: #17a2b8;
}

.badge-accounting {
  background: rgba(40, 167, 69, 0.12);
  color: #28a745;
}

.badge-trademark {
  background: rgba(255, 193, 7, 0.15);
  color: #856404;
}

.badge-other {
  background: rgba(108, 117, 125, 0.1);
  color: var(--text-muted);
}

.svc-icon-lg {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  display: block;
}

.service-full-card h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-full-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.svc-price {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--green);
  margin-bottom: 1rem;
}

.btn-enquire {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 2px solid var(--orange);
  color: var(--orange);
  background: transparent;
  padding: 7px 18px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-enquire:hover {
  background: var(--gradient);
  border-color: transparent;
  color: white;
}

/* ==================== BLOG PAGE ==================== */
.blog-main-section {
  padding: 3rem 0 5rem;
  background: var(--light-bg);
}

.blog-list-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  display: flex;
  margin-bottom: 1.5rem;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
}

.blog-list-card:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 30px rgba(240, 138, 37, 0.12);
}

.blog-list-card.animate-in {
  animation: fadeInUp 0.3s ease forwards;
}

.blog-list-thumb {
  width: 120px;
  min-height: 120px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.blog-list-body {
  padding: 1.2rem;
  flex: 1;
}

.blog-list-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}

.blog-list-excerpt {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
  margin-bottom: 1.5rem;
}

.sidebar-card h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--light-bg);
  color: var(--text-dark);
}

.search-form .input-group .form-control {
  border-radius: 50px 0 0 50px;
  border: 2px solid #eef0f5;
  padding: 10px 16px;
  font-size: 0.88rem;
}

.search-form .btn-search {
  background: var(--gradient);
  color: white;
  border: none;
  border-radius: 0 50px 50px 0;
  padding: 10px 18px;
}

.cat-list {
  list-style: none;
  padding: 0;
}

.cat-list li {
  border-bottom: 1px solid var(--light-bg);
  padding: 8px 0;
  font-size: 0.88rem;
}

.cat-list li:last-child {
  border-bottom: none;
}

.cat-list a {
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cat-list a:hover {
  color: var(--orange);
}

.cat-count {
  background: rgba(240, 138, 37, 0.1);
  color: var(--orange);
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 50px;
  font-weight: 600;
}

.sidebar-cta {
  background: var(--gradient);
  border-radius: var(--border-radius);
  padding: 2rem 1.5rem;
  text-align: center;
  color: white;
}

.sidebar-cta h6 {
  color: white;
  border-bottom: none;
  padding: 0;
  margin-bottom: 0.5rem;
}

.sidebar-cta p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
}

.btn-sidebar-cta {
  background: white;
  color: var(--orange);
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  font-family: 'Poppins', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s ease;
}

.btn-sidebar-cta:hover {
  transform: scale(1.04);
  color: var(--orange);
}

/* Blog Detail */
.blog-detail-section {
  padding: 3rem 0 5rem;
  background: var(--light-bg);
}

.blog-detail-wrap {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.blog-detail-header {
  padding: 2.5rem 2.5rem 2rem;
}

.blog-detail-content {
  padding: 0 2.5rem 2.5rem;
}

.blog-detail-content h2,
.blog-detail-content h3 {
  font-size: 1.3rem;
  margin: 1.5rem 0 0.8rem;
}

.blog-detail-content p {
  margin-bottom: 1rem;
  color: #333;
  line-height: 1.8;
}

.blog-detail-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.share-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--light-bg);
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
  color: white;
}

.share-btn:hover {
  transform: scale(1.05);
  color: white;
}

.share-whatsapp {
  background: #25D366;
}

.share-facebook {
  background: #1877F2;
}

.share-twitter {
  background: #1DA1F2;
}

/* ==================== CONTACT PAGE ==================== */
.contact-section {
  padding: 4rem 0 5rem;
  background: var(--light-bg);
}

.contact-form-wrap {
  background: white;
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--card-shadow);
}

.form-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-control,
.form-select {
  border: 2px solid #eef0f5;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  color: var(--text-dark);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(240, 138, 37, 0.12);
  outline: none;
}

.contact-info-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: var(--card-shadow);
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.contact-info-card:hover {
  transform: translateX(4px);
}

.contact-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-card h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.contact-info-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 13px 24px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  justify-content: center;
}

.btn-whatsapp:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  color: white;
}

.map-embed {
  width: 100%;
  height: 220px;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: none;
  margin-top: 1rem;
}

/* Toast */
.toast-container {
  z-index: 9999;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.anim-fade-left {
  opacity: 0;
  animation: fadeInLeft 0.4s ease 0.1s forwards;
}

.anim-fade-right {
  opacity: 0;
  animation: fadeInRight 0.4s ease 0.2s forwards;
}

/* ==================== PAGINATION ==================== */
.pagination .page-link {
  border: 2px solid #eef0f5;
  color: var(--text-dark);
  border-radius: 8px !important;
  margin: 0 3px;
  padding: 8px 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  transition: all 0.2s ease;
}

.pagination .page-link:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(240, 138, 37, 0.06);
}

.pagination .page-item.active .page-link {
  background: var(--gradient);
  border-color: transparent;
  color: white;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991px) {
  .navbar-collapse {
    background: white;
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .nav-link {
    color: var(--text-dark) !important;
  }

  .hero-section {
    padding-top: 100px;
  }

  .hero-illustration {
    margin-top: 3rem;
  }

  .step-connector {
    display: none;
  }

  .process-step {
    margin-bottom: 2rem;
  }
}

@media (max-width: 767px) {
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .blog-list-card {
    flex-direction: column;
  }

  .blog-list-thumb {
    width: 100%;
    height: 120px;
  }

  .contact-form-wrap {
    padding: 1.5rem;
  }

  .filter-bar {
    overflow-x: auto;
  }

  .filter-bar .d-flex {
    flex-wrap: nowrap;
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-btns .btn-orange,
  .hero-btns .btn-outline-white {
    width: 100%;
    justify-content: center;
  }
}

/* ==================== WHATSAPP FLOATING BTN ==================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease;
  animation: pulse-wa 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  color: white;
}

@keyframes pulse-wa {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.1);
  }
}

/* ==================== BACK TO TOP ==================== */
.back-to-top {
  position: fixed;
  bottom: 88px;
  right: 24px;
  z-index: 999;
  width: 40px;
  height: 40px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(240, 138, 37, 0.3);
}

.back-to-top.show {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  transform: translateY(-3px);
  color: white;
}

/* ==================== NO RESULTS ==================== */
.no-results {
  text-align: center;
  padding: 4rem 0;
  display: none;
}

.no-results.show {
  display: block;
}