:root {
  --primary: #00b050;
  --dark: #0a2540;
  --soft: #f5fbf7;
  --mint: #dff8ea;
}
* {
  font-family: "Cairo", sans-serif;
}
body {
  background: var(--soft);
  color: var(--dark);
  overflow-x: hidden;
}
.navbar {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.navbar-brand {
  color: var(--primary) !important;
  font-weight: 800;
  font-size: 1.5rem;
}
.nav-link {
  font-weight: 700;
  color: var(--dark);
}
.nav-link:hover {
  color: var(--primary);
}
section {
  padding: 90px 0;
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  background:
    radial-gradient(circle at top right, #00b05030, transparent 35%),
    radial-gradient(circle at bottom left, #36cfc930, transparent 35%);
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.2;
}
.text-gradient {
  background: linear-gradient(90deg, var(--primary), #36cfc9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.btn-main {
  background: var(--primary);
  color: white;
  border-radius: 50px;
  padding: 13px 35px;
  font-weight: 800;
  border: none;
}
.btn-main:hover {
  background: #079343;
  color: white;
}
.btn-outline-main {
  border: 2px solid var(--dark);
  color: var(--dark);
  border-radius: 50px;
  padding: 12px 35px;
  font-weight: 800;
}
.btn-outline-main:hover {
  background: var(--dark);
  color: white;
}
.hero-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
  border-radius: 35px;
  padding: 25px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}
.floating {
  animation: floating 4s ease-in-out infinite;
}
@keyframes floating {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}
.section-title {
  font-weight: 800;
  color: var(--dark);
}
.section-title span {
  color: var(--primary);
}
.product-card,
.feature-card {
  background: white;
  border: none;
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.07);
  transition: 0.35s;
  height: 100%;
}
.product-card:hover,
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}
.icon-box {
  width: 70px;
  height: 70px;
  background: var(--mint);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  font-size: 32px;
  margin-bottom: 20px;
}
.about-img {
  border-radius: 35px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}
.stats {
  background: linear-gradient(135deg, var(--primary), #0a8f4c);
  color: white;
  border-radius: 40px;
  padding: 60px 30px;
}
.contact-wrapper {
  background: white;
  border-radius: 35px;
  padding: 60px 40px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}
.contact-card {
  background: #f8fafc;
  border-radius: 25px;
  padding: 35px 25px;
  text-align: center;
  transition: 0.35s;
  height: 100%;
}
.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.contact-icon {
  width: 75px;
  height: 75px;
  margin: auto;
  margin-bottom: 20px;
  border-radius: 22px;
  background: var(--mint);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}
.contact-card h5 {
  font-weight: 800;
  margin-bottom: 10px;
}
.contact-card p {
  color: #6c757d;
  margin: 0;
}
footer {
  background: var(--dark);
  color: white;
  padding: 50px 0 25px;
}
.social a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 5px;
  text-decoration: none;
}
.social a:hover {
  background: var(--primary);
}
