* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #e8faf4;
  color: #333;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 18px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;

  /* GLASS EFFECT */
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  /* subtle border */
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);

  z-index: 1000;
  transition: 0.3s ease;
}
/* On Scroll */
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.navbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #53a687, transparent);
  opacity: 0.5;
}
.logo {
  font-size: 24px;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  color: #53a687;
  letter-spacing: 0.5px;
}

.logo span {
  color: #333;
  font-weight: 500;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #53a687;
}

.nav-btn {
  background: #53a687;
  border: none;
  padding: 10px 18px;
  border-radius: 25px;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.nav-btn:hover {
  background: #c1d96c;
  color: #333;
}

/* HERO PREMIUM */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8%;
  overflow: hidden;
}

/* Gradient background shapes */
.bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.shape1 {
  width: 400px;
  height: 400px;
  background: #c1d96c;
  top: -100px;
  left: -100px;
}

.shape2 {
  width: 500px;
  height: 500px;
  background: #53a687;
  bottom: -150px;
  right: -100px;
}

/* LEFT */
.hero-left {
  z-index: 2;
  max-width: 550px;
}

.hero-left h1 {
  font-size: 56px;
  font-family: "Outfit", sans-serif;
  line-height: 1.2;
}

.hero-left span {
  color: #53a687;
}

.hero-left p {
  margin: 20px 0;
  color: #555;
  font-size: 18px;
}

/* RIGHT FLOATING CARDS */
.hero-right {
  position: relative;
  width: 400px;
  height: 400px;
}

.card {
  position: absolute;
  width: 220px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  animation: floatCard 6s ease-in-out infinite;
}

.card h3 {
  color: #53a687;
  font-size: 18px;
}

.card p {
  font-size: 14px;
  color: #666;
}

/* Card positions */
.card1 {
  top: 0;
  left: 50px;
}

.card2 {
  top: 120px;
  right: 0;
  animation-delay: 1s;
}

.card3 {
  bottom: 0;
  left: 80px;
  animation-delay: 2s;
}

/* Floating animation */
@keyframes floatCard {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-right {
    margin-top: 40px;
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-svg {
    margin-top: 30px;
  }

  nav ul {
    display: none;
  }
}
/* ABOUT SECTION */
.about {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 120px 8%;
  background: #f6fffb;
  overflow: hidden;
}

/* Background shapes */
.about-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.shape-a {
  width: 300px;
  height: 300px;
  background: #c1d96c;
  top: -100px;
  right: -100px;
}

.shape-b {
  width: 350px;
  height: 350px;
  background: #53a687;
  bottom: -120px;
  left: -100px;
}

/* LEFT */
.about-left {
  max-width: 550px;
  z-index: 2;
}

.about-left h2 {
  font-size: 40px;
  font-family: "Outfit", sans-serif;
}

.about-left span {
  color: #53a687;
}

.about-left p {
  margin-top: 20px;
  color: #555;
  line-height: 1.6;
}

/* STATS */
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.about-stats h3 {
  color: #53a687;
  font-size: 28px;
}

.about-stats span {
  font-size: 14px;
  color: #777;
}

/* RIGHT CARDS */
.about-right {
  position: relative;
  width: 400px;
  height: 350px;
}

.about-card {
  position: absolute;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Card placements */
.main-card {
  top: 0;
  left: 40px;
  width: 250px;
}

.small-card {
  bottom: 0;
  left: 0;
  width: 180px;
}

.small-card2 {
  bottom: 20px;
  right: 0;
  width: 180px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about {
    flex-direction: column;
    text-align: center;
  }

  .about-right {
    margin-top: 40px;
  }

  .about-stats {
    justify-content: center;
  }
}

/* WHY SECTION */
.why {
  padding: 120px 8%;
  background: #ffffff;
  text-align: center;
}

.why-header h2 {
  font-size: 40px;
  font-family: "Outfit", sans-serif;
}

.why-header span {
  color: #53a687;
}

.why-header p {
  margin-top: 10px;
  color: #666;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

/* CARD */
.why-card {
  padding: 30px 20px;
  border-radius: 20px;
  background: #f6fffb;
  transition: 0.3s;
  cursor: pointer;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* ICON */
.icon {
  font-size: 30px;
  margin-bottom: 15px;
}

/* TEXT */
.why-card h3 {
  color: #53a687;
  margin-bottom: 10px;
}

.why-card p {
  color: #666;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}
/* SERVICES */
.services {
  padding: 120px 8%;
  background: #f6fffb;
  text-align: center;
}

.services-header h2 {
  font-size: 40px;
  font-family: "Outfit", sans-serif;
}

.services-header span {
  color: #53a687;
}

.services-header p {
  margin-top: 10px;
  color: #666;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 60px;
}

/* CARD */
.service-card {
  position: relative;
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  text-align: left;
  transition: 0.4s;
  overflow: hidden;
}

/* Glow effect */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(120deg, #53a687, #c1d96c);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* TEXT */
.service-card h3 {
  color: #53a687;
  margin-bottom: 10px;
}

.service-card p {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
}

/* BUTTON */
.service-card button {
  background: #53a687;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.service-card button:hover {
  background: #c1d96c;
  color: #333;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* CONTACT PREMIUM */
.contact {
  position: relative;
  padding: 140px 8%;
  overflow: hidden;
  background: #f6fffb;
}

/* background blobs */
.contact-bg {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.bg1 {
  width: 400px;
  height: 400px;
  background: #53a687;
  top: -100px;
  left: -100px;
}

.bg2 {
  width: 350px;
  height: 350px;
  background: #c1d96c;
  bottom: -100px;
  right: -100px;
}

/* layout */
.contact-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.contact-left {
  max-width: 500px;
  z-index: 2;
}

.contact-left h2 {
  font-size: 42px;
  font-family: "Outfit", sans-serif;
}

.contact-left span {
  color: #53a687;
}

.contact-left p {
  margin: 20px 0 30px;
  color: #555;
}

/* CARDS */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
}

.contact-card h3 {
  color: #53a687;
  margin-bottom: 5px;
}

.contact-card a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.contact-card.highlight {
  border: 1px solid #53a687;
}

/* RIGHT FORM */
.contact-right {
  width: 400px;
}

.glass-form {
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* floating inputs */
.input-group {
  position: relative;
  margin-bottom: 25px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 14px;
  border: none;
  border-bottom: 2px solid #ccc;
  outline: none;
  background: transparent;
  font-size: 14px;
}

.input-group label {
  position: absolute;
  left: 0;
  top: 14px;
  font-size: 14px;
  color: #777;
  transition: 0.3s;
}

.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label {
  top: -10px;
  font-size: 12px;
  color: #53a687;
}

/* button */
.glass-form button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(90deg, #53a687, #c1d96c);
  color: white;
  font-weight: 500;
  cursor: pointer;
}

/* responsive */
@media (max-width: 900px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-right {
    width: 100%;
  }
}

/* FOOTER */
.footer {
  position: relative;
  background: #0f172a;
  color: white;
  padding: 100px 8% 30px;
  overflow: hidden;
}

/* background glow */
.footer-bg {
  position: absolute;
  width: 500px;
  height: 500px;
  background: linear-gradient(90deg, #53a687, #c1d96c);
  filter: blur(120px);
  opacity: 0.2;
  top: -150px;
  right: -150px;
}

/* container */
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* BRAND */
.footer-brand h2 {
  font-family: "Outfit", sans-serif;
  font-size: 28px;
}

.footer-brand span {
  color: #c1d96c;
}

.footer-brand p {
  margin-top: 15px;
  color: #aaa;
  line-height: 1.6;
}

/* LINKS */
.footer-links h3 {
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
  color: #aaa;
  cursor: pointer;
  transition: 0.3s;
}

.footer-links ul li:hover {
  color: #53a687;
}

.footer-links a {
  text-decoration: none;
  color: #aaa;
}

.footer-links a:hover {
  color: #53a687;
}

/* NEWSLETTER */
.footer-newsletter p {
  color: #aaa;
  margin: 10px 0;
}

.newsletter-box {
  display: flex;
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  overflow: hidden;
}

.newsletter-box input {
  flex: 1;
  padding: 12px;
  border: none;
  background: transparent;
  color: white;
  outline: none;
}

.newsletter-box button {
  padding: 12px 18px;
  background: linear-gradient(90deg, #53a687, #c1d96c);
  border: none;
  cursor: pointer;
  color: white;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  color: #888;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .newsletter-box {
    justify-content: center;
  }
}

/* HERO BUTTONS FIX */
.hero-buttons button {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* PRIMARY BUTTON */
.primary-btn {
  background: linear-gradient(90deg, #53a687, #c1d96c);
  color: white;
  box-shadow: 0 10px 25px rgba(83, 166, 135, 0.3);
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(83, 166, 135, 0.4);
}

/* SECONDARY BUTTON */
.secondary-btn {
  background: transparent;
  border: 2px solid #53a687;
  color: #53a687;
}

.secondary-btn:hover {
  background: #53a687;
  color: white;
  transform: translateY(-3px);
}
