body {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  min-height: 100vh;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* NAVBAR */
.navbar {
  max-width: 1500px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo img {
  width: 150px;
}

/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: #14532d;
  transition: 0.3s ease;
  position: relative;
}

/* Hover underline effect */
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: #22c55e;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* CTA Button */
.nav-cta {
  background: #22c55e;
  color: white !important;
  padding: 10px 20px;
  border-radius: 30px;
  transition: 0.3s ease;
}

.nav-cta:hover {
  background: #15803d;
  box-shadow: 0 0 15px rgba(34,197,94,0.6);
}

/* HAMBURGER */
#menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #14532d;
  transition: 0.3s ease;
}

/* MOBILE */
@media (max-width: 900px) {

  .hamburger {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #002d1a; /* Dark green */
    flex-direction: column;
    padding: 40px 20px;
    transition: right 0.4s ease;
    z-index: 1000;
  }

  #menu-toggle:checked ~ .nav-links {
    right: 0;
  }

  .overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
  }

  #menu-toggle:checked ~ .overlay {
    opacity: 1;
    pointer-events: auto;
  }
  
    .nav-links li {
    margin: 15px 0;
  }

  .nav-links a {
    color: white;
    font-size: 16px;
  }
}

/* Hide mobile logo on desktop */
.mobile-logo {
  display: none;
}

/* Mobile Styles */
@media (max-width: 768px) {

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #002d1a; /* Dark green */
    flex-direction: column;
    padding: 40px 20px;
    transition: right 0.4s ease;
    z-index: 1000;
  }

  /* Slide in */
  #menu-toggle:checked ~ .nav-links {
    right: 0;
  }

  /* Show mobile logo */
  .mobile-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
  }

  .mobile-logo img {
    width: 120px;
    border-radius: 12px;
	box-shadow: 0 0 20px rgba(0, 200, 83, 0.5);
  }

  .nav-links li {
    margin: 15px 0;
  }

  .nav-links a {
    color: white;
    font-size: 16px;
  }
  
  /* LOGO */

}

/* HERO SECTION */
.hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5px 5px;
  color: white;
  position: relative;
  overflow: hidden;

  background: linear-gradient(
    135deg,
    #14532d,
    #15803d,
    #166534,
    #22c55e
  );
  background-size: 300% 300%;
  animation: heroGradient 10s ease infinite;
}

/* Animated background */
@keyframes heroGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Content container */
.hero-content {
  max-width: 850px;
  z-index: 2;
}

/* Heading */
.hero h1 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero h1 span {
  display: block;
  color: #bbf7d0;
  font-weight: 700;
}

/* Paragraph */
.hero p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
  color: rgba(255,255,255,0.9);
}

/* BUTTONS CONTAINER */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* PRIMARY BUTTON */
.btn.primary {
  background: white;
  color: #15803d;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* SECONDARY BUTTON */
.btn.secondary {
  background: #22c55e;
  color: white;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* OUTLINE BUTTON */
.btn.secondary-outline {
  border: 2px solid white;
  color: white;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover effects */
.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.btn.secondary-outline:hover {
  background: white;
  color: #15803d;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  margin: 5px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.btn.primary {
  background: #00c853;
  color: white;
}

.btn.secondary {
  border: 2px solid white;
  color: white;
}

/* SERVICES */
/* SECTION BACKGROUND */
.services {
  padding: 90px 20px;
  background: linear-gradient(to bottom, #f0fdf4, #ffffff);
  text-align: center;
}

/* CONTAINER */
.services-container {
  max-width: 1100px;
  margin: auto;
}

/* TITLE */
.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 60px;
  color: #15803d;
  position: relative;
}

/* Optional underline accent */
.section-title::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #22c55e;
  display: block;
  margin: 15px auto 0;
  border-radius: 4px;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

/* CARD */
.service-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.08);
  transition: all 0.35s ease;
  border: 1px solid rgba(34, 197, 94, 0.08);
  position: relative;
  overflow: hidden;
}

/* Hover Effect */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(34, 197, 94, 0.18);
  border-color: #22c55e;
}

/* Subtle top glow on hover */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(to right, #22c55e, #15803d);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

/* ICON */
.icon {
  font-size: 45px;
  margin-bottom: 18px;
}

/* HEADINGS */
.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #14532d;
}

/* PARAGRAPH */
.service-card p {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* CTA TEXT */
.learn-more {
  font-size: 0.95rem;
  font-weight: 700;
  color: #22c55e;
  transition: all 0.3s ease;
}

.service-card:hover .learn-more {
  color: #15803d;
  letter-spacing: 0.5px;
}

/* CTA BUTTON */
.cta-btn {
  display: inline-block;
  padding: 12px 26px;
  background: linear-gradient(135deg, #22c55e, #15803d);
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(34, 197, 94, 0.6);
}

/* Glow on hover */
.service-card:hover .cta-btn {
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.6),
              0 0 40px rgba(34, 197, 94, 0.4);
  transform: translateY(-2px);
}

/* Button hover enhancement */
.cta-btn:hover {
  transform: scale(1.05);
}

/* Click effect */
.cta-btn:active {
  transform: scale(0.96);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.4);
}

/* CTA Button Layout */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: white;
  color: #15803d;
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
}

/* Arrow icon */
.btn-icon {
  display: inline-block;
  transition: transform 0.3s ease;
}

/* Slide arrow on hover */
.service-card:hover .btn-icon {
  transform: translateX(6px);
}

/* Glow */
.service-card:hover .cta-btn {
  box-shadow: 0 0 20px rgba(255,255,255,0.6),
              0 0 40px rgba(255,255,255,0.4);
  transform: scale(1.05);
}

/* Press effect */
.cta-btn:active {
  transform: scale(0.96);
}

/* Floating container */
.floating-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

/* Individual icons */
.floating-icons span {
  position: absolute;
  font-size: 40px;
  opacity: 0.08;
  animation: floatUp 12s linear infinite;
}

/* Different positions & timing */
.floating-icons span:nth-child(1) {
  left: 10%;
  animation-duration: 14s;
  animation-delay: 0s;
}

.floating-icons span:nth-child(2) {
  left: 25%;
  animation-duration: 18s;
  animation-delay: 3s;
}

.floating-icons span:nth-child(3) {
  left: 45%;
  animation-duration: 16s;
  animation-delay: 5s;
}

.floating-icons span:nth-child(4) {
  left: 65%;
  animation-duration: 20s;
  animation-delay: 2s;
}

.floating-icons span:nth-child(5) {
  left: 80%;
  animation-duration: 17s;
  animation-delay: 4s;
}

.floating-icons span:nth-child(6) {
  left: 90%;
  animation-duration: 22s;
  animation-delay: 6s;
}

/* Floating animation */
@keyframes floatUp {
  0% {
    transform: translateY(100vh) rotate(0deg);
  }
  100% {
    transform: translateY(-120vh) rotate(360deg);
  }
}


/* SECTION */
.why-us {
  padding: 90px 20px;
  background: #f0fdf4;
  text-align: center;
}

.why-container {
  max-width: 1100px;
  margin: auto;
}

/* Title */
.section-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: #14532d;
  margin-bottom: 15px;
}

/* Subtitle */
.section-subtitle {
  max-width: 650px;
  margin: 0 auto 60px;
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.6;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Card */
.why-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(21, 128, 61, 0.08);
  transition: all 0.35s ease;
  position: relative;
}

/* Hover */
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(21, 128, 61, 0.18);
}

/* Number Badge */
.why-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #22c55e, #15803d);
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}

/* Heading */
.why-card h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 700;
  color: #14532d;
}

/* Text */
.why-card p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
}


/* CTA SECTION */
.cta-section {
  padding: 100px 20px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;

  background: linear-gradient(
    135deg,
    #14532d,
    #15803d,
    #166534,
    #22c55e
  );
  background-size: 300% 300%;
  animation: ctaGradient 10s ease infinite;
}

/* Animated gradient */
@keyframes ctaGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.cta-content {
  max-width: 750px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* Heading */
.cta-section h2 {
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 20px;
}

/* Paragraph */
.cta-section p {
  font-size: 1.05rem;
  margin-bottom: 40px;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}

/* BUTTON */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: #15803d;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(255,255,255,0.6);
}

/* Arrow animation */
.btn-arrow {
  transition: transform 0.3s ease;
}

.cta-button:hover .btn-arrow {
  transform: translateX(6px);
}

/* Glow effect */
.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 0 20px rgba(255,255,255,0.6),
    0 0 40px rgba(255,255,255,0.4);
}

/* Press effect */
.cta-button:active {
  transform: scale(0.96);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-section h2 {
    font-size: 1.9rem;
  }
}

/* FOOTER */
#backToTop {
  position: fixed;
  bottom: 40px;
  right: 10px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #00c853, #00e676);
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 200, 83, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 1000;
}

/* Show when active */
#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hover effect */
#backToTop:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 0 20px rgba(0, 200, 83, 0.8),
              0 0 40px rgba(0, 200, 83, 0.6);
}

/* Click effect */
#backToTop:active {
  transform: scale(0.95);
}


.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  padding: 20px 30px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s ease;
}

.stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(0, 230, 118, 0.5);
}

.stat h2 {
  font-size: 36px;
  margin-bottom: 5px;
  color: #00e676;
}

.stat p {
  font-size: 14px;
  color: #f1f1f1;
}

.btn-register {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #00c853, #009624);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(0, 200, 83, 0.25);
  transition: all 0.3s ease;
}

.btn-register i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.btn-register:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 200, 83, 0.35);
}

.btn-register:hover i {
  transform: scale(1.2);
}

.btn-register:active {
  transform: scale(0.97);
}

.btn-register svg,
.btn-register i {
  background: rgba(255,255,255,0.2);
  padding: 6px;
  border-radius: 50%;
}

/*footer*/
.crave-footer {
  background: linear-gradient(135deg, #064e3b, #022c22);
  color: #ffffff;
  padding: 60px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand img {
  width: 160px;
  background: #fff;
  padding: 5px;
  border-radius: 5px;
   margin-top: 25px;
  margin-bottom: 15px;
}

.footer-brand h3 {
  color: #22c55e;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 14px;
  color: #d1fae5;
}

.footer-column h4 {
  color: #22c55e;
  margin-bottom: 18px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #d1fae5;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-column ul li a:hover {
  color: #22c55e;
  padding-left: 6px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.footer-socials a:hover {
  background: #22c55e;
  transform: translateY(-3px);
}

.footer-socials img {
  width: 18px;
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 40px 0 20px;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #a7f3d0;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }
}
