:root {
  --primary: #0d8f63;
  --secondary: #0f5fd7;
  --dark: #0f172a;
  --light-bg: #f8fbff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--light-bg);
  color: #1f2937;
  overflow-x: hidden;
}

.pattern-bg {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(9, 110, 89, 0.11) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.3;
  z-index: -1;
  pointer-events: none;
}

.modern-navbar {
  background: rgba(5, 15, 32, 0.64);
  backdrop-filter: blur(10px);
  transition: all 0.25s ease;
}

.modern-navbar.scrolled {
  background: rgba(5, 15, 32, 0.9);
  box-shadow: 0 10px 25px rgba(2, 8, 23, 0.2);
}

.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /*background: #ffffff;*/
  /*color: #0f5fd7;*/
  /*border: 1px solid rgba(15, 95, 215, 0.2);*/
}


.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.hero-section {
  min-height: 100vh;
  padding-top: 6.5rem;
  padding-bottom: 2rem;
  background: linear-gradient(120deg, #0a7e58 0%, #0f5fd7 55%, #eff6ff 100%);
}

.hero-glass {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.2);
}

.hero-chip {
  display: inline-block;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.2);
}

.hero-btn {
  border-radius: 999px;
  padding-inline: 1.4rem;
}

.hero-illustration {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  background: rgba(255, 255, 255, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 4rem;
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.25);
}

.orbit-icon {
  position: absolute;
  font-size: 1.5rem;
  background: #fff;
  color: #0f5fd7;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-one { top: 8%; left: 10%; }
.icon-two { top: 14%; right: 5%; }
.icon-three { bottom: 12%; left: 14%; }

.apps-section {
  margin-top: -3rem;
  position: relative;
  z-index: 2;
}

.section-heading h3 {
  color: var(--dark);
}

.search-wrapper {
  max-width: 560px;
  margin: 0 auto 1.5rem;
  position: relative;
}

.search-wrapper i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
}

.search-wrapper .form-control {
  border-radius: 999px;
  padding: 0.8rem 1rem 0.8rem 2.7rem;
  border: 1px solid #cbd5e1;
}

.app-card {
  background: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  padding: 1.2rem;
  height: 100%;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid #e2e8f0;
  cursor: pointer;
}

.app-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.15);
}

.app-icon {
  display: inline-block;
  font-size: 2.2rem;
  margin-bottom: 0.9rem;
  color: #2563eb;
  transition: color 0.25s ease, transform 0.25s ease;
}

.app-card:hover .app-icon {
  color: #0f766e;
  transform: scale(1.1);
}

.app-title {
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.app-desc {
  color: #64748b;
  font-size: 0.93rem;
  min-height: 48px;
}

.btn-app {
  border-radius: 999px;
  font-size: 0.88rem;
  margin-inline: auto;
}

.app-card .app-desc {
  text-align: center;
}

.wa-float {
  position: fixed;
  right: 20px;
  bottom: 22px;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.35);
  z-index: 1080;
}

.fade-in-up {
  animation: fadeUp 0.8s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991.98px) {
  .hero-section {
    min-height: auto;
    padding-top: 6rem;
    padding-bottom: 3.5rem;
  }

  .hero-illustration {
    width: 210px;
    height: 210px;
    font-size: 3rem;
  }
}

@media (max-width: 575.98px) {
  .hero-glass {
    padding: 1.4rem;
  }

  .wa-float span {
    display: none;
  }

  .wa-float {
    width: 50px;
    height: 50px;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
  }
}
