﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@600;700;800&display=swap');

html,
body {
  margin: 0;
  padding: 0;
}

/* BRAND COLORS */
.brand .eco {
  background: linear-gradient(90deg, #43a047, #66bb6a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand .cosmo {
  background: linear-gradient(90deg, #1e88e5, #42a5f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand .gps {
  color: #16a34a;
}

/* HERO SECTION */
.hero-home {
   
  position: relative;
  height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  /* background: linear-gradient(180deg, #f8fbff, #ffffff); */
  overflow: hidden;
}

/* CONTAINER */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* GRID LAYOUT */
.hero-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 80px;
  align-items: center;
  margin-top: -140px;
}

/* IMAGE AREA (SINGLE IMAGE) */
.hero-images.single {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* MAIN HERO IMAGE */
.hero-main-image {
  width: 100%;
  max-width: 760px;
  height: auto;
  border-radius: 22px;
  background: #ffffff;

  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.18),
    0 0 0 6px rgba(22, 163, 74, 0.06);

  animation: heroFloat 6s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* TEXT CONTENT */
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 160px;
}

.hero-text h1 {
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin: 0;
}

.hero-text .brand {
  color: #0b0b0b;
}

.hero-sub {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.75;
  color: #6b7280;
  max-width: 420px;
}

/* FEATURES LIST */
.features {
  margin-top: 5px;
  padding-left: 20px;
  list-style: none;
}

.features li {
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 12px;
}

.features .icon {
  font-size: 18px;
  color: #16a34a;
}



/* HERO BUTTONS */
.hero-btns-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* REVEAL ANIMATION */
.reveals {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.6s ease;
}

.reveals.active {
  opacity: 1;
  transform: translateY(0);
}

/*  RESPONSIVE */
@media (max-width: 992px) {
  .hero-home {
    height: auto;
    padding: 80px 0 120px;
   
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
    margin-top: 0;
  }

  .hero-main-image {
    max-width: 100%;
    animation: none;
  }

  .hero-text {
    align-items: center;
  }

  .hero-sub {
    max-width: 100%;
  }

  .hero-btns-wrap {
    justify-content: center;
  }
}
