 /* --------- Global --------- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Arial, sans-serif;
    }

    body {
      background: #f9f9f9;
      color: #333;
      line-height: 1.6;
    }
    html{
      scroll-behavior: smooth;
    }
    section{
      scroll-margin-top: 60px;
    }
    h2{
      font-size: 2.5rem !important;
      font-weight: 600;
    }
    h1{
      font-size: 2.7rem !important;
      font-weight: 600;
    }

    p {
      margin-bottom: 15px;
      color: #555;
      font-size: 18px !important;
    }

    a {
      text-decoration: none;
    }

    .container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
    }


    /* --------- Navbar --------- */
   nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: 0.3s;
}

nav .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #008060;
  font-weight: 700;
  font-size: 1.7rem !important;
  margin-bottom: 0px !important;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 25px;
}

.nav-links li a {
  color: #333;
  font-weight: 500;
  transition: 0.3s;
  padding: 8px 10px;
  border-radius: 6px;
}

.nav-links li a:hover {
  text-decoration: underline;
}

.menu-toggle {
  display: none;
  font-size: 1.6rem;
  color: #333;
  cursor: pointer;
}

/* --------- Mobile View --------- */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    right: -100%;
    top: 70px;
    flex-direction: column;
    background: #fff;
    width: 220px;
    height: 100vh;
    padding: 40px 20px;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: 0.4s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    margin: 15px 0;
  }

  .menu-toggle {
    display: block;
  }
}

    /* --------- Hero --------- */

/* -------- Intro Section -------- */
.intro {
  padding: 100px 80px 60px 80px;
  background: linear-gradient(135deg, #e0fff4, #f0fff8);
  font-family: 'Arial', sans-serif;
}

.intro-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.intro-text {
  flex: 1 1 500px;
}

.intro-text h1 {
  font-size: 2.8rem;
  color: #008060;
  margin-bottom: 20px;
  line-height: 1.2;
}

.intro-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #444;
}

.intro-buttons a {
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: bold;
  margin-right: 15px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(45deg, #008060, #00c896);
  color: #fff;
}

.btn-primary:hover {
  background: linear-gradient(45deg, #004d40, #008060);
  transform: translateY(-3px);
}

.btn-secondary {
  background: #fff;
  color: #008060;
  border: 2px solid #008060;
}

.btn-secondary:hover {
  background: #008060;
  color: #fff;
  transform: translateY(-3px);
}

.btn-primary i, .btn-secondary i {
  margin-right: 8px;
}

.intro-image {
  flex: 1 1 450px;
  text-align: center;
}

.intro-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  transition: transform 0.4s ease;
}

.intro-image img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media(max-width:992px){
  .intro-container {
    flex-direction: column-reverse;
    text-align: center;
  }
  .intro-text h1 {
    font-size: 2.2rem;
  }
  .intro-text p {
    font-size: 1.1rem;
  }
  .intro-buttons a {
    margin-bottom: 15px;
  }
  .intro-image img {
    max-width: 90%;
  }
}
@media(max-width: 576px){
  .intro-image {
    flex: 1 1 206px;
    text-align: center;
}
.intro {
    padding: 100px 20px 20px 20px;
}
}

    /* --------- Features --------- */


  #features {
    padding: 40px 20px;
    background: #f9f9f9;
  }

  #features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #008060;
    margin-bottom: 20px;
  }

  #features p.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #555;
    font-size: 1.1rem;
  }

  .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
  }

  .feature-box {
    background: #fff;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }

  .feature-box::before {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #eefffa, #dcdcdc);
    transition: 0.4s;
    z-index: 0;
  }

  .feature-box:hover::before {
    top: 0;
  }

  .feature-box i {
    font-size: 45px;
    color: #008060;
    margin-bottom: 15px;
    transition: 0.4s;
    z-index: 1;
    position: relative;
  }

  .feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
    z-index: 1;
    position: relative;
  }

  .feature-box p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    z-index: 1;
    position: relative;
  }

  .feature-box:hover i,
  .feature-box:hover h3,
  .feature-box:hover p {
    color: #000;
  }

    /* --------- How it Works --------- */
    #how{
      padding: 40px 20px;
    }
 .steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 25px;
  margin-top: 30px;
}

.step {
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.step i {
  font-size: 40px;
  color: #00c896;
  margin-bottom: 15px;
  transition: 0.4s;
}

.step h3 {
  font-size: 1.5rem;
  color: #008060;
  margin-bottom: 15px;
}

.step p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Hover Animation */
.step::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #eefffa, #dcdcdc);
  transition: 0.4s;
  z-index: 0;
}

.step:hover::before {
  top: 0;
}

.step:hover i,
.step:hover h3,
.step:hover p {
  color: #000;
  position: relative;
  z-index: 1;
  transition: 0.4s;
}

/* Responsive */
@media(max-width:768px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

    /* --------- Testimonials --------- */
   #testimonials {
  padding: 40px 20px;
  background: linear-gradient(135deg, #e0fff4, #f9fff9);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  text-align: center;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid #00c896;
}

.testimonial-card p {
  font-style: italic;
  color: #444;
  margin-bottom: 15px;
  line-height: 1.6;
}

.testimonial-card strong {
  display: block;
  margin-bottom: 10px;
  color: #008060;
}

.stars i {
  color: #f1c40f;
  margin: 0 2px;
}

/* Responsive */
@media(max-width:768px){
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* -------- Pricing Section -------- */
#pricing {
  padding: 40px 20px;
  background: #fff;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 25px;
}

.plan {
  background: #fff;
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.plan i {
  font-size: 45px;
  color: #008060;
  margin-bottom: 15px;
}

.plan h3 {
  font-size: 1.6rem;
  color: #008060;
  margin-bottom: 10px;
}

.plan .price {
  font-size: 2rem !important;
  color: #00c896;
  margin-bottom: 15px;
}

.plan ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  color: #555;
  text-align: left;
}

.plan ul li {
  margin: 10px 0;
  position: relative;
  padding-left: 20px;
}

.plan ul li::before {
  content: "\f00c"; /* FontAwesome check icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #00c896;
}

.plan .btn {
  display: inline-block;
  background: #00c896;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  transition: 0.3s;
}
.plan .btn:hover {
  background: #008060;
  transform: translateY(-3px);
}

/* Hover effect */
.plan:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  background: #f0fff8;
}

/* Recommended plan highlight */
.plan.recommended {
  border: 3px solid #008060;
  transform: scale(1.05);
  background: linear-gradient(135deg,#00c896,#008060);
  color: #fff;
}

.plan.recommended h3,
.plan.recommended .price,
.plan.recommended ul li {
  color: #fff;
}

.plan.recommended ul li::before {
  color: #fff;
}

/* Responsive */
@media(max-width:768px){
  .pricing {
    grid-template-columns: 1fr;
  }
}
    /* --------- Blog Section --------- */
   #blog {
  padding: 40px 20px;
  background: #f0fff8;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.post-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  text-align: left;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.post-card i {
  font-size: 40px;
  color: #00c896;
  margin-bottom: 15px;
}

.post-card h3 {
  font-size: 1.5rem;
  color: #008060;
  margin-bottom: 15px;
}

.post-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.post-card .btn {
  display: inline-block;
  background: #00c896;
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: 0.3s;
}
.post-card .btn:hover {
  background: #008060;
  transform: translateY(-3px);
}

/* Hover effect */
.post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Responsive */
@media(max-width:768px){
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
    /* --------- FAQ --------- */
    #faq {
  padding: 40px 20px;
  background-color: #ffffff;
  font-family: 'Arial', sans-serif;
}

.faq-grid {
  display: grid;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.faq-item h3 {
  cursor: pointer;
  font-size: 1.2rem;
  padding: 18px 25px;
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  border-radius: 16px;
  transition: background 0.3s;
}

.faq-item h3:hover {
  background: linear-gradient(135deg, #eefffa, #dcdcdc);
  color: #000;
}

.faq-item p {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  margin: 0;
  color: #555;
  line-height: 1.6;
  background: #f9fff9;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-item.active p {
  max-height: 200px;
  padding: 15px 25px;
}

/* Icon rotation */
.faq-item h3 i {
  transition: transform 0.4s ease;
}

.faq-item.active h3 i {
  transform: rotate(180deg);
}

/* Responsive */
@media(max-width:768px){
  .faq-item h3 {
    font-size: 1rem;
  }
  .faq-item p {
    font-size: 0.95rem;
  }
}

    /* --------- Contact --------- */
    .contact {
  padding: 40px 20px;
  background: linear-gradient(135deg, #e0fff4, #f0fff8);
  font-family: 'Arial', sans-serif;
}

.contact form {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: 0 auto;
  transition: all 0.4s ease;
}

.contact form:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.contact .input-group {
  position: relative;
  margin-bottom: 20px;
}

.contact .input-group i {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #008060;
  font-size: 18px;
  transition: 0.3s;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 12px 15px 12px 45px;
  border: 1px solid #ddd;
  border-radius: 12px;
  outline: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact input:focus,
.contact textarea:focus {
  border-color: #00c896;
  box-shadow: 0 0 10px rgba(0,200,150,0.2);
}

.contact button {
  width: 100%;
  background: linear-gradient(45deg, #008060, #00c896);
  color: #fff;
  border: none;
  padding: 15px 0;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact button:hover {
  background: linear-gradient(45deg, #004d40, #008060);
  transform: translateY(-3px);
}

/* Responsive */
@media(max-width:768px){
  .contact form {
    padding: 30px 20px;
  }
}

    /* --------- Footer --------- */
footer {
  background: #008060;
  color: #fff;
  padding: 40px 20px 20px 20px;
  font-family: 'Arial', sans-serif;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-left h2 {
  margin-bottom: 10px;
}

.footer-left p {
  color: #fff;
  font-size: 0.95rem;
}

.footer-center ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.footer-center ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-center ul li a:hover {
  color: #fff;
}

.footer-right a {
  color: #fff;
  margin-left: 15px;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.footer-right a:hover {
  color: #fff;
  transform: translateY(-3px);
}

/* Disclaimer */
.footer-disclaimer {
  max-width: 900px;
  margin: 20px auto 0 auto;
  text-align: center;
  font-size: 0.85rem;
  color: #fff;
  line-height: 1.5;
}
.footer-disclaimer p{
  color: #fff;
}

/* Responsive */
@media(max-width:768px){
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-right a {
    margin: 0 10px;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    padding: 0 10px;
  }



  h2{
    font-size: 1.7rem !important;
    font-weight: 700;
  }
  .hero{
    height: 100vh !important;
  }
  h1{
    font-size: 2rem !important;
  }
  .logo{
    font-size: 1.2rem !important;
  }
}