.elementor-2365 .elementor-element.elementor-element-ab25bd5{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2365 .elementor-element.elementor-element-0d2154a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2365 .elementor-element.elementor-element-b7768ee{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2365 .elementor-element.elementor-element-4dac4c6{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2365 .elementor-element.elementor-element-ffd2315{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-08c248c *//* REMOVE ALL GAPS */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* FORCE FULL WIDTH */
.full-hero {
  position: relative;

  width: 100vw;               /* 🔥 FULL WIDTH FORCE */
  margin-left: calc(-50vw + 50%);  /* 🔥 CENTER FIX */

  height: 70vh;

  background: url("https://images.unsplash.com/photo-1589927986089-35812388d1f4") center/cover no-repeat;

  display: flex;
  align-items: center;
}

/* OVERLAY */
.full-overlay {
  position: absolute;
  width: 100%;
  height: 100%;

  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.6) 40%,
    rgba(0,0,0,0.2) 70%,
    transparent 100%
  );
}

/* CONTENT */
.full-content {
  position: relative;
  max-width: 600px;
  margin-left: 80px;
  color: #fff;
}

/* BADGE */
.full-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 15px;
}

/* HEADING */
.full-content h1 {
  font-size: 60px;
  line-height: 1.2;
  margin-bottom: 15px;
   color: #fff;
}

/* TEXT */
.full-content p {
  font-size: 16px;
  color: #ddd;
  margin-bottom: 25px;
}

/* BUTTONS */
.full-btns {
  display: flex;
  gap: 15px;
}

/* BUTTON */
.fbtn {
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

/* PRIMARY */
.fbtn.primary {
  background: #6f8f74;
  color: #fff;
}

/* SECONDARY */
.fbtn.secondary {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(6px);
}

/* HOVER */
.fbtn.primary:hover {
  background: #5c7a61;
}

.fbtn.secondary:hover {
  background: rgba(255,255,255,0.25);
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .full-hero {
    height: auto;
    padding: 80px 20px;
  }

  .full-content {
    margin-left: 0;
  }

  .full-content h1 {
    font-size: 32px;
  }

  .full-btns {
    flex-direction: column;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-de58572 *//* RESET */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
}

/* SECTION */
.seed-section {
  background: #f5f1ea;
  padding: 90px 20px;
}

/* CONTAINER */
.seed-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* TITLE */
.title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* SUBTITLE */
.subtitle {
  color: #777;
  max-width: 620px;
  margin: auto;
  margin-bottom: 55px;
  line-height: 1.6;
}

/* HEADINGS */
.head-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 35px;
}

.head-left,
.head-right {
  font-size: 20px;
  font-weight: 600;
}

/* LINE */
.line {
  display: inline-block;
  width: 30px;
  height: 3px;
  margin-right: 10px;
  vertical-align: middle;
}

.green {
  background: #6f8f74;
}

.brown {
  background: #c49a6c;
}

/* GRID */
.main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* COLUMN */
.grid-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

/* CARD */
.card {
  padding: 26px;
  border-radius: 16px;
  text-align: left;
  transition: 0.3s;
}

/* COLORS */
.white {
  background: #ffffff;
}

.beige {
  background: #e9e3da;
}

/* ICON */
.icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 18px;
}

.green-bg {
  background: #e5ebe5;
}

.brown-bg {
  background: #d9cfc3;
}

/* TEXT */
.card h4 {
  margin-bottom: 6px;
  font-size: 16px;
}

.card p {
  font-size: 14px;
  color: #666;
}

/* HOVER */
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.08);
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .main-grid {
    grid-template-columns: 1fr;
  }

  .grid-col {
    grid-template-columns: 1fr;
  }

  .head-row {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .title {
    font-size: 26px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-41b9cd3 *//* RESET */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
}

/* FULL WIDTH SECTION */
.plan-sec-full {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #f5f1ea;
  padding: 80px 0;
  display: flex;
  justify-content: center;
}

/* CARD WRAPPER */
.plan-wrapper {
  width: 100%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* LEFT */
.plan-left {
  padding: 40px;
}

/* BADGE */
.badge {
  background: #e5ebe5;
  color: #4f6f55;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  display: inline-block;
  margin-bottom: 15px;
}

/* TITLE */
.plan-left h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

/* DESC */
.desc {
  color: #666;
  margin-bottom: 25px;
}

/* FEATURES */
.features {
  list-style: none;
  padding: 0;
}

.features li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 25px;
}

.features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #6f8f74;
}

/* RIGHT */
.plan-right {
  background: #f1ede6;
  padding: 40px;
  text-align: center;
}

/* LABEL */
.label {
  font-size: 12px;
  color: #777;
}

/* PRICE */
.plan-right h1 {
  font-size: 36px;
  margin: 10px 0;
}

.plan-right span {
  font-size: 16px;
  color: #777;
}

/* SMALL */
.small {
  font-size: 14px;
  color: #777;
  margin-bottom: 25px;
}

/* BUTTON */
.subscribe-btn {
  background: #6f8f74;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 10px;
  width: 100%;
  cursor: pointer;
  font-size: 16px;
  margin-bottom: 15px;
  transition: 0.3s;
}

.subscribe-btn:hover {
  background: #5c7a61;
}

/* SECURE */
.secure {
  font-size: 12px;
  color: #888;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .plan-wrapper {
    grid-template-columns: 1fr;
  }

  .plan-right {
    border-top: 1px solid #ddd;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0b8f1c9 *//* SECTION */
.ws-why-section {
  background: #f5f1ea;
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
}

/* CONTAINER */
.ws-container {
  max-width: 1100px;
  margin: auto;
}

/* GRID */
.ws-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* LEFT */
.ws-left h2 {
  margin-bottom: 30px;
}

.ws-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.ws-icon {
  width: 45px;
  height: 45px;
  background: #e6ece6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* RIGHT CARDS */
.ws-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
}

.ws-card {
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  font-weight: 500;
}

.ws-green { background: #e1efe5; }
.ws-blue { background: #e3ebf6; }
.ws-orange { background: #f3e6d6; }
.ws-purple { background: #ece4f5; }

/* TIMELINE */
.ws-timeline {
  position: relative;
  margin-top: 30px;
}

.ws-line {
  position: absolute;
  left: 50%;
  width: 2px;
  height: 100%;
  background: #ccc;
  transform: translateX(-50%);
}

.ws-step {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
}

.ws-left-step {
  justify-content: flex-start;
}

.ws-right-step {
  justify-content: flex-end;
}

/* BOX */
.ws-box {
  width: 45%;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}

.ws-box span {
  display: block;
  font-size: 13px;
  color: #777;
}

/* CIRCLE */
.ws-circle {
  width: 35px;
  height: 35px;
  background: #6f8f74;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* SPACING */
.ws-mt {
  margin-top: 30px;
}

/* MOBILE */
@media (max-width: 768px) {
  .ws-grid {
    grid-template-columns: 1fr;
  }

  .ws-box {
    width: 80%;
  }

  .ws-cards {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ad7ccdf */body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

/* SECTION */
.premium-form-section {
  background: #f5f1ea;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

/* CARD */
.premium-card {
  width: 100%;
  max-width: 700px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  overflow: hidden;
}

/* HEADER */
.premium-header {
  background: linear-gradient(135deg, #6f8f74, #5c7a60);
  text-align: center;
  padding: 35px 20px;
}

.premium-header h2 {
  color: #fff;
  margin: 0;
}

.premium-header p {
  color: rgba(255,255,255,0.85);
  margin-top: 8px;
}

/* BODY */
.premium-body {
  padding: 30px;
}

/* INPUT */
.premium-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.premium-group label {
  margin-bottom: 6px;
  font-size: 14px;
}

.premium-group input,
.premium-group select {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

/* ROW */
.premium-row {
  display: flex;
  gap: 15px;
}

/* CHECKBOX */
.premium-checkbox {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

/* NOTE */
.premium-note {
  font-size: 12px;
  color: #777;
  margin-bottom: 20px;
}

/* 🔥 BUTTON STYLE (ANCHOR FIX) */
.premium-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  width: 100%;
  background: linear-gradient(135deg, #6f8f74, #5c7a60);
  color: #fff;
  padding: 15px;
  border-radius: 12px;
  font-size: 16px;
  transition: 0.3s;
}

.premium-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .premium-row {
    flex-direction: column;
  }
}/* End custom CSS */