/* General Reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
    font-family: Arial, sans-serif;
}


/* Navbar Styling */
.main-grid {
    display: grid;
    height: 15vh;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(246, 245, 245);
    color: black;
    position: sticky;
    top: 0;
    z-index: 1000;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
}

.grid-1{
    display: flex;
    margin-left: 70px;
    height: 100px;
    align-items: center;
}

.grid-2{
    display: flex;
    /*justify-content: space-between;*/
    gap: 30px;
    align-content: center;
   height: 100px;
   align-items: center;
}
.grid-2 a{
    text-decoration: none;
    color: black;
    font-size: large;
}
.grid-3{
    display: flex;
    clear: none;
    justify-content: right;
    height: 100px;
    align-items: center;
}

.g3n1{
    margin-right: 60px;
    background-color: rgb(142, 177, 0);
    padding: 10px 30px;
    color: white;
    font-size: large;
    border-radius: 8px;
    border: none;
}

.g3n1:hover{
    background-color: rgb(246, 245, 245);
    color: black;
    cursor: pointer;
    transition: 0.5s;
    border: 3px solid green;
}

.main-grid-1{
    display: flex;
    justify-content: left;
    align-items: center;
    height: 7vh;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 45px;
}

.mg1n1{
    padding: 10px 40px;
    font-size: large;
}
.mg1n1 a{
    text-decoration: none;
    color: black;
}

.mg1n2{
    padding: 10px 40px;
    font-size: large;
    text-decoration: none;
}
.mg1n2 a{
    text-decoration: none;
    color: black;
}

.mg1n1:hover{
    background-color: rgb(246, 245, 245);
    color: black;
    cursor: pointer;
    transition: 0.5s;
}
.mg1n3{
    padding: 10px 40px;
    font-size: large;

}
.mg1n2:hover{
    background-color: rgb(246, 245, 245);
    color: black;
    cursor: pointer;
    transition: 0.5s;
}
.mg1n3:hover{
    background-color: rgb(246, 245, 245);
    color: black;
    cursor: pointer;
    transition: 0.5s;
}
.mg1n3 a{
    text-decoration: none;
    color: black;
}
.mg1n4{
    padding: 10px 40px;
    font-size: large;

}
.mg1n4 a{
    text-decoration: none;
    color: black;
}
.mg1n4:hover{
    background-color: rgb(246, 245, 245);
    color: black;
    cursor: pointer;
    transition: 0.5s;
}

.heading-1{
    clear: none;
    font-size: 1em;
    margin-top: 80px;
    text-align: center;
    color: rgb(63, 62, 62);
}

hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #aaa, transparent);
    margin: 2em 0;
}


.main-grid-2{
    display: grid;
    justify-content: center;
    align-items: center;
    align-content: center;  
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    margin-top: 50px; 
    padding-left: 80px;
    padding-right: 80px;
    gap: 1rem;
    align-items: stretch;
    flex-direction: column;
}

.mg2n1{
    /*border: 1px solid grey;*/
    border-left: 1px solid grey;
    border-radius: 18px;
    align-content: center;
    justify-content: center;
    padding: 20px;
    color: rgb(63, 62, 62);
}

.mg2n1-1{
    display: flex;
    justify-content: left;
    align-items: top;
    font-size: 15px;
}
.mg2n1-2{
    display: flex;
    justify-content: left;
    align-items: top;
    font-size: 15px;
}
.mg2n1-1 img{
    width: 20px;
    height: 20px;
}
.mg2n1-2 img{
    width: 20px;
    height: 20px;
}



/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 20px;
    background: linear-gradient(to right, #e1f1f5, #eff0f6);
    min-height: 75vh;
    padding-left: 80px;
}

.hero-content {
    max-width: 50%;
}

.hero-content h1 {
    font-size: 3em;
}

.hero-content p {
    padding-top: 60px;
    margin-top: 60px;
    font-size: 1.2em;
}

/*.hero-content .cta-button {
    margin-top: 20px;
}*/

.hero-button {
    background-color: rgb(227, 118, 143);
    color: white;
    padding: 10px 30px;
    font-size: medium;
    border-radius: 20px;
    border: none;
}
.hero-button:hover {
    background-color: rgb(246, 245, 245);
    color: black;
    cursor: pointer;
    transition: 0.5s;
    border: 2px solid rgb(227, 118, 143);
}

/* Hero Image */
.hero-image img {
    width: 60vh;
    /*transform: rotate(-10deg);*/
    border-radius: 20px;
}

/* Features Section */
.features-section {
    padding: 50px 20px;
}


.newsletter-section {
    background-color: rgb(246, 245, 245);
    padding: 3rem 1rem;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
    color: #4a4a4a;
    margin-top: 80px;
  }
  
  .newsletter-container {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .newsletter-container h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #3a3a3a;
  }
  
  .newsletter-container p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .right-section {
    background-color: white;
    padding: 1rem 1rem;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
    color: #4a4a4a;
    margin-top: 50px;
  }
  
  .right-container {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .right-container h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #3a3a3a;
  }
  
  .right-container p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }



  
  .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .newsletter-form input {
    padding: 0.8rem 1rem;
    width: 100%;
    max-width: 400px;
    border: 1px solid #ccc;
    border-radius: 30px;
    font-size: 1rem;
  }
  
  .newsletter-form button {
    background-color: rgb(142, 177, 0);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .newsletter-form button:hover {
    background-color: #a57d5c;
  }
  .hero-button1 {
    background-color: rgb(142, 177, 0);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .hero-button1:hover {
    background-color: #a57d5c;
  }
  .stats-section {
    display: flex;
    justify-content: center;
    gap: 3rem;
    background-color: none;
    padding: 3rem 1rem;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
    margin-top: 40px;
  }
  
  .stat-box h3 {
    font-size: 3rem;
    color: #8f6e4f;
    margin-bottom: 0.5rem;
  }
  
  .stat-box p {
    font-size: 1.1rem;
    color: #4a4a4a;
  }
  
.footer {
    background-color:rgb(246, 245, 245);
    color: #4b4b4b;
    padding: 3rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', sans-serif;
    margin-top: 40px;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  
  .footer-brand {
    flex: 1 1 300px;
  }
  
  .footer-brand h2 {
    font-size: 1.8rem;
    color: #3a3a3a;
    margin-bottom: 0.5rem;
  }
  
  .footer-brand p {
    max-width: 300px;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .footer-links,
  .footer-contact {
    flex: 1 1 200px;
  }
  
  .footer-links h4,
  .footer-contact h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #2e2e2e;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 0.5rem;
  }
  
  .footer-links a {
    text-decoration: none;
    color: #6a6a6a;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #8f6e4f;
  }
  
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #ddd;
    padding-top: 1rem;
    margin-top: 2rem;
    font-size: 0.9rem;
  }
  
  .aiwei1{
    font-size: 1.5rem;
  }

  .whatsapp-float {
    position:fixed;
    bottom:20px;
    right:20px;
    background:rgb(142, 177, 0);
    color:#fff;
    font-size:20px;
    padding:15px;
    border-radius:50%;
    text-decoration:none;
  }
/*
  .how-section {
    text-align: center;
    padding: 60px 20px;
  }
  
  .how-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
  }
  
  .subtext {
    color: #666;
    margin-bottom: 40px;
  }
  
  .cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    width: 280px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }
  
  .icon {
    font-size: 28px;
    margin-bottom: 10px;
  }
  
  .card h3 {
    margin-bottom: 10px;
    color: #333;
  }
  
  .card p {
    font-size: 14px;
    color: #666;
  }*/

  .how-flow {
    padding: 70px 20px;
    text-align: center;
  }
  
  .steps {
    margin-top: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    text-align: left;
    position: relative;
    padding-left: 10px;
  }
  
  .circle {
    min-width: 40px;
    height: 40px;
    background: #e26d7d;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
  }
  
  .content h3 {
    margin-bottom: 5px;
  }
  
  .content p {
    color: #666;
    font-size: 14px;
  }

.step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 45px;
  width: 2px;
  height: 40px;
  background: #ddd;
}


.why-section {
  padding: 70px 20px;
  text-align: center;
  background: #faf8f6;
}

.why-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.why-card {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  width: 260px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-6px);
}

.why-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.who-section {
  padding: 70px 20px;
  text-align: center;
}

.who-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.who-item {
  background: #f1ebe7;
  padding: 12px 18px;
  border-radius: 30px;
  font-size: 14px;
  transition: 0.3s;
}

.who-item:hover {
  background: #e26d7d;
  color: white;
}
.misconcep {
  background-color: rgb(246, 245, 245);
  padding-top: 0.7rem;
  padding-bottom: 7rem;
}


.how-zigzag {
  padding: 80px 20px;
  text-align: center;
}

.zigzag {
  position: relative;
  max-width: 800px;
  margin: 50px auto;
}

.zigzag::before {
  content: '';
  position: absolute;
  left: 50%;
  width: 2px;
  height: 100%;
  background: #eee;
  transform: translateX(-50%);
}

.zigzag-item {
  width: 50%;
  padding: 20px;
  position: relative;
}

.zigzag-item.left {
  left: 0;
  text-align: right;
}

.zigzag-item.right {
  left: 50%;
  text-align: left;
}

.box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  display: inline-block;
  max-width: 300px;
  text-align: center;
}

.box h3 {
  margin-bottom: 8px;
}

.box p {
  font-size: 14px;
  color: #666;
}

@media (max-width: 1200px) {
  .zigzag::before {
    left: 10px;
  }

  .zigzag-item {
    width: 100%;
    padding-left: 30px;
    text-align: left;
  }

  .zigzag-item.right {
    left: 0;
  }
}

.box:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}

.icon {
  width: 40px;
  height: 40px;
  background: #f1ebe7;
  color: #a57d5c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 18px;
}

.zigzag-item::after {
  content: '';
  position: absolute;
  top: 30px;
  right: -8px;
  width: 12px;
  height: 12px;
  background: #a57d5c;
  border-radius: 50%;
}

.zigzag-item.right::after {
  left: -8px;
}

.zigzag-item .box {
  text-align: center;
}

.g2n6{
  display: none;
}

@media (max-width: 1200px) {
    .main-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        height: auto;
    }
    .grid-1, .grid-2, .grid-3 {
        justify-content: center;
        margin: 0;
    }
    .grid-2 {
        flex-direction: column;
        align-items: center;
        gap: 12px;
	margin-bottom: 50px;
	margin-top: 30px;
    }
   /* .grid-2 a{
        padding:6px 10px;
    }*/

    .grid-3 {
    /*    margin-top: 20px;
        border: 2px solid green;
        align-items: center;*/
        display: none;
    }
    .hero-section {
            flex-direction: column-reverse;
            align-items: center;
	    padding: 20px 90px;
	    min-height: auto;
	    text-align: center;
    }
    .hero-image img {
    width: 100px;
    height: 100px;
}
.main-grid-1 {
        display: none;
}
.g2n5 {
	display:none;
	background-color: rgb(142, 177, 0);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    animation: none;
    }
    .g2n5 a{
	    color: white;
    }

      .main-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 40px;
  }
    .g2n6 {
    display: contents;
  }
}

/* 🔥 MAIN HEADING FIX */
.hero-title {
  font-size: clamp(1.2rem, 4vw, 3rem); /* responsive */
  font-weight: 1000;
  white-space: nowrap; /* 👈 keeps single line */
}

/* highlight */
.hero-title span {
  color: #6b8e23;
}

.hero-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;              /* 🔥 IMPORTANT */
  margin: 15px 0;
}

/* lines */
.hero-tagline::before,
.hero-tagline::after {
  content: "";
  flex: 0 0 80px;           /* 🔥 fixed width but allows proper alignment */
  height: 2px;
  background: #6b8e23;
  margin: 0 15px;
}

/* text */
.hero-tagline span {
  color: #2c3e50;
  white-space: nowrap;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: 900;
}

.hero-tagline strong {
  background: rgba(107, 142, 35, 0.2);
  padding: 2px 6px;
  border-radius: 4px;
}

@media (max-width: 1200px) {
  .hero-tagline::before {
	  display: none;
  }
  
  .hero-tagline::after {
    display: none;   /* 🔥 remove lines */
  }
}


.hr-nav {
	display: none;
}

@media (max-width: 1200px) {
	.hr-nav {
		display: block;
	}
}
