
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;

}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
  color: #4f46e5;
}
.logo-img {
  height: 50px;       /* adjust size */
  width: auto;
  vertical-align: middle;
}

.navbar ul {
  display: flex;
  gap: 25px;
  list-style: none;
}

.navbar a {
  text-decoration: none;
  color: black;
  font-weight: 500;
}

/* HERO */
.hero {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #b3ffb3, #4dff4d);

  color: #111;
  text-align: center;
  padding: 20px;
}

.hero h1 {
  font-size: 45px;
}

.hero p {
  margin-top: 10px;
  font-size: 18px;
}
.hero button {
  background: #b3ffb3;   /* green */
  color: #111;           /* black text */
  padding: 12px 25px;
  border: none;
  
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.hero button:hover {
  background: #4dff4d;   /* darker green */
  color: #111;
  transform: scale(1.05);
}




/* SERVICES */
.services {
  padding: 60px 20px;
  text-align: center;
 
}

.cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
  flex-wrap: wrap;
}


/* CTA */
.cta {
  background: #111;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.cta button {
  margin-top: 20px;
  padding: 12px 25px;
  
 background: #b3ffb3;



  border: none;
  color: #111;
  border-radius: 5px;
}

/* MOBILE */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: 28px;
  }
}

/*about page
/* HERO for About page */
.about-section {
 background: linear-gradient(to right,#b3ffb3, #4dff4d);

  color: #111;
  text-align: center;
  padding: 80px 20px;
}



/* About Content Boxes */
.about-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 60px 20px;
  gap: 20px;
  text-align: center;
}

.about-box {
  background: white;
  padding: 30px;
  width: 250px;
  border-radius: 12px;
  border-top: 4px solid #4dff4d;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.about-box:hover {
  transform: translateY(-10px);
}


.about-box h2 {
  

color:#111;
  margin-bottom: 15px;
}

.about-box ul {
  list-style: none;
  padding: 0;
}

.about-box ul li {
  margin: 5px 0;
  font-weight: 500;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    align-items: center;
  }
}
/*service page */

/* HERO / HEADER */
.services-hero {
  width: 100%;
 background: linear-gradient(to right,#b3ffb3, #4dff4d);

 color: #111;
  padding: 80px 20px;
}

.services-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.services-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.services-content p {
  font-size: 1.2rem;
  line-height: 1.6;
}

/* SERVICES CARDS */
.services-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 60px 20px;
}

.service-card {
  background: white;
  padding: 30px;
  width: 280px;
  border-radius: 12px;
  border-top: 4px solid #4dff4d;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: 0.3s;
}
 

.service-card:hover {
  transform: translateY(-10px);
}


.service-card h2 {


color:#111;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 1rem;
  color: #1f2937;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .services-section {
    flex-direction: column;
    align-items: center;
  }
}
/*pricing */
/* HERO / HEADER */
.pricing-hero {
  width: 100%;
 background: linear-gradient(to right, #b3ffb3, #4dff4d);


  color: #111;
  padding: 80px 20px;
}

.pricing-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.pricing-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.pricing-content p {
  font-size: 1.2rem;
  line-height: 1.6;
}

/* PRICING CARDS */
.pricing-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 60px 20px;
}

.pricing-card {
  background: white;
  padding: 30px;
  width: 280px;
  border-radius: 12px;
  border-top: 4px solid #4dff4d;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: 0.3s;
}

.pricing-card:hover {
  transform: translateY(-10px);
}


.pricing-card h2 {
  
color:#111;
  margin-bottom: 15px;
}

.pricing-card .price {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.pricing-card ul li {
  margin: 8px 0;
}

.pricing-card button {
  background: #b3ffb3;   /* green background */
  color: #111;           /* black text */
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}


.pricing-card button:hover {
  background: #4dff4d;
  color: #111;
  transform: scale(1.05);
}



  .footer {
  background: #111827;
  color: white;
  padding: 50px 20px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-box {
  max-width: 250px;
}

.footer-box h2,
.footer-box h3 {
  margin-bottom: 15px;
}

.footer-box p {
  margin: 5px 0;
  color: #d1d5db;
}

.footer-box a {
  color: #d1d5db;
  text-decoration: none;
}

.footer-box a:hover {
  color: #7c3aed;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #9ca3af;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}


  .about-details {
  padding: 50px 20px;
  max-width: 900px;
  margin: auto;
}

.detail {
  margin-bottom: 30px;
}

.detail h3 {
  background: #b3ffb3;   /* green box */
  color: #111;           /* black text */
  padding: 10px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 10px;
}

 
a {
  text-decoration: none;
}

.navbar a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

/* ACTIVE LINK */
.navbar a.active {
   

color:#b3ffb3;
}

/* UNDERLINE EFFECT */
.navbar a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 3px;
  background: #b3ffb3;


  transition: 0.3s;
}

/* SHOW LINE ON HOVER + ACTIVE */
.navbar a:hover::after,
.navbar a.active::after {
  width: 100%;
}
.social-icons a {
  text-decoration: none;
  font-size: 50px; /* make the icons bigger */
  color: #333;
  transition: color 0.3s;
}

.slider {
  position: relative;
  height: 150px;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s ease;
}

.slide.active {
  opacity: 1;
  transform: translateY(0);
}
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  margin-bottom: 10px;
}

.hero p {
  margin-bottom: 20px;
}

.hero .btn {
  margin-top: 10px;   /* pushes button down */
}


.about-preview {
  padding: 60px 20px;
}

.about-container {
  display: flex;
  flex-direction: column; /* stack text and image vertically */
  align-items: center;    /* center horizontally */
  text-align: center;     /* center text */
  gap: 30px;              /* space between text and image */
}

.about-text h2 {
  font-size: 3rem; /* big heading */
  margin-bottom: 20px;
  color: #111;
}

.about-text p {
  font-size: 1.2rem; /* bigger paragraph */
  max-width: 800px;  /* optional: limit width */
}

.about-image img {
  width: 100%;
  max-width: 600px; /* image size limit */
  border-radius: 12px;
}


.ad-slider {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 40px auto;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1280 / 714
}

.ad-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* fill the container */
  opacity: 0;
  transition: opacity 1s ease;
}

.ad-slide.active {
  opacity: 1;
}

.ad-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  
}

.ad-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  background: rgba(0,0,0,0.5);
  padding: 15px 20px;
  border-radius: 8px;
}


html, body {
  overflow-x: hidden; /* stops horizontal scroll */
  overflow-y: auto;   /* allows vertical scroll */
  height: auto;
}

/* 1. The Wrapper for the image and comments */
.fake-info {
  display: flex;
  flex-direction: column; 
  align-items: center;
  padding: 60px 20px;
}

/* 2. The Slider Area */
.comments-section {
  position: relative;
  width: 100%;
  max-width: 800px;  /* Limits width so sentences look good */
  height: 180px;      /* CRITICAL: This pushes the footer down */
  margin-top: 20px;
  text-align: center;
}

/* 3. The Individual Comment */
.comment {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;          /* Anchors text to both sides to prevent squishing */
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.comment.active {
  opacity: 1;
}

.comment p {
  font-size: 1.2rem;
  line-height: 1.6;
  font-style: italic;
  color: #333;
}
.comment.active {
  opacity: 1;
}
.stars {
  color: #FFD700; /* gold stars */
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.about-preview {
  text-align: center;   /* centers the heading & paragraph */
  padding: 60px 20px;
}

.about-container {
  display: flex;
  flex-direction: column;   /* stack text and image vertically */
  align-items: center;      /* center horizontally */
  gap: 30px;                /* space between text and image */
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 1.2rem;
  max-width: 700px;        /* keeps paragraph readable */
}

.about-image img {
  width: 100%;
  max-width: 600px;         /* control image size */
  border-radius: 12px;
  margin-top: 20px;
}

.pricing-card {
  position: relative; /* Needed for badge positioning */
  background: white;
  padding: 30px;
  width: 280px;
  border-radius: 12px;
  border-top: 4px solid #4dff4d;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: 0.3s;
}

.pricing-card .badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ff9800; /* Orange color for popularity */
  color: white;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 50px;
  font-size: 0.9rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.faq-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.faq-section h2 {
  margin-bottom: 30px;
  font-size: 2rem;
  color: #111;
}

.faq-item {
  margin-bottom: 15px;
  text-align: left;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 15px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  background: #b3ffb3;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #4dff4d;
}

.faq-answer {
  display: none; /* hide by default */
  padding: 15px 20px;
  background: #f9f9f9;
  color: #111;
  line-height: 1.6;
}


.pricing-banner {
  width: 100%;
  max-width: 1200px;
  margin: 40px auto;
  text-align: center;
}

.pricing-banner img {
  width: 100%;
  height: auto;   /* keeps aspect ratio */
  display: block;
  border-radius: 12px;
}

.banner-text {
  margin-top: 20px;  /* space between image and text */
  color: #111;       /* text color */
  text-align: center;
}

.banner-text h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.banner-text p {
  font-size: 1.2rem;
}


.responsive-img {
  width: 100%;       /* image takes full width of container */
  max-width: 1200px; /* optional, keeps image from being too large on big screens */
  height: auto;      /* maintains aspect ratio */
  display: block;    /* removes unwanted inline spacing */
  margin: 0 auto;    /* centers image horizontally */
}


