
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
   color: #1f1f1f;
      background: linear-gradient(135deg, #e9fff2, #b7eac5);
  background-attachment: fixed;
  background-size: cover;
}

/* Navbar */
nav {
    margin-top: 50px;
  padding: 20px 0;
    width: 100%;
  background: transparent;
  animation: navSlideIn 1s ease forwards;
  animation-delay: 0.3s;

}

.navbar {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.navbar a {
  color:#4b4b4b;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s ease;
  position: relative;
}


.navbar a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background-color: #1b5e20;
  transition:width 0.3s ease;
}

.navbar a:hover::after {
  width: 100%;
}

.navbar a:hover {
    color: #1b5e20;

}

/* Hero Section */
.hero {
   
    margin-top: -100px;
  margin-right: 150px;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  text-align: center;

}

.glass-card {
   
  backdrop-filter: blur(12px);
  padding: 40px;
  border-radius: 16px;
  max-width: 800px;
  width: 100%;
   animation: fadeUp 1s ease both;


}


.glass-card:hover {
  transform: translateY(-8px);
  animation: 2.5s infinite;
}




.logo {
  font-weight: 900;
  font-size: 42px;
  color: #222;
  margin-bottom: 10px;
   animation:  4s ease-in-out infinite;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}


/* Headline */
.hero h1 {
  font-size: 28px;
  font-weight: 600;
  color: #2c3e50;
  transition: color 0.3s ease;
}
.hero h1:hover {
  color: #1b5e20;
}

/* Paragraph */
.hero p {
  font-size: 18px;
  color: #555;
  line-height: 1.5;
}


/* Mission Section */
.mission {
 
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
    animation: fadeUp 1s ease both;
}

.mission h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.mission p {
  font-size: 18px;
  color: #333;
}

/* How It Works */
.how-it-works {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 60px 20px;

}

.step {
  flex: 1 1 250px;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    backdrop-filter: blur(12px);
  animation: fadeUp 1s ease both;
}

.step:hover {
  transform: translateY(-2px);
  box-shadow: 0 08px 14px rgba(0,0,0,0.05);
}

.step h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

/* Footer */
.footer {

  text-align: center;
  padding: 30px 20px;

  font-size: 14px;
  color: #555;
}

.social-icons a {
  text-decoration: none;
  color: #555;
  margin: 0 8px;
}

.social-icons a:hover {
  color: #000;
}

.hero{

  width: 100%;
}

.hero-right {

  position: relative;
  width: 100%;
  height: 500px;
  margin-top: 200px;
}

.screenshot-grid {
  position: relative;
  width: 100%;
  height: 100%;
}

.screenshot-grid img {
  width: 300px;
  border-radius: 16px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  filter: grayscale(10%) brightness(95%);
}

.screenshot-grid img:hover {
   transform: scale(1.06) rotate(1deg);
  box-shadow: 0 12px 30px rgba(30, 150, 100, 0.35);
  filter: grayscale(0%) brightness(102%);
  z-index: 10;

}


.image-wrapper {
  display: inline-block;
  animation: float 5s ease-in-out infinite;
}


/* Zig-Zag positions */
.img1{
  position: relative;
  top: -50px;
  right: 100px;
}

.img2{
   position: relative;
   top: 80px;
   right: 80px;
}

.img3{
   position: relative;
top: 10px;
right: 100px;
}

.img4{
   position: relative;
   top: 100px;
   right: 80px;
}



@keyframes fadeUp {
  0% {opacity: 0; transform: translateY(30px);}
  100% {opacity: 1; transform: translateY(0);}
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


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


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



@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 0 rgba(34, 193, 94, 0.4);
  }
  50% {
    box-shadow: 0 0 20px rgba(34, 193, 94, 0.4);
  }
}


/* NAVBAR Animation (Slide Down on Load) */
@keyframes navSlideIn {
  0% {
    transform: translateY(-60px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}


html {
  scroll-behavior: smooth;
}