.elementor-2377 .elementor-element.elementor-element-349e78c{--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-2377 .elementor-element.elementor-element-81da49c{--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-2377 .elementor-element.elementor-element-103870f{--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-2377 .elementor-element.elementor-element-927bfc5{--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-2377 .elementor-element.elementor-element-bce06ff{--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-2377 .elementor-element.elementor-element-9d66579{--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-2377 .elementor-element.elementor-element-e32ebf3{--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-2377 .elementor-element.elementor-element-6d07afa{--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-51265da *//* FULL WIDTH */
.cta-section {
  position: relative;
  width: 100vw;
  height: 80vh;
  margin-left: calc(-50vw + 50%);

  background: url('https://images.unsplash.com/photo-1592982537447-7440770cbfc9') center/cover no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  overflow: hidden;
}

/* DARK OVERLAY */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* CONTENT */
.cta-content {
  position: relative;
  color: #fff;
  max-width: 800px;
  padding: 20px;
  z-index: 2;
}

/* HEADING */
.cta-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 4px 25px rgba(0,0,0,0.6);
   color: #fff;
}

/* TEXT */
.cta-content p {
  font-size: 18px;
  margin-bottom: 25px;
  opacity: 0.9;
}

/* BUTTONS */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* BUTTON STYLE */
.btn {
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s ease;
}

/* PRIMARY BUTTON */
.btn.primary {
  background: #6c9a7f;
  color: #fff;
}

.btn.primary:hover {
  transform: translateY(-3px);
  background: #5a866c;
}

/* SECONDARY BUTTON */
.btn.secondary {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  backdrop-filter: blur(6px);
}

.btn.secondary:hover {
  background: rgba(255,255,255,0.25);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cta-content h1 {
    font-size: 28px;
  }

  .cta-section {
    height: 60vh;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-6ace9a5 *//* FULL WIDTH FIX */
.fpo-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #f5f1ea;
  padding: 80px 20px;
}

/* CENTER CONTENT */
.fpo-inner {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* HEADING */
.fpo-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

/* SUBTEXT */
.subtitle {
  color: #6b6b6b;
  margin-bottom: 50px;
}

/* GRID */
.fpo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.fpo-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 18px;
  transition: 0.4s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* ICON */
.icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: #e9efe7;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: 0.3s;
}

/* TITLE */
.fpo-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* TEXT */
.fpo-card p {
  font-size: 14px;
  color: #666;
}

/* 🔥 HOVER EFFECT */
.fpo-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

/* ICON HOVER */
.fpo-card:hover .icon {
  background: #cfe3d5;
  transform: scale(1.1) rotate(5deg);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .fpo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .fpo-grid {
    grid-template-columns: 1fr;
  }

  .fpo-section h2 {
    font-size: 26px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c17cbe6 *//* FULL WIDTH */
.member-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #f5f1ea;
  padding: 80px 20px;
}

/* CENTER */
.member-inner {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

/* HEADING */
.member-section h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

/* BOX */
.member-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  text-align: left;
  transition: 0.3s;
}

/* LIST */
.member-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* LIST ITEMS */
.member-box ul li {
  font-size: 15px;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: #333;
}

/* ✔ ICON */
.member-box ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #6c9a7f;
  font-weight: bold;
}

/* HOVER EFFECT */
.member-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .member-section h2 {
    font-size: 26px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-82b620d *//* FULL WIDTH */
.benefits-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #f5f1ea;
  padding: 80px 20px;
}

/* CENTER */
.benefits-inner {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* HEADING */
.benefits-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

/* SUBTEXT */
.subtitle {
  color: #6b6b6b;
  margin-bottom: 50px;
}

/* GRID */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.benefit-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 18px;
  transition: 0.4s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: left;
}

/* ICON */
.icon {
  width: 55px;
  height: 55px;
  background: #e9efe7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 15px;
  transition: 0.3s;
}

/* TITLE */
.benefit-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

/* TEXT */
.benefit-card p {
  font-size: 14px;
  color: #666;
}

/* 🔥 HOVER EFFECT */
.benefit-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

/* ICON HOVER */
.benefit-card:hover .icon {
  background: #cfe3d5;
  transform: scale(1.1) rotate(5deg);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefits-section h2 {
    font-size: 26px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b402a49 *//* FULL WIDTH */
.rights-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #f5f1ea;
  padding: 80px 20px;
}

/* CENTER */
.rights-inner {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* HEADING */
.rights-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

/* GRID */
.rights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.right-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 18px;
  transition: 0.4s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* ICON */
.icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: #e9efe7;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: 0.3s;
}

/* TITLE */
.right-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

/* TEXT */
.right-card p {
  font-size: 14px;
  color: #666;
}

/* 🔥 HOVER EFFECT */
.right-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

/* ICON HOVER */
.right-card:hover .icon {
  background: #cfe3d5;
  transform: scale(1.1) rotate(5deg);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .rights-grid {
    grid-template-columns: 1fr;
  }

  .rights-section h2 {
    font-size: 26px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1da2063 *//* FULL WIDTH */
.responsibility-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #f5f1ea;
  padding: 80px 20px;
}

/* CENTER */
.responsibility-inner {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* HEADING */
.responsibility-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

/* GRID */
.responsibility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.res-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 18px;
  transition: 0.4s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* ICON */
.icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: #e9efe7;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: 0.3s;
}

/* TITLE */
.res-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

/* TEXT */
.res-card p {
  font-size: 14px;
  color: #666;
}

/* 🔥 HOVER EFFECT */
.res-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

/* ICON HOVER */
.res-card:hover .icon {
  background: #cfe3d5;
  transform: scale(1.1) rotate(5deg);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .responsibility-grid {
    grid-template-columns: 1fr;
  }

  .responsibility-section h2 {
    font-size: 26px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0bb76bc *//* SECTION */
.journey-sec {
  width: 100%;
  background: #f5f1ea;
  padding: 80px 20px;
}

/* CENTER */
.journey-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* TITLE */
.journey-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2b2b2b;
}

/* SUBTITLE */
.journey-sub {
  color: #7a7a7a;
  margin-bottom: 60px;
  font-size: 15px;
}

/* GRID */
.journey-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* ITEM */
.journey-item {
  flex: 1;
  min-width: 220px;
  text-align: center;
}

/* ICON BOX */
.journey-icon-box {
  width: 80px;
  height: 80px;
  background: #6f8f74;
  color: #fff;
  border-radius: 20px;
  margin: auto;
  margin-bottom: 15px;
  font-size: 30px;

  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;

  transition: 0.3s;
}

/* NUMBER BADGE */
.step-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #cfa36b;
  color: #000;
  font-size: 12px;
  width: 26px;
  height: 26px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: bold;
}

/* TEXT */
.journey-item h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #2b2b2b;
}

.journey-item p {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.5;
}

/* HOVER */
.journey-item:hover .journey-icon-box {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .journey-row {
    justify-content: center;
  }

  .journey-item {
    flex: 0 0 45%;
  }
}

@media (max-width: 600px) {
  .journey-item {
    flex: 0 0 100%;
  }

  .journey-title {
    font-size: 26px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-502aac1 */body {
  margin: 0;
  font-family: "Poppins", sans-serif;
}

/* SECTION */
.gm-sec {
  background: #f5f1ea;
  padding: 80px 20px;
}

/* CONTAINER */
.gm-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* TITLE */
.gm-title {
  font-size: 34px;
}

.gm-sub {
  color: #777;
  margin-bottom: 50px;
}

/* SUCCESS */
.success-msg {
  color: green;
  margin-bottom: 20px;
}

/* GRID */
.gm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  text-align: left;
}

/* FORM */
.gm-form {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.gm-form label {
  margin-top: 15px;
  display: block;
}

.gm-form input,
.gm-form select,
.gm-form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #fafafa;
}

.gm-form textarea {
  height: 120px;
}

/* BUTTON */
.gm-form button {
  width: 100%;
  margin-top: 18px;
  padding: 14px;
  background: #6f8f74;
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.gm-form button:hover {
  background: #5c7a61;
}

/* RIGHT SIDE */
.gm-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gm-box {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
}

.gm-box ul {
  list-style: none;
  padding: 0;
}

.gm-box ul li {
  margin-bottom: 10px;
}

.gm-help {
  background: #e6ebe6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .gm-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */