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

:root {
  --green-primary: #00C853;
  --green-dark: #00963d;
  --green-light: #69f0ae;
  --green-glow: rgba(0, 200, 83, 0.15);
  --navy: #0d1b2a;
  --navy-light: #1a2d42;
  --slate: #2c3e50;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-500: #6c757d;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-muted: #6c757d;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}


.navbar {
  background: rgba(13, 27, 42, 0.97) !important;
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.navbar-brand .brand-logo {
  height: 42px;
  width: auto;
  border-radius: 8px;
}

.navbar-brand .brand-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: -0.5px;
}

.navbar-brand .brand-text span {
  color: var(--green-primary);
}

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 6px 14px !important;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--green-primary) !important;
  background: var(--green-glow);
}

.navbar-toggler {
  border-color: var(--green-primary) !important;
}

.navbar-toggler-icon {
  filter: invert(1);
}


.hero-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #1e3a5f 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,83,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,83,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-glow);
  border: 1px solid rgba(0,200,83,0.3);
  color: var(--green-primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-badge i { font-size: 0.75rem; }

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title .highlight {
  color: var(--green-primary);
  position: relative;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.75;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,200,83,0.35);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,200,83,0.45);
  color: var(--white);
}

.btn-hero-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  margin-left: 12px;
}

.btn-hero-outline:hover {
  border-color: var(--green-primary);
  color: var(--green-primary);
  background: var(--green-glow);
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green-primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}


.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-phone-mockup {
  width: 260px;
  background: linear-gradient(145deg, #1e3a5f, #243b55);
  border-radius: 36px;
  padding: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
  position: relative;
  z-index: 2;
}

.phone-screen {
  background: linear-gradient(160deg, var(--navy-light), #152535);
  border-radius: 24px;
  padding: 20px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}

.phone-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.phone-header-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-primary);
}

.phone-header-text {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
}

.phone-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 12px;
}

.phone-card-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.phone-card-title {
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
}

.phone-card-sub {
  color: rgba(255,255,255,0.45);
  font-size: 0.62rem;
  margin-top: 2px;
}

.hero-float-badge {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark);
  animation: float 3s ease-in-out infinite;
}

.hero-float-badge.left {
  left: -30px;
  top: 30%;
  animation-delay: 0s;
}

.hero-float-badge.right {
  right: -20px;
  top: 65%;
  animation-delay: 1.5s;
}

.badge-icon {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
}

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


.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,200,83,0.1);
  color: var(--green-dark);
  border: 1px solid rgba(0,200,83,0.2);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 14px;
}

.section-title .green { color: var(--green-primary); }

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

section { padding: 80px 0; }


.services-section { background: var(--gray-100); }

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--green-primary), var(--green-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,200,83,0.2);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(0,200,83,0.3);
}

.service-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}


.about-section { background: var(--white); }

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-icon-box {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  color: var(--white);
}

.about-icon-box i {
  font-size: 2rem;
  color: var(--green-primary);
  margin-bottom: 10px;
}

.about-icon-box h5 {
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0;
}

.about-list { list-style: none; padding: 0; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.about-list li i {
  color: var(--green-primary);
  margin-top: 3px;
  flex-shrink: 0;
}


.whyus-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.whyus-section .section-title { color: var(--white); }
.whyus-section .section-subtitle { color: rgba(255,255,255,0.6); }

.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.why-card:hover {
  background: rgba(0,200,83,0.1);
  border-color: rgba(0,200,83,0.3);
  transform: translateY(-4px);
}

.why-icon {
  font-size: 2rem;
  color: var(--green-primary);
  margin-bottom: 14px;
}

.why-card h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
}


.contact-section { background: var(--gray-100); }

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-item h6 {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin: 0 0 3px;
}

.contact-info-item p {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  margin: 0;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 6px;
}

.form-control, .form-select {
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.form-control:focus, .form-select:focus {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(0,200,83,0.12);
  outline: none;
}

.btn-submit {
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: var(--white);
  border: none;
  padding: 13px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  width: 100%;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-submit:hover {
  box-shadow: 0 6px 20px rgba(0,200,83,0.4);
  transform: translateY(-1px);
}


footer {
  background: var(--navy);
  padding: 60px 0 24px;
  color: rgba(255,255,255,0.65);
}

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

.footer-brand .brand-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
}

.footer-brand .brand-text span { color: var(--green-primary); }

footer p { font-size: 0.88rem; line-height: 1.7; }

.footer-links h6 {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

.footer-links ul li a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.25s;
}

.footer-links ul li a:hover { color: var(--green-primary); }

.footer-divider {
  border-color: rgba(255,255,255,0.1);
  margin: 36px 0 20px;
}

.footer-bottom {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.social-links { display: flex; gap: 10px; margin-top: 16px; }

.social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all 0.25s;
  font-size: 0.85rem;
}

.social-link:hover {
  background: var(--green-primary);
  color: white;
  transform: translateY(-2px);
}


.playstore-section {
  background: linear-gradient(135deg, #0d2137 0%, #1a3a5c 100%);
  padding: 60px 0;
}

.playstore-inner {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
}

.playstore-inner h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.playstore-inner p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.store-badges { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 12px 24px;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.88rem;
}

.store-badge:hover {
  background: var(--green-primary);
  border-color: var(--green-primary);
  color: white;
  transform: translateY(-2px);
}

.store-badge i { font-size: 1.6rem; }

.store-badge-text small { display: block; font-size: 0.72rem; opacity: 0.75; }
.store-badge-text strong { font-size: 1rem; }


@media (max-width: 768px) {
  section { padding: 56px 0; }
  .hero-section { padding: 80px 0 48px; text-align: center; }
  .hero-desc { margin: 0 auto 32px; }
  .hero-stats { justify-content: center; }
  .btn-hero-outline { margin-left: 0; margin-top: 10px; }
  .hero-visual { margin-top: 40px; }
  .hero-float-badge.left { left: 0; }
  .hero-float-badge.right { right: 0; }
  .contact-card { padding: 24px 20px; }
  .playstore-inner { padding: 32px 20px; }
}


#scrollTop {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--green-primary);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(0,200,83,0.4);
  transition: all 0.3s;
}

#scrollTop:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,200,83,0.5); }
#scrollTop.visible { display: flex; }


.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
