/* ============================================
   SAJEELO INFOTECH - Global Stylesheet
   Brand Colors extracted from logo:
   - Primary Blue:  #0088CC
   - Teal:          #2EB8A6
   - Accent Green:  #7BC142
   - Dark Navy:     #0A1628
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --primary-blue: #0088CC;
  --primary-teal: #2EB8A6;
  --accent-green: #7BC142;
  --dark-navy: #0A1628;
  --dark-surface: #0F1D30;
  --dark-card: #142236;
  --dark-card-hover: #1A2D45;
  --text-primary: #FFFFFF;
  --text-secondary: #B0C4D8;
  --text-muted: #6B8299;
  --gradient-brand: linear-gradient(135deg, #0088CC 0%, #2EB8A6 50%, #7BC142 100%);
  --gradient-hero: linear-gradient(135deg, #0A1628 0%, #0F2847 50%, #0A1628 100%);
  --gradient-card: linear-gradient(145deg, rgba(14, 34, 56, 0.8), rgba(10, 22, 40, 0.9));
  --glass-bg: rgba(14, 34, 56, 0.6);
  --glass-border: rgba(46, 184, 166, 0.15);
  --shadow-glow: 0 0 40px rgba(0, 136, 204, 0.15);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --max-width: 1280px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Baloo 2', cursive, sans-serif;
  background-color: var(--dark-navy);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Animated Background Particles ── */
.bg-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-particles .particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  animation: float-particle linear infinite;
}

.bg-particles .particle:nth-child(1) {
  width: 400px; height: 400px;
  background: var(--primary-blue);
  top: -100px; left: -100px;
  animation-duration: 20s;
}

.bg-particles .particle:nth-child(2) {
  width: 300px; height: 300px;
  background: var(--primary-teal);
  top: 40%; right: -80px;
  animation-duration: 25s;
  animation-delay: -5s;
}

.bg-particles .particle:nth-child(3) {
  width: 250px; height: 250px;
  background: var(--accent-green);
  bottom: 10%; left: 20%;
  animation-duration: 18s;
  animation-delay: -10s;
}

@keyframes float-particle {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(40px, 30px) scale(1.02); }
}

/* ── NAVIGATION ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all var(--transition-smooth);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.5rem;
  z-index: 1001;
}

.nav-brand img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.nav-brand .brand-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-links a {
  padding: 8px 20px;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
  position: relative;
  transition: all var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  background: rgba(46, 184, 166, 0.1);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: var(--gradient-brand);
  border-radius: 2px;
}

.nav-cta {
  padding: 10px 28px !important;
  background: var(--gradient-brand) !important;
  color: var(--text-primary) !important;
  font-weight: 600 !important;
  border-radius: var(--radius-xl) !important;
  box-shadow: 0 4px 20px rgba(0, 136, 204, 0.3);
  transition: all var(--transition-fast) !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 136, 204, 0.5) !important;
  background: rgba(46, 184, 166, 0.1) !important;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

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

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

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

/* ── HERO SECTION ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10, 22, 40, 0.7) 0%,
    rgba(10, 22, 40, 0.5) 50%,
    rgba(10, 22, 40, 0.95) 100%);
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  position: relative;
  z-index: 5;
  flex-wrap: wrap; /* Allows stacking on smaller screens */
}

.hero-content {
  position: relative;
  max-width: 600px;
  flex: 1 1 400px;
  padding-top: 40px;
}

.hero-graphic {
  position: relative;
  flex: 1 1 500px;
  min-height: 600px; /* Reduced from 800px to limit whitespace */
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(0, 136, 204, 0.12);
  border: 1px solid rgba(0, 136, 204, 0.25);
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-teal);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease-out;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero-title-stacked {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 24px;
  text-transform: uppercase;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero-title-stacked .line {
  display: block;
  line-height: 1.1;
  margin-bottom: 4px;
}

.hero-title-stacked .gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 550px;
  margin-bottom: 36px;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-family: 'Baloo 2', cursive;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-brand);
  color: white;
  box-shadow: 0 4px 24px rgba(0, 136, 204, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(0, 136, 204, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid rgba(46, 184, 166, 0.3);
}

.btn-secondary:hover {
  background: rgba(46, 184, 166, 0.1);
  border-color: var(--primary-teal);
  transform: translateY(-3px);
}

.btn-icon {
  font-size: 1.2rem;
}

/* ── SECTION STYLES ── */
.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(0, 136, 204, 0.1);
  border: 1px solid rgba(0, 136, 204, 0.2);
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-teal);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* ── GLASS CARDS ── */
.glass-card {
  background: var(--gradient-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(46, 184, 166, 0.3),
    transparent);
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(46, 184, 166, 0.3);
  box-shadow: var(--shadow-glow), var(--shadow-card);
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 28px;
}

.service-card {
  padding: 40px 32px;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 24px;
  position: relative;
}

.service-icon.blue {
  background: rgba(0, 136, 204, 0.12);
  color: var(--primary-blue);
  box-shadow: 0 0 24px rgba(0, 136, 204, 0.15);
}

.service-icon.teal {
  background: rgba(46, 184, 166, 0.12);
  color: var(--primary-teal);
  box-shadow: 0 0 24px rgba(46, 184, 166, 0.15);
}

.service-icon.green {
  background: rgba(123, 193, 66, 0.12);
  color: var(--accent-green);
  box-shadow: 0 0 24px rgba(123, 193, 66, 0.15);
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-card .service-features {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-card .feature-tag {
  padding: 4px 14px;
  background: rgba(46, 184, 166, 0.08);
  border: 1px solid rgba(46, 184, 166, 0.15);
  border-radius: var(--radius-xl);
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ── STATS BAR ── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 60px 0;
}

.stat-item {
  text-align: center;
  padding: 32px 16px;
  border-radius: var(--radius-lg);
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  transition: all var(--transition-smooth);
}

.stat-item:hover {
  border-color: rgba(46, 184, 166, 0.3);
  transform: translateY(-4px);
}

.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 4px;
  font-weight: 500;
}

/* ── PRODUCT SHOWCASE ── */
.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.product-showcase.reverse {
  direction: rtl;
}

.product-showcase.reverse > * {
  direction: ltr;
}

.product-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-smooth);
}

.product-image:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-glow);
}

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

.product-info h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.product-info .product-tag {
  display: inline-block;
  padding: 4px 16px;
  background: rgba(123, 193, 66, 0.12);
  border: 1px solid rgba(123, 193, 66, 0.25);
  border-radius: var(--radius-xl);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-green);
  margin-bottom: 20px;
}

.product-info p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 24px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.feature-list li .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(123, 193, 66, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
  font-size: 0.7rem;
  color: var(--accent-green);
}

/* ── TESTIMONIALS / WHY CHOOSE US ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  text-align: center;
  padding: 48px 28px;
}

.why-card .why-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}

.why-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.why-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ── CTA SECTION ── */
.cta-section {
  text-align: center;
  padding: 80px 0;
}

.cta-box {
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(0, 136, 204, 0.06) 0%, transparent 70%);
  animation: cta-glow 6s ease-in-out infinite;
}

@keyframes cta-glow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.cta-box h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
}

.cta-box p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 32px;
  position: relative;
}

.cta-box .btn {
  position: relative;
}

/* ── PAGE HERO (Inner Pages) ── */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0, 136, 204, 0.15) 0%, transparent 60%);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
}

.page-hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  position: relative;
}

.page-hero .breadcrumb a {
  color: var(--primary-teal);
}

.page-hero .breadcrumb a:hover {
  color: var(--accent-green);
}

/* ── ABOUT SECTION ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-card);
}

.about-image img {
  width: 100%;
}

.about-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.about-content p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.value-item {
  padding: 20px;
  background: rgba(14, 34, 56, 0.5);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.value-item:hover {
  border-color: rgba(46, 184, 166, 0.3);
  transform: translateY(-2px);
}

.value-item .value-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
  display: block;
}

.value-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.value-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ── TIMELINE ── */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-blue), var(--primary-teal), var(--accent-green));
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding: 24px;
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 30px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gradient-brand);
  box-shadow: 0 0 12px rgba(0, 136, 204, 0.4);
}

.timeline-item .year {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-teal);
  margin-bottom: 4px;
}

.timeline-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.timeline-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ── CONTACT FORM ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info-card {
  padding: 36px;
}

.contact-info-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-info-card .subtitle {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-detail .detail-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(0, 136, 204, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-detail h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-detail p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.social-links a {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(46, 184, 166, 0.08);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background: rgba(46, 184, 166, 0.2);
  color: var(--primary-teal);
  transform: translateY(-3px);
}

.contact-form-card {
  padding: 36px;
}

.contact-form-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(10, 22, 40, 0.6);
  border: 1px solid rgba(46, 184, 166, 0.15);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: 'Baloo 2', cursive;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary-teal);
  box-shadow: 0 0 20px rgba(46, 184, 166, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ── FOOTER ── */
.footer {
  background: rgba(8, 16, 28, 0.9);
  border-top: 1px solid var(--glass-border);
  position: relative;
  z-index: 1;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 72px 0 48px;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .nav-brand {
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2px;
  line-height: 1.3;
}

.footer-brand p:last-of-type {
  margin-bottom: 20px;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}

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

.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--primary-teal);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(46, 184, 166, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-bottom-links a:hover {
  color: var(--primary-teal);
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .product-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-showcase.reverse {
    direction: ltr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 4px;
    transition: right var(--transition-smooth);
    border-left: 1px solid var(--glass-border);
  }

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

  .nav-links a {
    width: 100%;
    padding: 14px 20px;
  }

  .nav-toggle {
    display: flex;
  }

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

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

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

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

  .section {
    padding: 60px 0;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

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

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

  .glass-card {
    padding: 24px;
  }

  .stats-bar {
    grid-template-columns: 1fr;
  }
}

/* ── Technology Stack Section ── */
.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}

.tech-item {
  padding: 16px 28px;
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.tech-item:hover {
  border-color: rgba(46, 184, 166, 0.3);
  color: var(--text-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

/* ── Pricing-like Feature Comparison ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.pricing-card {
  text-align: center;
  padding: 48px 32px;
  position: relative;
}

.pricing-card.featured {
  border-color: rgba(0, 136, 204, 0.4);
  box-shadow: 0 0 60px rgba(0, 136, 204, 0.12);
}

.pricing-card.featured::after {
  content: 'FLAGSHIP';
  position: absolute;
  top: 0;
  right: 24px;
  padding: 6px 16px;
  background: var(--gradient-brand);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-card .price {
  font-size: 0.95rem;
  color: var(--primary-teal);
  font-weight: 600;
  margin-bottom: 24px;
}

.pricing-card .feature-list {
  text-align: left;
}

/* ── Map Embed ── */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  margin-top: 48px;
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: brightness(0.7) contrast(1.1) saturate(0.5) hue-rotate(180deg);
}

/* ── Team Section ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.team-card {
  text-align: center;
  padding: 36px 24px;
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  position: relative;
}

.team-avatar::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(46, 184, 166, 0.3);
}

.team-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-card .role {
  font-size: 0.85rem;
  color: var(--primary-teal);
  font-weight: 500;
}

/* ── Process Steps ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  counter-reset: process;
}

.process-step {
  text-align: center;
  padding: 40px 24px;
  counter-increment: process;
  position: relative;
}

.process-step::before {
  content: counter(process, decimal-leading-zero);
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  opacity: 0.5;
}

.process-step h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ── Success Message ── */
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}

.form-success.show {
  display: block;
  animation: fadeInUp 0.5s ease-out;
}

.form-success .success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-success h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-secondary);
}

/* ── Remix Icon Integration ── */
.service-icon i {
  font-size: 1.7rem;
}

.why-icon i {
  font-size: 2.5rem;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.value-icon i {
  font-size: 1.5rem;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.detail-icon i {
  font-size: 1.2rem;
  color: var(--primary-teal);
}

.tech-item i {
  font-size: 1.1rem;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn i {
  font-size: 1.1rem;
}

.social-links i {
  font-size: 1.1rem;
}

.feature-list .check i {
  font-size: 0.7rem;
}

/* Spin animation for loading state */
@keyframes ri-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.ri-spin {
  animation: ri-spin 1s linear infinite;
  display: inline-block;
}

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


/* ── Interactive Hero Infographic (Blanxer Style) ── */

.hero-infographic {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Increased scale to 0.85 as requested by user */
  transform: translate(-50%, -50%) scale(0.85);
  width: 1000px;
  height: 800px;
  pointer-events: none;
  opacity: 0.9;
}

/* Base Glassmorphic Node */
.blanxer-node {
  position: absolute;
  background: rgba(10, 22, 40, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(46, 184, 166, 0.3); /* Teal subtle border */
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: float 6s ease-in-out infinite;
}

/* Core Node (Central Hub) */
.core-node {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--primary-teal);
  box-shadow: 0 0 30px rgba(46, 184, 166, 0.4),
              inset 0 0 20px rgba(46, 184, 166, 0.2);
  animation: float-core 8s ease-in-out infinite, pulse-glow 4s ease-in-out infinite;
}

.core-node .node-icon i {
  font-size: 3rem;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.core-node span {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* Skeleton UI Dashboard Elements */
.skeleton-dashboard {
  width: 200px;
}

.skeleton-header {
  display: flex;
  gap: 6px;
  margin-bottom: 4px;
}

.skeleton-header .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.skeleton-header .dot.red { background: #ff5f56; }
.skeleton-header .dot.yellow { background: #ffbd2e; }
.skeleton-header .dot.green { background: #27c93f; }

.node-title {
  font-family: 'Baloo 2', cursive;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-teal);
}

.skeleton-line {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}
.w-70 { width: 70%; }
.w-50 { width: 50%; }
.w-40 { width: 40%; }

.skeleton-box {
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
}

.skeleton-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.skel-av {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(46, 184, 166, 0.2); /* Teal tint */
}

.skeleton-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.skel-card {
  height: 30px;
  background: rgba(0, 136, 204, 0.15); /* Blue tint */
  border-radius: 6px;
}

/* Data Badges floating out of nodes */
.data-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background: var(--bg-surface);
  border: 1px solid var(--primary-teal);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  color: var(--text-primary);
  opacity: 0.9;
}

.data-badge i { font-size: 0.9rem; }
.data-badge.active { color: var(--accent-green); border-color: rgba(123, 193, 66, 0.5); }
.data-badge.pulse { animation: badge-pulse 2s infinite; }

/* Node Positioning & Animation Delays */
.sfa-node { top: 150px; left: 150px; animation-delay: 0s; }
.pos-node { top: 150px; right: 150px; animation-delay: -2s; }
.hr-node { bottom: 150px; left: 150px; animation-delay: -4s; }
.ecom-node { bottom: 150px; right: 150px; animation-delay: -1s; }
.accounting-node { top: 350px; left: 50px; animation-delay: -3s; }
.inv-node { top: 350px; right: 50px; animation-delay: -5s; }

/* SVG Data Lines & Flow Animation */
.data-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.flow-line {
  stroke: rgba(46, 184, 166, 0.3); /* Teal path */
  stroke-width: 2;
  stroke-dasharray: 4 4;
  fill: none;
}

.data-pulse {
  fill: var(--primary-teal);
  filter: drop-shadow(0 0 6px var(--primary-teal));
}

.delay-1 { animation-delay: 0s; }
.delay-2 { animation-delay: 1s; }
.delay-3 { animation-delay: 2s; }
.delay-4 { animation-delay: 0.5s; }

/* ── SFA Spotlight Infographic ── */
.sfa-spotlight {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.container-sfa {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.sfa-content {
  flex: 1 1 400px;
  max-width: 500px;
}
.sfa-feature-list {
  list-style: none;
  margin-top: 24px;
}
.sfa-feature-list li {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.sfa-feature-list li i {
  color: var(--accent-green);
  font-size: 1.2rem;
}
.sfa-graphic {
  flex: 1 1 500px;
  position: relative;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}
.sfa-data-lines {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
}
/* CSS Phone Structure */
.css-phone {
  width: 280px;
  height: 570px;
  background: #fff;
  border-radius: 40px;
  border: 12px solid #1a1a1a;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), inset 0 0 10px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}
.phone-notch {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 26px;
  background: #1a1a1a;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  z-index: 10;
}
.phone-screen {
  background: #f4f7f8;
  width: 100%; height: 100%;
  padding: 50px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.phone-header {
  display: flex; align-items: center; gap: 12px;
}
.ph-avatar {
  width: 45px; height: 45px; border-radius: 50%; background: var(--gradient-brand);
}
.ph-greeting .skel-line { background: #d0d7de; margin-bottom: 6px; height: 10px; border-radius: 4px; }
.ph-card {
  background: #fff; border-radius: 16px; padding: 18px; margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.ph-card.primary-card {
  background: var(--gradient-brand); color: #fff;
  box-shadow: 0 12px 24px rgba(0, 136, 204, 0.3);
}
.ph-card.primary-card .skel-line { background: rgba(255,255,255,0.4); }
.ph-card i { font-size: 1.8rem; margin-bottom: 12px; display: block; }
.ph-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.ph-grid .ph-card { margin: 0; text-align: center; }
.ph-grid .ph-card i { color: var(--primary-teal); margin: 0 auto 10px; }
.ph-grid .ph-card .skel-line { background: #d0d7de; }
.ph-button {
  background: var(--accent-green); color: #fff; text-align: center; padding: 14px;
  border-radius: 12px; font-weight: bold; font-size: 1rem;
  box-shadow: 0 4px 12px rgba(123, 193, 66, 0.3);
}
/* SFA Orbiting Badges */
.sfa-badge {
  position: absolute;
  background: rgba(10, 22, 40, 0.85);
  border: 1px solid var(--primary-teal);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 20px;
  border-radius: 30px;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
  z-index: 3;
}
.sfa-badge i { color: var(--primary-teal); font-size: 1.3rem; }
.sfa-badge-1 { top: 15%; left: 15%; transform: translate(-50%, -50%); }
.sfa-badge-2 { top: 15%; left: 85%; transform: translate(-50%, -50%); }
.sfa-badge-3 { top: 50%; left: 10%; transform: translate(-50%, -50%); }
.sfa-badge-4 { top: 50%; left: 90%; transform: translate(-50%, -50%); }
.sfa-badge-5 { top: 85%; left: 15%; transform: translate(-50%, -50%); }
.sfa-badge-6 { top: 85%; left: 85%; transform: translate(-50%, -50%); }

/* Keyframes */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes float-core {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-15px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 30px rgba(46, 184, 166, 0.4), inset 0 0 20px rgba(46, 184, 166, 0.2); }
  50% { box-shadow: 0 0 60px rgba(46, 184, 166, 0.7), inset 0 0 30px rgba(46, 184, 166, 0.4); }
}

@keyframes badge-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@media (max-width: 1200px) {
  .hero-infographic {
    transform: translate(-50%, -50%) scale(0.5); /* Scale down more for smaller laptops */
  }
}

@media (max-width: 1024px) {
  .hero-graphic {
    min-height: 500px;
  }
  .hero-infographic {
    transform: translate(-50%, -50%) scale(0.45);
  }
}

@media (max-width: 768px) {
  .hero-content {
    text-align: center;
    margin: 0 auto;
  }
  .hero-graphic {
    min-height: 400px;
    width: 100%;
  }
  .hero-infographic {
    transform: translate(-50%, -50%) scale(0.35); /* Keep it visible on mobile but very small */
    opacity: 0.8;
  }
}

@media (max-width: 480px) {
  .hero-graphic {
    display: none; /* Hide entirely on very small phones to avoid clutter */
  }
}
