


/* --- PREMIUM CUSTOM SCROLLBAR & SCROLL SETUP --- */
html {
    /* Remove native smooth scroll if present so JS can take over */
    scroll-behavior: auto !important; 
}


/* Custom Sleek Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    background: var(--bg-main);
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(11, 31, 23, 0.2);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(11, 31, 23, 0.5);
}

/* Dark theme scrollbar adjustments */
.dark-theme::-webkit-scrollbar {
    background: var(--bg-dark);
}
.dark-theme::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
}

:root {
  /* Premium Color Palette */
  --bg-main: #F7F8F3;
  /* Warm Off-white */
  --bg-dark: #0B1F17;
  /* Deep Forest Green */
  --bg-dark-alt: #102C21;
  --bg-surface: #FFFFFF;

  --accent: #84cc16;
  /* Fresh Lime */
  --accent-hover: #65a30d;

  --text-main: #1F2937;
  --text-muted: #6B7280;
  --text-light: #F9FAFB;

  /* Native App Typography System */
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Layout Variables */
  --container-max: 1280px;
  --app-padding: clamp(1.5rem, 5vw, 4rem);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 100px;

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography Scale */
h1,
h2,
h3,
h4 {
  font-weight: normal;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
}
.icon{
  width: 2.5rem;
  height: 2.5rem;
}
.large-text {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--text-muted);
}

.text-accent {
  color: var(--accent);
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border-left: 2px solid var(--accent);
  padding-left: 0.5rem;
}

/* Base Components */
a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.rounded-img {
  border-radius: var(--radius-lg);
}

.text-center {
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  /* border-radius: var(--radius-pill); */
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  border: none;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-dark);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(132, 204, 22, 0.2);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--text-main);
  color: var(--text-main);
}

.btn-ghost:hover {
  background: var(--text-main);
  color: var(--bg-main);
}

.dark-theme .btn-ghost {
  border-color: var(--text-light);
  color: var(--text-light);
}

.dark-theme .btn-ghost:hover {
  background: var(--text-light);
  color: var(--bg-dark);
}

/* --- APP NAVIGATION (Floating Pill) --- */
.app-nav {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: var(--container-max);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-pill);
  padding: 0.75rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s var(--ease-out);
}

.app-nav.scrolled {
  top: 1rem;
  width: calc(100% - 2rem);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: var(--bg-dark);
}

.brand-text span {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-menu a {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--bg-dark);
  font-weight: 600;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--bg-dark);
}

/* Main Layout */
.app-container {
  width: 100%;
}

section {
  padding: 8rem var(--app-padding);
  max-width: var(--container-max);
  margin: 0 auto;
}

.dark-theme {
  background: var(--bg-dark);
  color: var(--text-light);
  max-width: 100%;
  padding-left: var(--app-padding);
  padding-right: var(--app-padding);
}

.dark-theme h2,
.dark-theme h3 {
  color: var(--text-light);
}

.dark-theme p {
  color: #9CA3AF;
}

/* --- HERO SECTION --- */
.section-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 10rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(132, 204, 22, 0.15);
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  margin-bottom: 4rem;
}

.trust-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 2rem;
}

.metric {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.85rem;
}

/* CSS Hero Visual (App Style) */
.visual-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}


.glass-panel {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.panel-header {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.fill {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
}

.panel-stat {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* --- ABOUT SECTION --- */
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.ed-image img {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.mission-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.m-card svg {
  margin-bottom: 1rem;
  padding: 0.5rem;
  background: rgba(132, 204, 22, 0.1);
  border-radius: 8px;
}

.m-card h4 {
  font-size: 1.1rem;
}

.m-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --- EXPERTISE BENTO GRID (Dark) --- */
.section-expertise {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.section-expertise .section-header {
  margin-bottom: 4rem;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.bento-item {
  background: var(--bg-dark-alt);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s;
}

.bento-item:hover {
  transform: translateY(-5px);
  background: #133327;
}

.bento-item.span-2 {
  grid-column: span 2;
}

.bento-icon {
  margin-bottom: 1.5rem;
  color: var(--accent);
}

/* --- PROCESS (Sticky Layout) --- */
.process-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.process-sticky {
  position: sticky;
  top: 10rem;
  align-self: start;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.p-step {
  background: var(--bg-surface);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.step-num {
  position: absolute;
  top: -1.5rem;
  left: 2rem;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(132, 204, 22, 0.2);
  line-height: 1;
}



/* --- KNOWLEDGE SCROLLER INDICATORS & BUTTONS --- */
.scroller-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem; /* Spacing below the cards */
}

/* Arrow Buttons */
.scroll-btn {
    background: var(--bg-surface);
    border: 1px solid #E5E7EB;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--bg-dark);
    transition: all 0.3s var(--ease-out);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.scroll-btn:hover {
    background: var(--bg-dark);
    color: var(--bg-surface);
    border-color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

/* Ensure SVG icons sit perfectly centered */
.scroll-btn svg {
    margin: 0;
    display: block;
}

/* Dots Container */
.scroll-indicators {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Individual Dot */
.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #D1D5DB; /* Grey by default */
    transition: all 0.3s var(--ease-out);
}

/* Active Dot */
.indicator.active {
    background-color: var(--accent); /* Lime Green */
    transform: scale(1.4);
    box-shadow: 0 0 0 4px rgba(132, 204, 22, 0.2); /* Soft glow */
}

/* Hide on mobile if preferred, or just make buttons slightly smaller */
@media (max-width: 768px) {
    .scroller-controls {
        gap: 1rem;
    }
    .scroll-btn {
        width: 40px;
        height: 40px;
    }
}


/* --- CONTACT --- */
.section-contact {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: var(--container-max);
  margin: 0 auto;
  align-items: center;
}

.mini-testimonial {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testi-slide {
  display: none;
}

.testi-slide.active {
  display: block;
  animation: fade 0.5s forwards;
}

.testi-slide p {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.app-form {
  background: var(--bg-surface);
  padding: 3rem;
  border-radius: var(--radius-lg);
  color: var(--text-main);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.app-form h3 {
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.input-group {
  margin-bottom: 1.5rem;
}

.input-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.app-form input,
.app-form select,
.app-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #D1D5DB;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
  background: #F9FAFB;
}

.app-form input:focus,
.app-form select:focus,
.app-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: white;
}

.form-feedback {
  margin-top: 1rem;
  text-align: center;
  font-weight: 500;
  font-size: 0.9rem;
}

.success-msg {
  color: #059669;
}

.error-msg {
  color: #DC2626;
}

/* --- FOOTER --- */
.app-footer {
  background: #06120D;
  color: #9CA3AF;
  padding: 4rem var(--app-padding);
}

.footer-content {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.f-brand .brand-text strong {
  color: white;
  display: block;
}

.f-links {
  display: flex;
  gap: 2rem;
}

.f-links a:hover {
  color: white;
}

/* --- CUSTOM ANIMATIONS --- */
.animate-up,
.animate-left,
.animate-right,
.animate-fade {
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s var(--ease-out);
}

.animate-up {
  transform: translateY(40px);
}

.animate-left {
  transform: translateX(-40px);
}

.animate-right {
  transform: translateX(40px);
}

.animate-fade {
  transform: scale(0.98);
}

.animate-up.is-visible,
.animate-left.is-visible,
.animate-right.is-visible,
.animate-fade.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(0) scale(1);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

@keyframes fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

