@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Quicksand:wght@300..700&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-green: #2ecc71;
  --background: #ffffff;
  --accent-green: #a8e6cf;
  --text-dark: #333333;
  --dark-text: #1f2937;
  --light-dk: #8094ae;
  --secondary-green: #14532d;
  --highlight: #f1c40f;
  --ff-roboto: "Roboto", sans-serif;
  --ff-montserrat: "Montserrat", sans-serif;
  --ff-quicksand: "Quicksand", sans-serif;
  --ff-raleway: "Raleway", sans-serif;
  --fs-md: 16px;
  --fs-lg: 20px;
  --fs-dxl: 28px;
  --fs-xl: 32px;
  --fs-xxl: 48px;
  --box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
    rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--ff-raleway);
}

body {
  line-height: 1.6;
  max-width: 1800px;
  width: 100%;
  min-height: 100vh;
  top: 0 !important;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../img/dash.avif") no-repeat center center fixed;
  background-size: cover;
  color: var(--text-fark);
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}
.goog-gt-tt {
  display: none !important;
}

body > .skiptranslate {
  display: none;
}
.gv {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.gv a {
  text-decoration: none;
}
.gv .g-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 10px 1rem;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  color: var(--background);
  border-radius: 5px;
  font-size: var(--fs-md);
  font-family: var(--ff-raleway);
  font-weight: 600;
  border: none;
  transition: all 1s ease-in-out;
  cursor: pointer;
}
.gv .g-btn:hover {
  background: linear-gradient(
    135deg,
    var(--secondary-green),
    var(--secondary-green)
  );
  color: var(--background);
}
.gv .g-btn:hover span {
  background-color: var(--primary-green);
  color: var(--background);
}
.gv .g-btn span {
  font-size: var(--fs-md);
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--background);
  color: var(--secondary-green);
  margin-right: 10px;
}
.gv header {
  width: 100%;
}
.gv header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
}

/* .gv header nav .logo strong {
  font-size: var(--fs-lg);
  font-weight: 700;
  font-family: var(--ff-raleway);
  color: var(--background);
}
.gv header nav .logo strong span {
  color: var(--primary-green);
} */
.gv header nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}
.gv header nav ul li {
  font-size: var(--fs-md);
  font-family: var(--ff-raleway);
  font-weight: 500;
  color: var(--background);
  text-transform: capitalize;
  transition: color 0.3s ease;
}
.gv header nav ul li:hover {
  color: var(--primary-green);
}
.gv header nav ul li a.active {
  color: var(--primary-green);
  font-weight: 700;
}
.gv header nav ul li a {
  text-decoration: none;
  color: inherit;
}
.gv header nav .menu {
  display: none;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 25px;
  right: 10px;
}
.gv header nav .menu span {
  width: 100%;
  height: 100%;
  color: var(--background);
  font-size: var(--fs-xl);
}
/* Home start */
.gv .padded {
  padding: 0 50px;
  width: 100%;
}
.gv .home {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 50px;
}
.gv .home .banner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: nowrap;
}
.gv .home .banner .banner-content {
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  text-align: left;
}
.gv .home .banner .banner-content span.transparent {
  -webkit-text-stroke: 0.9px var(--background);
  color: transparent;
  font-size: var(--fs-xl);
  font-weight: 700;
  font-family: var(--ff-raleway);
}
.gv .home .banner .banner-content h1 {
  font-size: var(--fs-xxl);
  font-weight: 700;
  color: var(--background);
  margin-bottom: 20px;
  font-family: var(--ff-raleway);
  /* text-shadow: 2px 2px var(--background); */
  /* -webkit-text-stroke: 1px var(--background); */
}
.gv .home .banner .banner-content h1 span {
  color: var(--primary-green);
}
.gv .home .banner .banner-content p {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--background);
  font-family: var(--ff-raleway);
  line-height: 30px;
  margin-bottom: 20px;
}
.gv .home .banner .banner-action {
  max-width: 500px;
  width: 100%;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  /* border: 1px dashed var(--primary-green); */
}
.gv .home .banner .banner-action .ctas {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.gv .newsletter {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}
.gv .newsletter b {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--background);
  font-family: var(--ff-raleway);
}
.gv .newsletter form {
  width: 100%;
  position: relative;
}
.gv .newsletter form input {
  width: 100%;
  padding: 10px;
  font-size: var(--fs-md);
  font-family: var(--ff-quicksand);
  font-weight: 600;
  border: none;
  border-radius: 5px;
  box-shadow: var(--box-shadow);
  outline: none;
}
.gv .newsletter form button {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 5px 5px 0;
}
.gv .socials {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  /* margin-top: 20px; */
}
.gv .socials a {
  text-decoration: none;
  color: var(--background);
  font-size: var(--fs-lg);
  font-weight: 600;
  font-family: var(--ff-raleway);
  transition: color 0.3s ease;
}
.gv .socials a:hover {
  color: var(--primary-green);
}
/* Stats */
.gv .stats {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: var(--secondary-green);
}
.gv .stats .stat {
  position: relative;
  width: 100%;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  font-family: var(--ff-raleway);
  background: var(--background);
  box-shadow: var(--box-shadow);
  overflow: hidden;
}
.gv .stats .stat:hover {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 20px -5px,
    rgba(0, 0, 0, 0.04) 0px 4px 6px -2px;
  transform: translateY(-5px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* .gv .stats .stat::before {
	content: "";
  position: absolute;
  left: -20px;
  top: -20px;
  width: 60px;
  height: 60px;
	border-radius: 50%;
	background: var(--secondary-green);
}
.gv .stats .stat::after {
	content: "";
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 60px;
  height: 60px;
	border-radius: 50%;
	background: var(--secondary-green);
} */
.gv .stats .stat .stat-icon {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--secondary-green);
  color: var(--background);
  font-size: var(--fs-xl);
}
.gv .stats .stat .stat-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.gv .stats .stat .stat-content h2 {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--text-dark);
  font-family: var(--ff-raleway);
}
.gv .stats .stat .stat-content p {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--text-dark);
  font-family: var(--ff-quicksand);
}
/* Stats end */
/* Why Choose us */
.gv .why-choose-us {
  margin: 0 auto;
  padding-bottom: 20px;
  padding-top: 20px;
  text-align: center;
  font-family: var(--ff-raleway);
}

.why-choose-us h2 {
  font-size: var(--fs-xxl);
  color: var(--primary-green);
  margin-bottom: 10px;
}

.why-choose-us p.subheading {
  color: var(--background);
  margin-bottom: 40px;
  font-size: var(--fs-md);
  font-weight: 500;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.feature-box {
  background-color: var(--background);
  padding: 30px 20px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  background-color: var(--accent-green);
  color: var(--primary-green);
  font-size: var(--fs-xl);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 15px;
}

.feature-box h3 {
  font-size: var(--fs-lg);
  margin-bottom: 10px;
}

.feature-box p {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--text-dark);
  font-family: var(--ff-quicksand);
  line-height: 1.5;
}

/* Why choose us end */
/* Plan */
.gv .plan-container {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 20px;
  padding-top: 20px;
  /* background: var(--secondary-green); */
}

.plan-header {
  text-align: center;
  margin-bottom: 3rem;
}

.plan-header h1 {
  font-size: var(--fs-xxl);
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.plan-header p {
  font-size: var(--fs-md);
  color: var(--background);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.plan-card {
  background: var(--background);
  border: 1px solid var(--secondary-green);
  border-radius: 4px;
  padding: 2rem;
  transition: all 0.3s ease;
  text-align: center;
}

.plan-card:hover {
  border-color: var(--primary-green);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

.plan-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.plan-duration {
  font-size: 0.9rem;
  color: var(--secondary-green);
  margin-bottom: 1.5rem;
}

.roi-display {
  background: var(--accent-green);
  border: 1px solid var(--primary-green);
  border-radius: 6px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.roi-percentage {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 0.25rem;
}

.roi-label {
  font-size: 0.8rem;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.investment-details {
  margin-bottom: 2rem;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f3f4f6;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  color: var(--secondary-green);
  font-size: var(--fs-md);
}

.detail-value {
  font-weight: 600;
  color: var(--text-dark);
}

.min-investment {
  color: var(--primary-green);
  font-weight: 600;
}

.plan-button {
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: var(--secondary-green);
  color: var(--background);
  border: none;
  border-radius: 6px;
  font-size: var(--fs-md);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.plan-button:hover {
  background: var(--primary-green);
}

.popular {
  position: relative;
  border-color: var(--secondary-green);
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

.popular::before {
  content: "POPULAR";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary-green);
  color: var(--background);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
}

.risk-indicator {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* .risk-low {
  background: var(--accent-green);
  color: var(--secondary-green);
}

.risk-medium {
  background: var(--highlight);
  color: var(--text-dark);
}

.risk-high {
  background: ;
  color: #991b1b;
} */

/* plan end */
/* ABout */
.abt-container {
  margin: 0 auto;
  padding-top: 20px;
  padding-bottom: 20px;
}

.section {
  padding: 4rem 0;
}

/* about-hero Section */
.about-hero {
  /* background: linear-gradient(135deg, #f8fffe 0%, #f0fdf4 100%); */
  text-align: center;
  /* padding: 6rem 0; */
}

.about-hero h1 {
  font-size: var(--fs-xxl);
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.about-hero p {
  font-size: var(--fs-md);
  color: var(--background);
  max-width: 600px;
  margin: 0 auto;
}

/* About Content */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-text h2 {
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--background);
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--background);
  margin-bottom: 1.5rem;
  font-size: var(--fs-md);
}

.about-image {
  background: transparent;
  border-radius: 4px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-lg);
  color: var(--secondary-green);
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.3s ease;
}
/* Video Sections */
.video-section {
  background: var(--background);
  padding: 4rem 0;
}

.video-section:nth-child(even) {
  background: var(--background);
}

.video-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.video-content h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 1rem;
}

.video-content p {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.video-placeholder {
  background: var(--accent-green);
  border-radius: 4px;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--dark-text);
  transition: all 0.3s ease;
}

.video-placeholder:hover {
  border-color: var(--primary-green);
  background: var(--background);
}
.video-placeholder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

/* .video-placeholder .play-icon {
  font-size: 3rem;
  color: #10b981;
  margin-bottom: 1rem;
} */

/* Stats Section */
.statss {
  background: var(--secondary-green);
  color: var(--background);
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-item h4 {
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: var(--fs-md);
  opacity: 0.9;
}

/* Mission & Vision */
.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.mission,
.vision {
  background: var(--background);
  padding: 2.5rem;
  border-radius: 4px;
  border: 1px solid var(--secondary-green);
  transition: all 0.3s ease;
}

.mission:hover,
.vision:hover {
  border-color: #10b981;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

.mission h3,
.vision h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mission-icon,
.vision-icon {
  font-size: var(--fs-lg);
  color: var(--primary-green);
}

/* Team Section */
.team {
  background: var(--background);
}

.team h2 {
  text-align: center;
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 3rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-member {
  background: var(--background);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--accent-green);
  transition: all 0.3s ease;
}

.team-member:hover {
  border-color: var(--primary-green);
  transform: translateY(-5px);
}

.member-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.member-name {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 0.5rem;
}

.member-title {
  color: var(--primary-green);
  font-weight: 500;
  margin-bottom: 1rem;
}

.member-bio {
  color: var(--text-dark);
  font-size: 0.9rem;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, #059669 0%, var(--secondary-green) 100%);
  color: var(--background);
  text-align: center;
}

.cta h2 {
  font-size: var(--fs-lg);
  font-weight: 600;
  margin-bottom: 1rem;
}

.cta p {
  font-size: var(--fs-md);
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--primary-green);
  color: var(--dark-text);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
/* About End */
/* Testimonial */
.gv .test-container {
  margin: 0 auto;
  padding-top: 20px;
  padding-bottom: 20px;
}

.test-header {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}

.test-header h1 {
  font-size: var(--fs-xxl);
  color: var(--primary-green);
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(26, 92, 74, 0.1);
}

.test-header p {
  font-size: var(--fs-md);
  color: var(--background);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.testimonial-card {
  background: var(--background);
  border-radius: 4px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(26, 92, 74, 0.1);
  position: relative;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
  border: 2px solid transparent;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-green),
    #16a34a,
    var(--secondary-green)
  );
}

.testimonial-card:nth-child(1) {
  animation-delay: 0.2s;
}
.testimonial-card:nth-child(2) {
  animation-delay: 0.4s;
}
.testimonial-card:nth-child(3) {
  animation-delay: 0.6s;
}
.testimonial-card:nth-child(4) {
  animation-delay: 0.8s;
}
.testimonial-card:nth-child(5) {
  animation-delay: 1s;
}
.testimonial-card:nth-child(6) {
  animation-delay: 1.2s;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(26, 92, 74, 0.15);
  border-color: var(--primary-green);
}

.quote-icon {
  font-size: 3rem;
  color: var(--primary-green);
  opacity: 0.3;
  margin-bottom: 20px;
  line-height: 1;
}

.testimonial-text {
  font-size: var(--fs-md);
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 25px;
  font-style: italic;
}

.customer-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--background);
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.customer-details h4 {
  color: var(--secondary-green);
  font-weight: 600;
  font-size: var(--fs-md);
  margin-bottom: 3px;
}

.customer-details p {
  color: var(--text-dark);
  font-size: 0.9rem;
}

.stars {
  display: flex;
  gap: 3px;
  margin-top: 8px;
}

.star {
  color: var(--primary-green);
  font-size: 1rem;
}

.cta-section {
  text-align: center;
  background: var(--background);
  padding: 50px 40px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(26, 92, 74, 0.1);
  opacity: 0;
  animation: fadeInUp 1s ease-out 1.5s forwards;
}

.cta-section h2 {
  color: var(--secondary-green);
  font-size: var(--fs-lg);
  margin-bottom: 15px;
  font-weight: 600;
}

.cta-section p {
  color: #4a7c59;
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  color: var(--background);
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  font-size: var(--fs-md);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
  background: linear-gradient(135deg, #16a34a, #15803d);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Testimonial End */
/* FAQ */
.gv .f-container {
  margin: 0 auto;
  padding-top: 20px;
  padding-bottom: 20px;
}
.f-header {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}

.f-header h1 {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(26, 92, 74, 0.1);
}

.f-header p {
  font-size: 1.2rem;
  color: var(--background);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.search-container {
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.3s forwards;
}

.search-box {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.search-input {
  width: 100%;
  padding: 15px 50px 15px 20px;
  border: 2px solid #e8f5f3;
  border-radius: 50px;
  font-size: 1rem;
  background: var(--background);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(26, 92, 74, 0.05);
}

.search-input:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.15);
}

.search-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-green);
  font-size: 1.2rem;
}

.faq-categories {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.6s forwards;
}

.category-btn {
  padding: 10px 20px;
  border: 2px solid var(--primary-green);
  background: var(--background);
  color: var(--primary-green);
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.category-btn:hover,
.category-btn.active {
  background: var(--primary-green);
  color: var(--background);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.faq-container {
  margin-bottom: 50px;
}

.faq-item {
  background: var(--background);
  border-radius: 4px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(26, 92, 74, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
  border: 2px solid transparent;
}

.faq-item:nth-child(1) {
  animation-delay: 0.2s;
}
.faq-item:nth-child(2) {
  animation-delay: 0.3s;
}
.faq-item:nth-child(3) {
  animation-delay: 0.4s;
}
.faq-item:nth-child(4) {
  animation-delay: 0.5s;
}
.faq-item:nth-child(5) {
  animation-delay: 0.6s;
}
.faq-item:nth-child(6) {
  animation-delay: 0.7s;
}
.faq-item:nth-child(7) {
  animation-delay: 0.8s;
}
.faq-item:nth-child(8) {
  animation-delay: 0.9s;
}

.faq-item:hover {
  border-color: var(--primary-green);
  box-shadow: 0 8px 25px rgba(26, 92, 74, 0.12);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
}

.faq-question::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-green), #16a34a);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item.active .faq-question::before {
  opacity: 1;
}

.faq-question h3 {
  color: var(--secondary-green);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
  flex: 1;
  margin-right: 20px;
}

.faq-toggle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary-green);
  color: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: var(--secondary-green);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  background: var(--background);
}

.faq-answer-content {
  padding: 0 30px 30px 30px;
  color: var(--dark-text);
  line-height: 1.7;
  font-size: 1rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.contact-section {
  text-align: center;
  background: var(--background);
  padding: 40px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(26, 92, 74, 0.1);
  border: 2px solid #e8f5f3;
  opacity: 0;
  animation: fadeInUp 1s ease-out 1.2s forwards;
}

.contact-section h2 {
  color: var(--secondary-green);
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.contact-section p {
  color: #4a7c59;
  font-size: 1.1rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.contact-button {
  background: linear-gradient(135deg, var(--primary-green), #16a34a);
  color: var(--background);
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
  margin: 0 10px 10px 0;
}

.contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.contact-button.secondary {
  background: var(--background);
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  box-shadow: none;
}

.contact-button.secondary:hover {
  background: var(--primary-green);
  color: var(--background);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hidden {
  display: none;
}
/* FAQ END */
/* CONTACT */
.gv .contact-container {
  padding-top: 20px;
  padding-bottom: 20px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}

.contact-header h1 {
  font-size: var(--fs-xxl);
  color: var(--primary-green);
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(26, 92, 74, 0.1);
}

.contact-header p {
  font-size: var(--fs-md);
  color: var(--background);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.contact-container .contact-info {
  background: var(--background);
  border-radius: 4px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(26, 92, 74, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.3s forwards;
}

.contact-container .contact-info:hover {
  border-color: var(--primary-green);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(26, 92, 74, 0.15);
}

.contact-form-container {
  background: var(--background);
  border-radius: 4px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(26, 92, 74, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.6s forwards;
}

.contact-form-container:hover {
  border-color: var(--primary-green);
}

.section-title {
  color: var(--secondary-green);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-green), #16a34a);
  border-radius: 2px;
}

.contact-methods {
  margin-bottom: 35px;
}

.contact-method {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  padding: 20px;
  background: var(--accent-green);
  border-radius: 4px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.contact-method:hover {
  background: var(--accent-green);
  border-color: var(--primary-green);
  transform: translateX(5px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-green), #16a34a);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 1.2rem;
  color: var(--background);
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
  flex-shrink: 0;
}

.contact-details h3 {
  color: var(--secondary-green);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-details p {
  color: var(--dark-text);
  font-size: 0.95rem;
  line-height: 1.4;
}

.office-hours {
  background: #f8fffe;
  border-radius: 15px;
  padding: 25px;
  border: 2px solid #e8f5f3;
}

.office-hours h3 {
  color: #1a5c4a;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.hours-list {
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: #4a7c59;
  font-size: 0.95rem;
}

.hours-list li:last-child {
  margin-bottom: 0;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.contact-form .form-group {
  position: relative;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form .form-input,
.contact-form .form-textarea,
.contact-form .form-select {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e8f5f3;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--background);
  transition: all 0.3s ease;
  resize: vertical;
}

.contact-form .form-input:focus,
.contact-form .form-textarea:focus,
.contact-form .form-select:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.contact-form .form-textarea {
  min-height: 120px;
  max-height: 200px;
}

.contact-form .form-label {
  position: absolute;
  top: -12px;
  left: 0;
  color: var(--text-dark);
  font-size: 1rem;
  pointer-events: none;
  transition: all 0.3s ease;
  background: var(--background);
  padding: 0 5px;
}

.contact-form .form-input:focus + .contact-form .form-label,
.contact-form .form-input:not(:placeholder-shown) + .contact-form .form-label,
.contact-form .form-textarea:focus + .contact-form .form-label,
.contact-form
  .form-textarea:not(:placeholder-shown)
  + .contact-form
  .form-label,
.contact-form .form-select:focus + .contact-form .form-label,
.contact-form .form-select:not([value=""]) + .contact-form .form-label {
  top: -8px;
  left: 15px;
  font-size: 0.85rem;
  color: var(--primary-green);
  font-weight: 600;
}

.priority-selector {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.priority-option {
  flex: 1;
  padding: 12px 15px;
  border: 2px solid #e8f5f3;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 500;
}

/* .priority-option:hover {
  border-color: var(--primary-green);
  background: #f8fffe;
} */

.priority-option.active {
  background: var(--primary-green);
  color: var(--background);
  border-color: var(--primary-green);
}

.priority-low {
  border-color: #10b981;
}
.priority-medium {
  border-color: #f59e0b;
}
.priority-high {
  border-color: #ef4444;
}

.priority-low.active {
  background: #10b981;
}
.priority-medium.active {
  background: #f59e0b;
}
.priority-high.active {
  background: #ef4444;
}

.submit-btn {
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  color: var(--background);
  padding: 15px 30px;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
  margin-top: 10px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
  background: linear-gradient(135deg, #16a34a, #15803d);
}

.submit-btn:active {
  transform: translateY(0);
}

.map-section {
  margin-top: 60px;
  background: var(--background);
  border-radius: 4px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(26, 92, 74, 0.1);
  text-align: center;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.9s forwards;
}

.map-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #e8f5f3, #f8fffe);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  /* border: 2px dashed var(--primary-green); */
  color: #4a7c59;
  font-size: 1.1rem;
  font-weight: 500;
}
.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}
/* CONTACT END */
/* AUTH FORM */
.gv .auth {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding-top: 20px;
  padding-bottom: 20px;
}
.registration-container {
  background: var(--background);
  padding: 40px;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(34, 139, 34, 0.1);
  width: 100%;
  max-width: 550px;
  border: 1px solid rgba(34, 139, 34, 0.1);
}
.registration-container .logo-text {
  color: var(--text-dark);
}

.registration-container h1 {
  color: var(--primary-green);
  text-align: center;
  font-size: 28px;
  margin-bottom: 8px;
  font-weight: 600;
}

.subtitle {
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 30px;
  font-size: 15px;
}

.registration-container .form-group {
  margin-bottom: 20px;
}

.registration-container .form-row {
  display: flex;
  gap: 15px;
}

.registration-container .form-row .form-group {
  flex: 1;
}

label {
  display: block;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: var(--fs-md);
}

.registration-container input[type="text"],
.registration-container input[type="email"],
.registration-container input[type="password"],
.registration-container input[type="tel"],
.registration-container input[type="file"],
.registration-container input[type="date"] {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 4px;
  font-size: var(--fs-md);
  font-weight: 600;
  transition: all 0.3s ease;
  background: #fafafa;
}

.registration-container input[type="text"]:focus,
.registration-container input[type="email"]:focus,
.registration-container input[type="password"]:focus,
.registration-container input[type="tel"]:focus {
  outline: none;
  border-color: var(--primary-green);
  background: var(--background);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 25px;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--primary-green);
  transform: scale(1.2);
}

.checkbox-group label {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #6b7280;
}

.checkbox-group a {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 500;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

.register-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-green), #16a34a);
  color: var(--background);
  padding: 16px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.register-btn:hover {
  background: linear-gradient(135deg, #16a34a, #15803d);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}

.register-btn:active {
  transform: translateY(0);
}

.divider {
  text-align: center;
  margin: 25px 0;
  position: relative;
  color: #9ca3af;
  font-size: 14px;
}

.divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e5e7eb;
  z-index: 1;
}

.divider span {
  background: var(--background);
  padding: 0 15px;
  position: relative;
  z-index: 2;
}

.login-link {
  text-align: center;
  color: #6b7280;
  font-size: 14px;
}

.login-link a {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 500;
}

.login-link a:hover {
  text-decoration: underline;
}

.password-strength {
  margin-top: 8px;
  font-size: 12px;
}

.strength-bar {
  height: 4px;
  border-radius: 2px;
  background: #e5e7eb;
  margin-top: 4px;
  overflow: hidden;
}

.strength-fill {
  height: 100%;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* AUTH FORM END */
/* FOOTER */
.footer {
  width: 100%;
  background: var(--secondary-green);
  color: var(--background);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(34, 197, 94, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(34, 197, 94, 0.1) 0%,
      transparent 50%
    );
}

.footer-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand {
  max-width: 300px;
}

.logo {
  display: flex;
  align-items: center;
}
.footer .logo {
  margin-bottom: 20px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-green), #16a34a);
  color: var(--background);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-weight: bold;
  font-size: 1.2rem;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--background);
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--background);
  text-decoration: none;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: var(--primary-green);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(34, 197, 94, 0.4);
}

.footer-column h4 {
  color: var(--background);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-green);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-links a:hover {
  color: var(--primary-green);
  transform: translateX(5px);
}

.contact-info {
  list-style: none;
}

.contact-info li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-icon {
  width: 20px;
  height: 20px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.newsletter-input {
  flex: 1;
  padding: 12px 15px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--background);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--primary-green);
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
  padding: 12px 20px;
  background: var(--primary-green);
  color: var(--background);
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background: #16a34a;
  transform: translateY(-2px);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  margin: 40px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary-green);
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.back-to-top {
  position: fixed;
  bottom: 180px;
  right: 16px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-green), #16a34a);
  color: var(--background);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

/* FOOTER */
/* Terms */
.termheader {
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  color: var(--background);
  padding: 60px 0;
  text-align: center;
  width: 100%;
  box-shadow: 0 4px 20px rgba(46, 204, 113, 0.3);
}

.termheader h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(20, 83, 45, 0.3);
}

.termheader .subtitle {
  font-size: 1.2rem;
  opacity: 0.95;
  font-weight: 300;
  color: var(--background);
}

.termcontainer {
  width: 100%;
  margin: 0 auto;
}

.termcontent {
  background: var(--background);
  margin: -30px auto 40px;
  padding: 50px;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.1);
  position: relative;
  z-index: 2;
}

.termlast-updated {
  background: rgba(46, 204, 113, 0.1);
  color: var(--secondary-green);
  padding: 15px 25px;
  border-radius: 12px;
  margin-bottom: 40px;
  border-left: 4px solid var(--primary-green);
  font-weight: 500;
}

.termsection {
  margin-bottom: 40px;
}

.termsection h2 {
  color: var(--secondary-green);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-green);
  position: relative;
}

.termsection h2::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--secondary-green);
}

.termsection h3 {
  color: var(--secondary-green);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 25px 0 15px 0;
}

.termsection p {
  margin-bottom: 15px;
  text-align: left;
  font-weight: 600;
}

.termsection ul,
.termsection ol {
  margin: 15px 0 15px 30px;
}

.termsection li {
  margin-bottom: 8px;
  font-family: var(--ff-quicksand);
  font-weight: 600;
}

.termhighlight-box {
  background: linear-gradient(
    135deg,
    rgba(46, 204, 113, 0.1),
    rgba(46, 204, 113, 0.05)
  );
  border: 1px solid rgba(46, 204, 113, 0.2);
  border-radius: 12px;
  padding: 25px;
  margin: 25px 0;
  border-left: 5px solid var(--primary-green);
}

.warning-box {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 12px;
  padding: 25px;
  margin: 25px 0;
  border-left: 5px solid #ffc107;
}

.warning-box h4 {
  color: var(--secondary-green);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.termcontact-info {
  background: var(--secondary-green);
  color: var(--background);
  padding: 40px;
  border-radius: 4px;
  margin: 40px 0;
  text-align: center;
}

.termcontact-info h3 {
  color: var(--background);
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.termcontact-info p {
  margin-bottom: 10px;
}

.termcontact-info a {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 500;
}

.termcontact-info a:hover {
  text-decoration: underline;
}

.table-of-contents {
  background: rgba(46, 204, 113, 0.05);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
}

.table-of-contents h3 {
  color: var(--secondary-green);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.table-of-contents ul {
  list-style: none;
  margin: 0;
}

.table-of-contents li {
  margin-bottom: 8px;
}

.table-of-contents a {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.table-of-contents a:hover {
  color: var(--secondary-green);
  text-decoration: underline;
}
/* Terms End */
/* Privacy */
.privacycontainer {
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
}

.privacyheader {
  text-align: center;
  /* margin-bottom: 50px; */
  padding: 40px 0;
  background: linear-gradient(135deg, var(--primary-green) 0%, #27ae60 100%);
  border-radius: 4px 4px 0 0;
  color: var(--background);
  box-shadow: 0 10px 30px rgba(46, 204, 113, 0.3);
  position: relative;
  overflow: hidden;
}

.privacyheader::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: shimmer 6s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
}

.privacyheader h1 {
  font-size: 3em;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.privacyheader p {
  font-size: 1.2em;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.privacycontent {
  background: var(--background);
  padding: 20px;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 15px 40px rgba(20, 83, 45, 0.1);
  border: 2px solid rgba(46, 204, 113, 0.1);
  position: relative;
}

.privacycontent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-green) 0%,
    var(--secondary-green) 100%
  );
  border-radius: 20px 20px 0 0;
}

.privacysection {
  margin-bottom: 40px;
  padding: 30px;
  border-radius: 15px;
  background: linear-gradient(145deg, var(--background) 0%, #f9fffe 100%);
  border-left: 5px solid var(--primary-green);
  transition: all 0.3s ease;
}

.privacysection:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46, 204, 113, 0.15);
}

.privacysection h2 {
  color: var(--secondary-green);
  font-size: 1.8em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.privacysection h2::before {
  content: "🌱";
  font-size: 0.8em;
}

.privacysection h3 {
  color: var(--primary-green);
  font-size: 1.3em;
  margin-top: 25px;
  margin-bottom: 15px;
}

.privacysection p {
  margin-bottom: 15px;
  text-align: left;
  font-weight: 600;
}

.privacyhighlight {
  background: linear-gradient(
    120deg,
    rgba(46, 204, 113, 0.1) 0%,
    rgba(46, 204, 113, 0.05) 100%
  );
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid var(--primary-green);
  margin: 20px 0;
  font-weight: 500;
}

.privacycontact-info {
  background: linear-gradient(135deg, var(--secondary-green) 0%, #1e6b3a 100%);
  color: var(--background);
  padding: 30px;
  border-radius: 4px;
  text-align: center;
  margin-top: 40px;
}

.privacycontact-info h3 {
  margin-bottom: 15px;
  font-size: 1.5em;
}

.privacycontact-info a {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 600;
  overflow-wrap: break-word;
  transition: color 0.3s ease;
}

.privacycontact-info a:hover {
  color: var(--background);
}

.privacylast-updated {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  background: rgba(46, 204, 113, 0.05);
  border-radius: 10px;
  font-style: italic;
  color: #14532d;
}

.privacycontent ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.privacycontent li {
  margin-bottom: 8px;
}

/* Privacy End */
/* home end */

/* responsive design */
@media screen and (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
  }
}
@media screen and (max-width: 980px) {
  .gv .home .banner {
    flex-direction: column;
  }
  :is(.gv .home .banner .banner-content, .gv .home .banner .banner-action) {
    max-width: 100%;
    height: unset;
  }
  .gv header nav {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    background: var(--secondary-green);
  }
  .gv header nav .nav-btn {
    width: 100%;
    display: none;
    margin-top: 0;
    transition: all 0.3s ease-in-out;
  }
  .gv header nav .nav-btn.active {
    display: block;
    margin-top: 10px;
    transition: all 0.3s ease-in-out;
  }
  .gv header nav .nav-btn .g-btn {
    background: var(--background);
    color: var(--secondary-green);
    width: 100%;
  }
  .gv header nav ul {
    max-height: 0;
    margin-top: 0;
    flex-direction: column;
    width: 100%;
    background: var(--secondary-green);
    gap: 0;
    transition: max-height 0.3s ease-in-out;
    overflow: hidden;
  }
  .gv header nav ul.active {
    max-height: 500px;
    margin-top: 10px;
    transition: max-height 0.3s ease-in-out;
  }

  .gv header nav ul li {
    width: 100%;
    text-align: left;
    padding: 20px 0;
    border-bottom: 1px solid var(--background);
  }
  .gv header nav ul li:last-child {
    border-bottom: none;
  }
  .gv header nav ul li a {
    width: 100%;
    display: block;
    text-align: left;
  }
  .gv header nav .menu {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 780px) {
  .gv .home .banner .banner-content h1,
  .why-choose-us h2,
  .plan-header h1,
  .test-header h1 {
    font-size: var(--fs-xl);
    line-height: 70px;
  }
  .gv .padded {
    padding: 50px 20px;
  }
  .gv header nav {
    padding: 20px;
  }
  .plan-container {
    padding: 2rem 1rem;
  }

  .plan-header h1 {
    font-size: 1.8rem;
  }

  .plans-grid {
    grid-template-columns: 1fr;
  }
  .about-hero h1 {
    font-size: 2.2rem;
  }

  .about-content,
  .video-container,
  .mission-vision {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .video-container:nth-child(even) .video-content {
    order: 2;
  }

  .about-container {
    padding: 0 1rem;
  }

  .section {
    padding: 3rem 0;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card {
    padding: 25px;
  }

  .cta-section {
    padding: 35px 25px;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }
  .f-header h1 {
    font-size: 2.2rem;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-answer-content {
    padding: 0 20px 25px 20px;
  }

  .contact-section {
    padding: 30px 20px;
  }

  .contact-section h2 {
    font-size: 1.6rem;
  }

  .faq-categories {
    gap: 10px;
  }

  .category-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  .footer-content {
    padding: 40px 20px 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: left;
  }

  .footer-brand {
    max-width: none;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    order: -1;
  }

  .newsletter-form {
    flex-direction: column;
  }

  /* .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  } */
  .contact-header h1 {
    font-size: 2.2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-container .contact-info,
  .contact-form-container {
    padding: 30px 25px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .priority-selector {
    flex-direction: column;
  }

  .map-section {
    padding: 30px 20px;
  }

  .contact-method {
    padding: 15px;
  }

  .termcontact-icon {
    width: 45px;
    height: 45px;
    margin-right: 15px;
  }
  .termheader h1 {
    font-size: 2.2rem;
  }

  .termheader .subtitle {
    font-size: 1rem;
  }

  .termcontent {
    padding: 30px 25px;
    margin: -20px 20px 20px;
  }

  .termsection h2 {
    font-size: 1.5rem;
  }

  .termcontact-info {
    padding: 30px 20px;
  }

  .privacycontainer {
    padding: 0;
  }

  .privacyheader h1 {
    font-size: 2.2em;
  }

  .privacycontent {
    padding: 30px 20px;
  }

  .privacysection {
    padding: 20px;
  }
  .privacycontent,
  .privacyheader {
    border-radius: 0;
  }
}

@media screen and (max-width: 660px) {
  .gv .stats .stat {
    max-width: 500px;
  }
}
@media screen and (max-width: 480px) {
  .footer-bottom-links {
    flex-direction: column;
    gap: 15px;
  }
  .registration-container {
    padding: 30px 20px;
  }

  .registration-container .form-row {
    flex-direction: column;
    gap: 0;
  }

  .registration-container .registration-container h1 {
    font-size: 24px;
  }
}
/* responsive design end */
