:root {
    --primary-color: #5B8E3E;
    --accent-color: #F8991C;
}
 
 body {
     font-family: "Nunito Sans", sans-serif;
     background-color: #F7F9F5;
 }

 .hero-section {
     background-image: url('../images/background/hero-background.png');
     min-height: 120vh;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     padding: 0px 10px;
 }

.hero-other {
  background-image:
    linear-gradient(rgba(23,42,12,0.75), rgba(43,78,23,0.75)),
    url('../images/background/hero-bg-2.jpg');
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* text-align: center; */
  padding: 0 10px;
  position: relative;
  color: #fff;
}

 .navbar {
     padding: 5px !important;
 }

 .navbar-brand img {
     height: 70px;
 }

 .nav-link {
     color: #333 !important;
     margin-right: 20px;
     word-wrap: none;
 }

 .nav-link.active {
     color: var(--primary-color) !important;
     border-bottom: 4px solid var(--primary-color);
     width: 25%;
     word-wrap: none;
 }

 .btn-primary-custom {
     background-color: var(--primary-color);
     border-radius: 25px;
     padding: 10px 25px;
     color: white;
     transition: all 0.3s ease;
 }

 .btn-primary-custom:hover {
     background-color: #3a7c3a;
     transform: translateY(-2px);
     color: white;
 }

 .btn-outline-custom {
     border: 2px solid white;
     border-radius: 25px;
     padding: 10px 25px;
     color: white;
     transition: all 0.3s ease;
 }

 .btn-outline-custom:hover {
     background-color: rgba(255, 255, 255, 0.1);
     color: white;
     transform: translateY(-2px);
 }

 .btn-outline-success{
    color: var(--primary-color) !important;
    border-radius: 25px !important;
    padding: 10px 25px !important;
    border: 1px solid var(--primary-color) !important;
    transition: all 0.3s ease;

 }

 .btn-outline-success:hover{
    background-color: var(--primary-color) !important;
    color: white !important;
    transform: translateY(-2px);
 }

 .btn-outline-link {
     border: 1px solid var(--primary-color);
     border-radius: 25px;
     padding: 10px 25px;
     color: var(--primary-color);
     transition: all 0.3s ease;
 }

 .btn-outline-link:hover {
     background-color: var(--primary-color);
     color: white;
     transform: translateY(-2px);
 }

 .btn-link {
     color: var(--primary-color);
     font-weight: 600;
     text-decoration: none;
     transition: all 0.3s ease;
 }

 .btn-link:hover {
     text-decoration: underline;
     color: var(--primary-color);
 }

 .tagline {
     background-color: rgba(255, 255, 255, 0.1);
     border-radius: 25px;
     padding: 8px 20px;
     display: inline-block;
     margin-top: 0;
     margin-bottom: 30px;
     color: white;
 }

 .highlight-text {
     color: var(--accent-color);
 }

 .main-heading {
     font-size: 3.5rem;
     font-weight: bold;
     margin-bottom: 20px;
     line-height: 1.2;
     color: white;
 }

 .subheading {
     max-width: 600px;
     margin: 0 auto 40px;
     font-size: 1.2rem;
     line-height: 1.6;
 }

@media (max-width: 991.98px) { 
  .button-group a.btn {
    width: 100%;
  }

  .button-group {
    flex-direction: column;
    align-items: stretch;
  }
}

.responsive-btn {
  width: 25%;
}

@media (max-width: 991.98px) { 
  .responsive-btn {
    width: 100%;
  }
}

 /* Statistics Section */
 .stats-section {
     display: flex;
     align-items: center;
     padding: 0;
     margin-bottom: 0;
     transform: translateY(-25%);
 }

 .image-container {
     position: relative;
     padding: 30px 0;
 }

 .main-image {
     width: 100%;
     max-width: 900px;
     border-radius: 20px;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
     display: block;
     margin: 0 auto;
 }

 .stat-card {
     position: absolute;
     background: white;
     padding: 10px 15px;
     border-radius: 15px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
     animation: float 3s ease-in-out infinite;
     z-index: 10;
     min-width: 200px;
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-10px);
     }
 }

 .stat-card-1 {
     top: 10%;
     left: -5%;
     animation-delay: 0s;
 }

 .stat-card-2 {
     bottom: 10%;
     left: -5%;
     animation-delay: 0.5s;
 }

 .stat-card-3 {
     top: 15%;
     right: -5%;
     animation-delay: 1s;
 }

 .stat-card-4 {
     bottom: 10%;
     right: -5%;
     animation-delay: 1.5s;
 }

 .stat-number {
     font-size: 1.8rem;
     font-weight: bold;
     color: black;
     margin-bottom: 5px;
     margin-top: 10px;
 }

 .stat-label {
     color: black;
     font-size: 0.95rem;
     margin-bottom: 0;
 }

 .avatar-group {
     display: flex;
 }

 .avatar {
     width: 35px;
     height: 35px;
     border-radius: 50%;
     border: 2px solid white;
     margin-left: -10px;
     object-fit: cover;
     background: linear-gradient(135deg, var(--primary-color), #2d5f3d);
 }

 .avatar:first-child {
     margin-left: 0;
 }

 .avatar-more {
     background: #2d5f3d;
     color: white;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 0.75rem;
     font-weight: bold;
 }

 .icon-wrapper {
     width: 45px;
     height: 45px;
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.3rem;
 }

 .icon-gold {
     background: #ffd700;
     color: white;
 }

 .icon-orange {
     background: var(--accent-color);
     color: white;
 }

 .icon-green {
     background: var(--primary-color);
     color: white;
 }

 @media (max-width: 992px) {
    .stats-section {
        transform: translateY(-20%);
        margin-bottom: 0;
    }
     .stat-card {
         position: static !important;
         margin-bottom: 15px;
         animation: none;
         margin-left: auto;
         margin-right: auto;
     }
     .stat-card-1{
        margin-top: 20px;
     }
     .main-heading {
         font-size: 2.5rem;
     }

     .image-container {
         padding: 20px 0;
     }
 }

 .section-heading {
     font-size: 20px;
     margin-bottom: 20px;
     color: var(--primary-color);
     font-weight: 700;
 }

 .section-subheading {
     color: #09170A;
     size: 32px;
     font-weight: 700;
     line-height: 1.4;
 }

 /* Why 3A's Section positioning */
 .why-3a-section {
     position: relative;
     transform: translateY(-15vh);
     margin-bottom: -5vh;
 }

 @media (max-width: 992px) {
     .why-3a-section {
         transform: translateY(-10vh);
         margin-bottom: -5vh;
     }
 }

 .service-cards .service-card-item .card {
     border: none;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
     border-radius: 16px;
     overflow: hidden;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     background: #fff;
 }

 /* hover effect */
 .service-cards .service-card-item .card:hover {
     transform: translateY(-8px);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
 }

 /* image styling with padding illusion */
 .service-cards .service-card-item .card-img-top {
     border-radius: 14px;
     object-fit: cover;
     width: 100%;
     height: 250px;
     padding: 10px;
     background: #f7f7f7;
 }

 /* title & text */
 .service-cards .service-card-item .card-title {
     font-weight: 700;
     font-size: 1.1rem;
     color: #222;
 }

 .service-cards .service-card-item .card-text {
     color: #666;
     font-size: 0.95rem;
     line-height: 1.6;
 }


 .service-cards .service-card-item .card-body {
     display: flex;
     flex-direction: column;
     justify-content: space-between;
 }

 .service-cards .service-card-item .card-body .btn {
     margin-top: 15px;
     align-self: stretch;
     border-radius: 30px;
     font-weight: 600;
     transition: all 0.3s ease;
 }


 .what-we-offer-section {
     background: #fafafa;
     padding: 80px 0;
 }

 .membership-cta-section {
     background: linear-gradient(120deg, #203216 60%, #FFFFFF00 100%),
     url('../images/cta-image.jpg');
     background-repeat: no-repeat;
     background-position: 80% center;
     background-size: cover;
     padding: 60px 0;
     position: relative;
     overflow: hidden;
 }


 .membership-cta-section .membership-content h5 {
     font-size: 1.8rem;
     font-weight: bold;
     margin-bottom: 20px;
     color: white;
 }

 .membership-cta-section .membership-content p {
     font-size: 1rem;
     line-height: 1.6;
     color: rgba(255, 255, 255, 0.9);
     margin-bottom: 25px;
 }

 .membership-cta-section .check-item {
     display: flex;
     align-items: center;
     margin-bottom: 15px;
     color: white;
 }

 .membership-cta-section .check-item i {
     color: var(--primary-color);
     margin-right: 10px;
     font-size: 1.2rem;
 }


 @media (max-width: 992px) {
     .membership-content {
         margin-bottom: 40px;
     }


 }

 /* How It Works Section */
 .how-it-works-section {
     background: linear-gradient(to bottom, #e8f5e9 0%, #f5f9f5 100%);
     padding: 80px 0;
 }


 .how-it-works-section .steps-container {
     max-width: 900px;
     margin: 0 auto;
     position: relative;
 }

 .how-it-works-section .step-row {
     display: grid;
     grid-template-columns: 1fr 4px 1fr;
     gap: 40px;
     margin-bottom: 60px;
     align-items: center;
     position: relative;
 }

 .how-it-works-section .step-row:last-child {
     margin-bottom: 0;
 }

 .how-it-works-section .vertical-line {
     width: 2px;
     background: linear-gradient(to bottom, #5e5d5dff 0%, #ddd 50%, transparent 50%, transparent 100%);
     background-size: 2px 5px;
     height: 100%;
     position: relative;
     justify-self: center;
 }

 .how-it-works-section .step-row:last-child {
     background: transparent;
 }

 .how-it-works-section .step-left {
     display: flex;
     flex-direction: column;
     align-items: flex-end;
 }

 .how-it-works-section .step-right {
     display: flex;
     flex-direction: column;
     align-items: flex-start;
     position: relative;
 }

 .how-it-works-section .step-illustration {
     max-width: auto;
     height: auto;
 }

 .how-it-works-section .step-number {
     width: 50px;
     height: 50px;
     background: var(--accent-color);
     color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.5rem;
     font-weight: bold;
     margin-bottom: 20px;

 }

 .how-it-works-section .step-row:nth-child(2) .step-number {
     left: auto;
     right: -65px;
 }

 .how-it-works-section .step-title {
     font-size: 1.5rem;
     font-weight: bold;
     color: #333;
     margin-bottom: 15px;
 }

 .how-it-works-section .step-description {
     color: #666;
     line-height: 1.6;
     font-size: 1rem;
 }


 /* Reviews Section */
 .reviews-section {
     background: linear-gradient(to bottom, #f9f9f9 0%, #ffffff 100%);
     padding: 80px 0;
 }



 .review-card {
     margin: 0 auto;
     padding: 0 100px;
     text-align: center;
 }

 .stars {
     display: flex;
     justify-content: center;
     gap: 8px;
 }

 .stars i {
     color: var(--accent-color);
     font-size: 2rem;
 }

 .review-text {
     font-size: 1.1rem;
     line-height: 1.8;
     color: #333;
     margin-bottom: 40px;
     font-style: italic;
 }

 .reviewer-avatars {
     display: flex;
     justify-content: center;
     align-items: center;
     margin-bottom: 25px;
     gap: 0;
 }

 .reviewer-avatar {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     border: 3px solid white;
     object-fit: cover;
     margin-left: -15px;
     transition: all 0.3s ease;
     filter: grayscale(50%);
 }

 .reviewer-avatar:first-child {
     margin-left: 0;
 }

 .reviewer-avatar.active-reviewer {
     width: 80px;
     height: 80px;
     border: 4px solid white;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
     filter: grayscale(0%);
     z-index: 5;
 }

 .more-reviews {
     background: #2d5f3d;
     color: white;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 0.9rem;
     font-weight: bold;
 }

 .reviewer-name {
     font-size: 1.5rem;
     font-weight: bold;
     color: #333;
     margin-bottom: 5px;
 }

 .reviewer-role {
     color: #999;
     font-size: 1rem;
     margin-bottom: 0;
     font-style: italic;
 }

 @media (max-width: 768px) {
     .review-card {
         padding: 30px 20px;
     }

     .stars i {
         font-size: 1.5rem;
     }

     .review-text {
         font-size: 1rem;
     }

     .reviewer-avatar {
         width: 45px;
         height: 45px;
     }

     .reviewer-avatar.active-reviewer {
         width: 60px;
         height: 60px;
     }

     .section-title-dark {
         font-size: 2rem;
     }
 }

 /* FAQ Section */
 .accordion-item {
     border-radius: 40px !important;
 }

 .accordion-button {
     border-radius: 40px !important;
 }

 .accordion-button:not(.collapsed) {
     background-color: var(--primary-color) !important;
     color: white !important;

 }

 .faq-image {
     border-radius: 5px;
     border: 10px solid white;
 }

 /* Blog Section */
 .blog-section {
     background: #fafafa;
     padding: 80px 0;
 }

 .blog-card {
     border: none;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
     border-radius: 16px;
     overflow: hidden;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     background: #fff;
 }

 .blog-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
 }

 .blog-side-image {
     border-radius: 5px;
     height: 190px;
     object-fit: cover;

 }

 footer {
     background: linear-gradient(to bottom, #172A0C, #2b4e17);
 }

 footer .contact-info {
     font-size: 14px;
     color: rgba(255, 255, 255, 0.7);
 }

 footer a {
     font-size: 14px;
     color: rgba(255, 255, 255, 0.7);
     text-decoration: none;
 }

 footer a:hover {
     color: white;
     text-decoration: underline;
 }

 footer .newsletter-input {
     background: transparent;
     border-radius: 30px;
     color: white;
     height: 3rem;
     width: 80%;
 }

 footer .newsletter-input::placeholder {
     color: rgba(255, 255, 255, 0.7);
 }

 footer .newsletter-button {
     background: var(--accent-color);
     border-radius: 30px;
     color: white;
     height: 3rem;
     font-size: 1.2rem;
     font-weight: bold;

 }

 footer .social-link {
     display: inline-block;
     background: var(--accent-color);
     border-radius: 50%;
     height: 2.5rem;
     width: 2.5rem;
     padding: 0.5rem;
     transform: translateY(-180%);

 }

 footer .social-link i {
     font-size: 1rem;
     vertical-align: middle;
 }

@media (max-width: 992px) {
    footer .social-link{
        transform: translateY(0);
        margin-left: 0px !important;
        align-items: left !important;
    }
}

.contact-card {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 20px rgba(6, 24, 13, 0.06);
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(15, 23, 42, 0.03);
  overflow: visible;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background: rgba(34, 120, 56, 0.06);
  border-radius: 18px;
  z-index: -1;
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 6px 12px rgba(47, 138, 53, 0.12);
}

.contact-card h5 {
  margin: 12px 0 8px 0;
  font-size: 1.05rem;
  color: #0f1724;
  line-height: 1.1;
}

.contact-card p {
  margin: 0;
  color: #6b7280;
  font-size: 0.93rem;
  line-height: 1.45;
  word-wrap: break-word;
}

.contact-card p a {
  color: #0f766e;
  text-decoration: underline;
}

.contact-card .muted-note {
  display: block;
  margin-top: 6px;
  color: #9ca3af;
  font-size: 0.85rem;
}

/* Mobile: center content */
@media (max-width: 767.98px) {
  .contact-card {
    align-items: center;
    text-align: center;
    padding: 20px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-card-icon {
    margin-bottom: 10px;
  }
}

/* Legal Section Styles */
.legal-card {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.legal-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.legal-link {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 1rem;
  display: block;
  transition: color 0.3s ease;
}

.legal-link:hover {
  color: var(--primary-color);
}

.legal-link.active {
  color: var(--primary-color);
  border-left: 4px solid var(--primary-color);
  padding-left: 10px;
}

.membership-card{
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    height: fit-content;
}


.bottom-banner{
    background-color: #375525;
    color: white;
    padding: 25px 0;
}

.bottom-banner .hero-btn{
    height: fit-content;
}