@import url("https://fonts.googleapis.com/css2?family=Balsamiq+Sans:ital,wght@0,400;0,800;1,400;1,800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Balsamiq+Sans:ital,wght@0,400;0,800;1,400;1,800&family=Poetsen+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Balsamiq+Sans:ital,wght@0,400;0,800;1,400;1,800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poetsen+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Balsamiq+Sans:ital,wght@0,400;0,800;1,400;1,800&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poetsen+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,800;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,800;1,800;1,900&display=swap");
@import url(https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);
/* Fonts */
body {
  margin: 0;

  color: #222;
}
* {
  box-sizing: border-box;
}
/* Global background for all sections */
.hero-section,
.growth-partner,
.amazon-services,
.case-study-highlight,
.partner-section,
.insights-section {
  background-color: #f5f3f0 !important;
}
/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ___________________________________________________________________________________________________________________________________________________________________ */
/* _________________________________________________________________________________Header-Section_______________________________________________________________ */
/* Apply Inter font to entire navbar */
.mob,
.mob * {
  font-family: "Inter", sans-serif !important;
}
#mainNavbar{
  margin-bottom: -20px;
  padding: 15px;
}

/* Professional nav-link style */
.mob .nav-link {
  font-weight: 500;
  padding: 5px;
  font-size: 17px;
  letter-spacing: -0.2px;
  color: #333;
  transition: color 0.2s ease, transform 0.2s ease;
}
.hero-buttons a:nth-child(1) {
    margin-top: 21px;
}
ul.footer-contact li a {
    color: #5a3333;
    text-decoration: none;
}
.mob #service-gap{
  padding-top: 20px !important;
}

/* Hover effect (premium subtle orange + slight lift) */
.mob .nav-link:hover {
  color: #f45a00;
  transform: translateY(-1px);
}

/* Active dropdown item */
.mob .dropdown-item:hover {
  background-color: rgba(244, 90, 0, 0.08);
  color: #f45a00;
}

/* Dropdown menu styling */
.mob .dropdown-menu {
  border: none;
  padding: 10px;
  padding-top: 20px;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

/* Dropdown items */
.mob .dropdown-item {
  font-size: 14px;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* Toggler icon alignment improvement */
.mob .navbar-toggler {
  border: none;
}

.mob .navbar-toggler:focus {
  box-shadow: none;
}

/* ___________________________________________________________________________________________________________________________________________________________________ */


/* Desktop Header */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #eee;
  font-family: "Balsamiq Sans", cursive;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
}


.header-content {
  display: flex;
  height: 82px;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

/* Centered page header */
.partner-header {
  text-align: center;
  margin-bottom: 60px;
}
.partner-header h2 {
  font-family: "Inter", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
  line-height: 75px;
}

/*  
  NOTE:
  Below 980px we hide the desktop header and show 
  the separate mobile bootstrap navbar (.mob).

  - Desktop header hidden at < 980px
  - Mobile navbar (.mob) shown at < 980px
*/
 nav.navbar.navbar-expand-lg.bg-white.border-bottom.py-2.mob {
    display: none;
  }
@media screen and (max-width: 980px) {
  header.site-header {
    display: none;
  }
  nav.navbar.navbar-expand-lg.bg-white.border-bottom.py-2.mob {
    display: block;
  }
}

/* Small-screen container adjustments */
@media (max-width: 576px) {
  .header-content {
    padding: 12px 16px;
  }
}
@media (max-width: 500px) {
  .container.header-content {
    width: 100% !important;
    background: #ffffff;
  }
}

/* Logo */
.logo {
  font-size: 22px;
  font-weight: 700;
}
.logo-orange {
  color: #ff6600;
}

/* Desktop Navigation */
.main-nav {
  display: flex;
}
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  color: #333;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 400;
  transition: color 0.3s ease;
}
.main-nav a:hover {
  color: #1A8E68;
}

/* Dropdown (Desktop hover) */
.main-nav .dropdown {
  position: relative;
}
.main-nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  padding: 15px 0px 5px;
  border-radius: 8px;
  border: 1px solid rgba(244, 86, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.main-nav .dropdown:hover > .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
}
.dropdown-menu li:hover{
  background-color: #cacaca38 !important;
  border-radius: 5px;
}

/* MOBILE NAVIGATION — RESPONSIVE FIX */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #333;
}

@media (max-width: 991px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    display: none;
    padding: 25px 0;
    border-top: 1px solid #eee;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }

  .main-nav.active {
    display: flex;
    animation: slideDown 0.3s ease forwards;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  /* Mobile dropdown — collapsible */
  .main-nav .dropdown-menu {
    position: static;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    border: 1px solid rgba(244, 86, 0, 0.2);
    transition: max-height 0.35s ease, opacity 0.25s ease;
    margin-top: 8px;
  }

  .main-nav .dropdown.active .dropdown-menu {
    max-height: 500px;
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    font-size: 21px;
  }
}

/* Extra small screens */
@media (max-width: 576px) {
  .main-nav {
    top: 60px;
  }
}
@media (max-width: 500px) {
  .main-nav a {
    font-size: 17px;
  }
}

/* Dropdown List Items */
ul.dropdown-menu li {
  margin-bottom: 20px;
  padding-left: 12px;
}

/* CTA Button */
.cta-btnn {
  background: #1A8E68;
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 10px;
  font-family: 'Inter', 'sans-serif';
  font-weight: 500;
  text-decoration: none;
  font-size: 17px;
  transition: all 0.3s ease;
}
.cta-btnn:hover {
  background: #e84200;
  transform: scale(1.05);
}

/* Hide CTA on mobile */
@media (max-width: 991px) {
  .cta-btnn {
    display: none;
  }
}

.main-nav .dropdown-menu {
  display: block !important;
}

.main-nav .dropdown-menu li {
  display: block !important;
  margin-bottom: 12px;
}


/* ____________________________________________________________________________________NAVBAR______________________________________________________________________________ */

.mob {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #ffffff;
}
.navbar-brand img {
  height: 32px;
}

/* _____________________________________________________________________________________Navbar-end_____________________________________________________________________________ */
/* ______________________________________________________________________________________________________________________________________________________________________ */
/* _________________________________________________________________________________Header-Section-END___________________________________________________________ */
/* __________________________________________________________________________________________________________________________________________________________________ */
/* ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||







*/
/* _____________________________________________________________________________________________________________________________________________________________________________ */
/* _______________________________________________________________________________Gloabal-Conmponent__btn-orange---(btn-orangeee)_______________________________________________ */
/* _____________________________________________________________________________________________________________________________________________________________________________ */
/* --------------------------------------- */
/* UNIVERSAL ORANGE BUTTON (Optimized)     */
/* --------------------------------------- */

.btn-orange {
  display: inline-block;
  background: #D4A017;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 17px;
  padding: 14px 28px;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  vertical-align: middle;
  transition: all 0.35s ease;
}

/* Optional image inside button */
.btn-orange img {
  margin-left: 12px;
  margin-bottom: 3px;
}

/* Hover */
.btn-orange:hover {
  background: #b48d2ae1;
  transform: scale(1.06);
  /* box-shadow: 0 6px 25px rgba(255, 107, 0, 0.45); */
}

/* --------------------------------------- */
/* RESPONSIVENESS                         */
/* --------------------------------------- */

/* Tablets & small laptops */
@media (max-width: 992px) {
  .btn-orange {
    width: 100%;
    text-align: center;
    max-width: 300px;
    font-size: 15px;
    padding: 12px 24px;
  }
}

/* Phones */
@media (max-width: 576px) {
  .btn-orange {
    width: 100%;
    font-size: 14px;
    padding: 12px 20px;
  }
}

@media (max-width: 991px) {
  .btn-orange {
    display: none;
  }
}

/* _________________________________________________________________________________btn-orange-End________________________________________________________________________________ */
/* |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||


/* _____________________________________________________________________________________________________________________________________________________________________________ */
/* _______________________________________________________________________________Gloabal-Conmponent__cta-bar---(cta-barrrrr)_______________________________________________ */
/* _____________________________________________________________________________________________________________________________________________________________________________ */
/* ===========================================================
   GLOBAL CTA BAR (Optimized & Fully Responsive)
   =========================================================== */
.cta-bar {
    position: relative;
   margin: -300px auto -156px auto;
    width: 85%;
    max-width: 1200px;
    background: linear-gradient(90deg, #1A8E68 0%, rgba(26, 142, 104, 0.8) 50%, #1A8E68 100%);
    color: #ffffff;
    text-align: center;
    border-radius: 16px;
    padding: 60px 20px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

/* Tablet */
@media (max-width: 1000px) {
    .cta-bar {
        margin: -160px auto 50px auto;
        padding: 45px 20px;
        width: 92%;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .cta-bar {
        margin: -120px auto 40px auto;
        padding: 30px 15px;
        width: 95%;
        border-radius: 12px;
    }
}

/* Text */
.cta-bar h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 14px;
}

.cta-bar p {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  line-height: 1.55;
  margin-bottom: 28px;
}

/* ===========================================================
   TABLETS
   =========================================================== */
@media (max-width: 992px) {
  .cta-bar {
    position: static;
    transform: none;
    width: 90%;
    max-width: 850px;
    margin: 0 auto 24px;
    padding: 40px 18px;
  }

  .cta-bar h2 {
    font-size: 30px;
  }

  .cta-bar p {
    font-size: 17px;
  }
}

/* ===========================================================
   MOBILE
   =========================================================== */
@media (max-width: 768px) {
  .cta-bar {
    width: 100%;
    max-width: 100%;
    padding: 32px 16px;
    margin-top: 20px;
  }

  .cta-bar h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  .cta-bar p {
    font-size: 17px;
    line-height: 1.45;
  }
}

/* _________________________________________________________________________________cta-bar-End________________________________________________________________________________ */
/* ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||



/* _____________________________________________________________________________________________________________________________________________________________________________ */
/* _______________________________________________________________________________Gloabal-Conmponent__cta-ban---(cta-bannnnn)_______________________________________________ */
/* _____________________________________________________________________________________________________________________________________________________________________________ */
/* ===========================================================
   GLOBAL CTA BUTTON — Optimized
   =========================================================== */

.cta-btn {
  display: inline-block;
  background: #D4A017;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.3s ease, background 0.3s ease;
}

/* Hover Effect */
.cta-btn:hover {
  background: #d49e17e0;
  transform: scale(1.06);
  box-shadow: 0 6px 25px rgba(255, 107, 0, 0.45);
}

/* ===========================================================
   Tablets
   =========================================================== */
@media (max-width: 992px) {
  .cta-btn {
    width: 80%;
    text-align: center;
    margin: 10px auto 0;
  }
}

/* ===========================================================
   Mobile
   =========================================================== */
@media (max-width: 768px) {
  .cta-btn {
    width: 100%;
    font-size: 17px;
    padding: 12px 24px;
  }
}

/* _________________________________________________________________________________cta-bar-End________________________________________________________________________________ */
/* ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||




/* _____________________________________________________________________________________________________________________________________________________________________________ */
/* _______________________________________________________________________________Faq-section__________________________________________________________________________________ */
/* _____________________________________________________________________________________________________________________________________________________________________________ */

.faq-section {
  background-color: #f5f3f0 !important;
}
/* FAQ Section */
.faq-section {
  background-color: #f5f3f0 !important;
  padding: 64px 20px 250px 12px;
  height: auto;
  font-family: "Inter", sans-serif;
}
/* @media (max-width: 768px) {
  .faq-section {
    padding: 40px 16px 260px !important; 
  }
} */

  @media (max-width: 1024px) {
  .faq-section {
    padding: 64px 22px 1px 22px;
    margin-bottom: 0;
  }
}

  @media (max-width: 1024px) {
 .faq-container{
  margin-bottom: 0;
 }
  }
/* @media (max-width: 768px) {
.faq-section {
    padding: 40px 15px;
  }
} */

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
.faq-container {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
/* FAQ layout */
  .faq-container {
    flex-direction: column;
  }
}
.faq-left p {
  font-family: "Poppins", sans-serif;
  color: #333;
  font-size: 21px;
  font-weight: 400;
  line-height: 35px;
  margin-bottom: 30px;
  letter-spacing: -0.1px;
}
@media (max-width: 900px) {
.faq-left {
    text-align: center;
  }
  .faq-left h2 {
    font-size: 26px;
  }
}
/* Left Column */
.faq-left {
  flex: 1;
  min-width: 300px;
}
.faq-left h2 {
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #111;
  margin-bottom: 20px;
  line-height: 60px;
}
.faq-left {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 768px) {
  .faq-left h2 {
    font-size: 28px;
  }
  .faq-left p {
    font-size: 17px;
  }
}

@media screen and (max-width: 500px) {
 .faq-left h2 {
    font-size: 21px;
    line-height: 33px !important;
  }
}


@media (max-width: 768px) {
 /* FAQ Section (Existing query for 900px is good, scaling accordion text) */
  .faq-left {
    text-align: left; /* Keep text left-aligned for better reading experience */
  }
  .faq-left h2 {
    font-size: 32px;
    line-height: 40px;
    text-align: center;
  }
}

@media (max-width: 768px) {
.faq-left p {
    font-size: 17px;
    line-height: 1.6;
  }
}
@media (max-width: 768px) {
.faq-left h2{
    font-size: 24px;
    line-height: 1.3;
  }

  .faq-left p{
  font-size: 17px;
    line-height: 1.6;
  }
}

@media (max-width: 768px) {
.faq-left h2{
    font-size: 24px;
    line-height: 1.3;
  }
}
.highlight-orange-italic {
  color: #1A8E68;
  font-style: italic;
}
.highlight-orange-italic {
  color: #1A8E68;
  font-style: italic;
}



.faq-right {
  flex: 1;
  min-width: 380px;
}

/* Responsive */

@media (max-width: 900px) {
  
  
  .faq-right {
    width: 100%;
  }
}

.faq-right {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 992px) {
 /* FAQ: prevent overflow from fixed min-widths */
  .faq-right {
    min-width: 0;
  }
}

@media (max-width: 768px) {
.faq-right {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 992px) {
.accordion-header {
    font-size: 21px;
    line-height: 32px;
  }
}


.accordion {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.accordion-item {
  border-bottom: 1px solid #eee;
}
.accordion-header {
  width: 100%;
  background: #ffffff;
  border: none;
  outline: none;
  text-align: left;
  padding: 18px 20px;
  font-size: 23px;
  font-weight: 500;
  color: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: "Inter" !important;
  line-height: 37px;
  font-weight: 500;
}
.accordion-header:hover {
  background: #f9f9f9;
}


.accordion-body {
  display: none;
  padding: 0 20px 20px;
  font-size: 17px;
  color: #424242;
  font-weight: 400;
  opacity: 0.6;
  font-family: "Poppins", sans-serif;
  line-height: 1.7;
  letter-spacing: 0;
}
.accordion-item.active .accordion-body {
  display: block;
}
.accordion-item.active .icon {
  transform: rotate(180deg);
}



@media (max-width: 768px) {
  .accordion-header {
    font-size: 17px;
    line-height: 28px;
  }
  .accordion-body {
    font-size: 15px;
  }
}

 @media (max-width: 768px) {
  .accordion-header {
    font-size: 17px;
    line-height: 1.4;
    padding: 16px 18px;
  }
  .accordion-body {
    font-size: 15px;
    line-height: 1.5;
  }
}

@media (max-width: 768px) {
  .accordion-header {
    font-size: 17px;
    line-height: 1.4;
  }}



  .icon {
  font-size: 21px;
  color: #111;
  transition: transform 0.3s ease;
}


/* _________________________________________________________________________________Faq-section-End________________________________________________________________________________ */
/* ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||



/* Section Layout */
.hero-section {
  background-color: #fdfbf9;
  padding: 80px 20px;
}
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}
/* Left Content */
.hero-content {
  flex: 1 1 60%;
  min-width: 565px;
}
/* Orange badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  color: #1A8E68;
  font-size: 17px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
}
.hero-dot {
  width: 14px;
  height: 14px;
  background: #1A8E68;
  border-radius: 50%;
  margin-right: 8px;
}
/* Heading */
.hero-content h1 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 59px;
  line-height: 1.3;
  color: #000000;
  margin-bottom: 20px;
  margin-top: 0;
  letter-spacing: -1%;
  line-height: 75px !important;
}
.hero-content .highlight {
  color: #1A8E68;
  font-style: italic;
  font-weight: 700;
}

/* Paragraph */
.hero-content p {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  color: #333;
  line-height: 35px;
  margin-bottom: 35px;
  max-width: 667px;
  /* letter-spacing: -1.3px; */
}
/* Buttons */
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}
.btn-outline {
  /* border: 2px solid #1A8E68; */
  /* color: #1A8E68; */
  /* background: #ffffff; */
  /* padding: 11px 30px; */
  /* border-radius: 8px; */
  /* text-decoration: none; */
  /* font-family: 'Inter', sans-serif; */
  /* font-weight: 600; */
  /* transition: all 0.3s ease; */
  width: 22%;
  display: inline-block;
  background: #FFFFFFE5;
  color: #000000;
  font-family: "DM Sans", sans-serif;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 21px;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 18px;
  transition: background 0.3s ease;
  text-align: center;
}
.btn-outline:hover {
  background: #d49e17e1;
  color: #ffffff;
}
.local-link {
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  line-height: 18px;
  font-size: 17px;
  color: #333;
}

/* Right Image */
.hero-image {
  flex: 2 1 30%;
  text-align: right;
}
.hero-image img {
  width: 100%;
  max-width: 407px;
  border-radius: 15px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-content {
    order: 2;
  }
  .hero-image {
    order: 1;
    text-align: center;
  }
  .hero-image img {
    max-width: 350px;
    margin-bottom: 30px;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
}
/* Section Wrapper */
.growth-partner {
  background-color: #f5f3f0;
  text-align: center;
  padding: 73px 20px;
}
.growth-container {
  max-width: 1200px;
  margin: 0 auto;
}
/* Heading */
.growth-partner h2 {
  font-family: "Inter", sans-serif;
  font-size: 42px;
  font-weight: 600;
  color: #333;
  margin-bottom: 16px;
  /* background: #F5F3F0 ! IMPORTANT; */
  margin-top: 17px;
  /* line-height: 75px; */
}
.growth-partner .highlight {
  color: #1A8E68;
  font-style: italic;
}
/* Description */
.growth-description {
  font-family: "Poppins", sans-serif;
  color: #333;
  font-size: 25px;
  line-height: 37px;
  /* max-width: 720px; */
  margin: 0 auto 60px;
  letter-spacing: 0.5px;
}
/* Grid */
.growth-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
/* Box */
.growth-box {
  background: #ffffffe5;
  border-radius: 12px;
  padding: 24px 30px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  /* display: flex
; */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: justify;
  height: 220px;
  transition: all 0.3s ease;
}
.growth-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
/* Box Heading */
.growth-box h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeInUp 1.3s ease forwards;
  /* text-align: justify; */
  margin-top: 0;
  /* margin-left: -89px; */
}
/* Box Paragraph */
.growth-box p {
  font-family: "Poppins", sans-serif;
  font-size: 21px;
  width: 500px;
  font-weight: 300;
  line-height: 1.6;
  color: #333;
  /* max-width: 320px; */
  opacity: 0;
  animation: fadeInUp 1.3s ease forwards;
  animation-delay: 0.3s;
  /* width: 800px; */
  text-align: left;
}
/* Sequential Animation */
.growth-box:nth-child(1) h3,
.growth-box:nth-child(1) p {
  animation-delay: 0.2s;
}
.growth-box:nth-child(2) h3,
.growth-box:nth-child(2) p {
  animation-delay: 0.4s;
}
.growth-box:nth-child(3) h3,
.growth-box:nth-child(3) p {
  animation-delay: 0.6s;
}
.growth-box:nth-child(4) h3,
.growth-box:nth-child(4) p {
  animation-delay: 0.8s;
}
/* Animation */
@keyframes fadeInUp {
  from {
    transform: translateY(15px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Responsive */
@media (max-width: 768px) {
  .growth-grid {
    grid-template-columns: 1fr;
  }
  .growth-box {
    height: auto;
    padding: 40px 25px;
  }
}
/* Base Section */
.amazon-services {
  background-color: #ffffff;
  padding: 50px 20px 60px;
  font-family: "Inter", sans-serif;
  text-align: center;
}
.services-container {
  max-width: 1200px !important;
  margin: 0 auto;
}
.final-heading {
  font-family: "Inter", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #333;
  line-height: 75px;
  margin-bottom: 0px;
}
/* Headings */
.amazon-services h2 {
  font-size: 42px;
  font-weight: 700;
  color: #333;
  line-height: 75px;
  margin-bottom: 0px;
}
.highlight-italic {
  color: #1A8E68;
  font-style: italic;
}
.services-subtext {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  color: #333333;
  font-weight: 400;
  line-height: 38px;
  margin: 8px 0 30px;
  /* max-width: 750px; */
  /* margin: 10px auto 60px; */
}
/* Service Rows */
.service-item {
  display: grid;
  grid-template-columns: 418px 1fr;
  align-items: start;
  border-top: 1px solid #878c91;
  padding: 25px 0;
  gap: 30px;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center !important;
}
.service-title h3 {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: #333;
  margin-top: 5px;
}
.service-description p {
  font-family: "Poppins", sans-serif;
  font-size: 21px;
  color: #333333;
  line-height: 35px;
  margin-bottom: 20px;
}
.service-description a {
  font-family: "poppins", sans-serif;
  color: #333;
  font-weight: 400;
  font-size: 17px;
  transition: all 0.3s ease;
  line-height: 25px;
  text-decoration-color: rgba(0, 0, 0, 0.3); /* soft gray underline */
  text-underline-offset: 4px;
  /* padding-top: 30px !important; */
}
.service-description a:hover {
  text-decoration: underline;
  margin-left: 3px;
}
/* CTA Banner */
.cta-banner {
  background: linear-gradient(90deg, #1A8E68 0%, rgba(26, 142, 104, 0.8) 50%, #1A8E68 100%);

  color: #ffffff;
  border-radius: 8px;
  margin: 80px auto 40px;
  padding: 71px 30px;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}
.cta-text h3 {
  font-family: "Inter", sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin: 0;
  text-align: left;
}
.testimonial-cta .cta-btn {
  background: #D4A017;
  color: #ffffff;
  padding: 15px 44px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  font-size: 21px;
  transition: all 0.3s ease;
}
#axis-x {
  margin-top: 100px;
  margin-bottom: 100px;
}
/* .cta-btn:hover {
  background: #ffece2;
} */
/* Closing Paragraph */
.closing-text {
  font-family: "Poppins", sans-serif;
  color: #333;
  font-size: 25px;
  line-height: 37px;
  max-width: 1200px;
  margin: 20px auto 0;
  text-align: center;
  letter-spacing: 0.5px;
}
/* Trusted by Growing Pet Brands */
.trusted-section {
  background-color: #f7f5f1;
  padding: 60px 20px 0;
  font-family: "Inter", sans-serif;
}
.trusted-container {
  max-width: 1200px;
  margin: 0 auto;
}
.trusted-section h2 {
  font-size: 42px;
  font-weight: 700;
  color: #111;
  text-align: center;
  margin: 0 0 10px;
}
.trusted-subtext {
  font-family: "Poppins", sans-serif;
  font-size: 21px;
  color: #333;
  text-align: center;
  line-height: 1.7;
  margin: 0 auto 28px;
}
.trusted-card {
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.trusted-copy {
  flex: 1;
}
.trusted-quote {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  color: #333;
  line-height: 1.8;
  margin: 0 0 14px;
}
.trusted-link {
  font-family: "Inter", sans-serif;
  color: #1A8E68;
  font-weight: 600;
  text-decoration: none;
}
.trusted-link:hover {
  text-decoration: underline;
}
.trusted-stats {
  display: flex;
  gap: 23px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.stat {
  min-width: 120px;
}
.stat .num {
  font-size: 28px;
  font-weight: 800;
  color: #1A8E68;
  line-height: 1.2;
}
.stat .num.neg {
  color: #1A8E68;
}
.stat .label {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #666;
}
.trusted-media {
  flex: 0 0 auto;
}
.img-frame {
  position: relative;
  isolation: isolate;
  border-radius: 12px;
  overflow: hidden;
  display: inline-block;
}
.img-frame img {
  display: block;
  width: 100%;
  max-width: 360px;
  border-radius: 12px;
}
.img-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ff6a00;
  border-radius: 12px;
  transform: translate(14px, 14px);
  z-index: -1;
}
/* Responsive */
@media (max-width: 768px) {
  .service-item {
    grid-template-columns: 1fr;
  }
  .service-title h3 {
    margin-bottom: 10px;
  }
  .cta-banner {
    flex-direction: column;
    text-align: center;
  }
  
}
/* Trusted responsive */
@media (max-width: 992px) {
  .trusted-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .trusted-media {
    width: 100%;
  }
  .img-frame img {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .trusted-section {
    padding: 40px 16px 0;
  }
  .trusted-section h2 {
    font-size: 28px;
  }
  .trusted-subtext {
    font-size: 17px;
  }
  .trusted-quote {
    font-size: 15px;
  }
  .stat .num {
    font-size: 24px;
  }
}
/* Section Base */
.partner-section {
  background-color: #f5f3f0 !important;
  padding: 41px 20px;
  font-family: "Inter", sans-serif;
}
/* Wrapper */
.partner-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.highlight-orange {
  color: #1A8E68;
  font-style: italic;
}
.partner-subtext {
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  color: #333;
  line-height: 36px;
  /* max-width: 750px; */
  margin: 0 auto;
  letter-spacing: -0.5px;
}
/* Two-Column Layout */
.partner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
/* Left Column (Text Points) */
.partner-content {
  flex: 1;
  min-width: 320px;
}
.partner-content p {
  font-family: "Poppins", sans-serif;
  color: #333333;
  font-size: 22px;
  line-height: 33px;
  margin-bottom: 44px;
  margin-top: 0;
}
.partner-content strong {
  font-weight: 600;
  color: #333333;
  font-size: 22px;
}
@media screen and (max-width: 500px) {
  .partner-content strong {
    font-size: 17px;
  }
}

/* Right Column (Image) */
.partner-image {
  flex: 1;
  display: flex;
  justify-content: center;
}
.partner-image img {
  width: 100%;
  max-width: 589px;
  border-radius: 12px;
  object-fit: cover;
  height: 527px;
  margin-top: -45px;
}
/* Responsive Design */

@media (max-width: 900px) {
  .partner-container {
    flex-direction: column;
    text-align: left;
  }
  .partner-image {
    order: -1;
    margin-bottom: 30px;
  }
  .partner-header h2 {
    font-size: 26px;
  }
  .partner-subtext {
    font-size: 15px;
  }
}
/* Base Section */
.insights-section {
  background-color: #fbf9f6;
  padding: 19px 20px;
  font-family: "Inter", sans-serif;
  text-align: center;
}
.insights-container {
  max-width: 1200px;
  margin: 0 auto;
}
/* Heading */
.insights-section h2 {
  font-size: 42px;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
  line-height: 60px;
}

.insights-subtext {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  color: #333;
  /* max-width: 750px; */
  margin: 0 auto 60px;
  line-height: 36px;
  letter-spacing: 0.9px;
}
/* Cards Grid */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-content: center;
}
/* Card */
.insight-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  position: relative;
  transition: all 0.3s ease;
}
.insight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}
/* Card Top */
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.yellow {
  background-color: #f8b400;
}
.blue {
  background-color: #1ca8ff;
}
.green {
  background-color: #00c271;
}
.read-time {
  font-size: 14px;
  color: #777;
  font-family: "Poppins", sans-serif;
}
/* Card Text */
/* .insight-card h3 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 12px;
  color: #111;
  font-family: "Poppins", sans-serif;
  line-height: 44px;
} */

.insight-card h3 {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 12px;
    color: #111111f5;
    font-family: "Inter";
    line-height: 32px;
}




/* .insight-card p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  color: #878c91;
  margin-bottom: 50px;
} */


.insight-card p {
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 23px;
    color: #333333;
    margin-bottom: 50px;
}














/* Buttons */
/* .arrow-btn-outline,
.arrow-btn-filled { */
/* __________________________________ */
  /* position: absolute; */
  /* bottom: 25px; */
  /* right: 25px; */
  /* width: 68px; */
  /* height: 48px; */
  /* border-radius: 50%; */
  /* font-size: 21px; */
  /* cursor: pointer; */
  /* transition: all 0.3s ease; */
  /* top: 241px; */
  /* _________________________ */
  /* position: absolute;
  justify-content: center;
  align-items: center;
  bottom: 25px;
  right: 25px;
  width: 80px;
  height: 48px;
  font-size: 21px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
} */






.arrow-btn-outline, .arrow-btn-filled {
    /* position: absolute; */
    /* bottom: 25px; */
    /* right: 25px; */
    /* width: 68px; */
    /* height: 48px; */
    /* border-radius: 50%; */
    /* font-size: 21px; */
    /* cursor: pointer; */
    /* transition: all 0.3s ease; */
    /* top: 241px; */
    position: absolute;
    justify-content: center;
    align-items: center;
    bottom: 25px;
    right: 25px;
    width: 3rem;
    height: 48px;
    font-size: 6px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}







.arrow-btn-outline {
  background: transparent;
  border: 1.8px solid #111;
  color: #111;
}
.arrow-btn-outline:hover {
  background: #111;
  color: #ffffff;
}
.arrow-btn-filled {
  background: #D4A017;
  border: none;
  color: #ffffff;
}
.arrow-btn-filled:hover {
  background: #d49e17e0;
}
/* Responsive */
@media (max-width: 768px) {
  .insights-section h2 {
    font-size: 26px;
  }
  .insights-subtext {
    font-size: 15px;
  }
}









@media (max-width: 1000px) {
  .case-study-highlight {
    padding-bottom: 1px !important;
  }
}

/* .cta-btn:hover {
  background: #f2f2f2;
} */


.logo-orange {
  color: #1A8E68;
}
.brand-info p {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 25px;
}




/* Responsive */

/* -------------------- Global Reveal Styles -------------------- */
/* Static chair image */
.partner-image img {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  height: 636px;
  min-height: 550px;
  max-height: 580px;
}
@media (max-width: 991px) {
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-15px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Base hidden state */
.hero-content,
.hero-image,
.growth-box,
.service-item,
.partner-content,
.insight-card{
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
/* Reveal when in view */
.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Typing animation style */
.animated-text {
  display: inline-block;
  border-right: 2px solid #1A8E68;
  white-space: nowrap;
  overflow: hidden;
}
/* Hover lift effects */
.growth-box:hover,
.service-item:hover,
.insight-card:hover {
  transform: translateY(-8px);
  transition: all 0.6s ease;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}
/* Hero fade-in */
.hero-image img {
  animation: fadeInScale 1.5s ease forwards;
}
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* Hero heading + paragraph fade-up on load */
.hero-content h1,
.hero-content p,
.hero-buttons {
  animation: fadeUp 1.2s ease forwards;
  opacity: 0;
}
.hero-content h1 {
  animation-delay: 0.3s;
}
.hero-content p {
  animation-delay: 0.6s;
}
.hero-buttons {
  animation-delay: 0.9s;
}
@keyframes fadeUp {
  from {
    transform: translateY(25px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


.cta-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 25px rgba(255, 107, 0, 0.45);
}
/* Delay staggering for boxes */
.growth-box:nth-child(1) {
  transition-delay: 0.15s;
}
.growth-box:nth-child(2) {
  transition-delay: 0.3s;
}
.growth-box:nth-child(3) {
  transition-delay: 0.45s;
}
.growth-box:nth-child(4) {
  transition-delay: 0.6s;
}
.service-item:nth-child(2) {
  transition-delay: 0.2s;
}
.service-item:nth-child(3) {
  transition-delay: 0.35s;
}
.service-item:nth-child(4) {
  transition-delay: 0.5s;
}

/* ========================= Responsive Enhancements ========================= */
@media (max-width: 1200px) {
  .hero-section {
    padding: 60px 20px;
  }
}

@media (max-width: 992px) {
  /* Hero: allow shrinking and scale typography */
  .hero-content {
    min-width: auto;
    flex: 1 1 100%;
  }
  .hero-content h1 {
    font-size: 42px;
  }
  .hero-content p {
    font-size: 17px;
  }
  .hero-buttons a {
    width: 88%;
    text-align: center;
  }
  .growth-box.visible {
    margin: 11px;
  }

  .partner-content {
    flex: 1;
    min-width: 291px;
  }
  
  .hero-image img {
    max-width: 320px;
  }
  /* Services: stack earlier on tablets */
  .service-item {
    grid-template-columns: 1fr;
  }
  /* Growth boxes: avoid height/width jumps on smaller screens */
  .growth-box {
    height: auto;
  }
  .growth-box h3.animated-text {
    white-space: normal;
    overflow: visible;
    border-right: 0;
  }
  .growth-box:hover {
    transform: none;
    box-shadow: none;
  }
}


@media (max-width: 640px) {
    .launch-fit-list li strong {
        font-size: 17px;
    }
}
@media (max-width: 768px) {
  /* General scale-down */
  .hero-section {
    padding: 48px 16px;
  }
  .hero-content h1 {
    font-size: 34px;
  }
  .hero-content p {
    font-size: 17px;
  }
  /* Growth section */
  .growth-partner h2 {
    font-size: 28px;
  }
  .growth-description {
    font-size: 17px;
  }
  .growth-box h3 {
    font-size: 22px;
  }
  .growth-box p {
    font-size: 17px;
  }
  .growth-box h3.animated-text {
    white-space: normal;
    overflow: visible;
    border-right: 0;
  }
  .growth-box:hover {
    transform: none;
    box-shadow: none;
  }
  /* Services */
  .amazon-services h2 {
    font-size: 28px;
  }
  .services-subtext {
    font-size: 17px;
  }
  .service-title h3 {
    font-size: 24px;
  }
  .service-description p {
    font-size: 17px;
  }
  /* Partner section */
  .partner-header h2 {
    font-size: 28px;
  }
  .partner-subtext {
    font-size: 17px;
  }
  /* Insights */
  .insights-section {
    padding: 60px 16px;
  }
  .insights-section h2 {
    font-size: 28px;
  }
  .insights-subtext {
    font-size: 17px;
  }
  
  /* CTA banner within services section */
  .cta-text h3 {
    font-size: 28px;
    text-align: center;
  }
  
  /* Closing paragraph */
  .closing-text {
    font-size: 17px;
    padding: 0 10px;
  }
}
@media (max-width: 576px) {
  .hero-image img {
    max-width: 260px;
  }
}
.case-study-highlight {
  background: #f5f3f0;
  padding: 25px 20px;
  text-align: center;
  font-family: "DM Sans", sans-serif;
}
.section-title {
  font-family: "Poetsen One", sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}
.section-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #666;
  margin-bottom: 40px;
}
.case-card {
  background: #ffffff;
  margin-bottom: 50px;
  border-radius: 18px;
  padding: 45px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
  text-align: left;
}
/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #1A8E68;
  background: #fff4eb;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.badge .dot {
  width: 8px;
  height: 8px;
  background: #1A8E68;
  border-radius: 50%;
}
/* Left Content */
.case-left h3 {
  font-family: "Balsamiq Sans", cursive;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}
.case-left p {
  font-size: 21px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
  letter-spacing: -0.2%;
  font-weight: 400;
}
/* Stats */
.stats {
  display: flex;
  justify-content: space-between;
  margin: 25px 0;
  text-align: center;
}
.stats div {
  flex: 1;
}
.stats .value {
  display: flex;
  justify-content: center;
  font-size: 36px;
  font-weight: 700;
  color: #1A8E68;
  margin-bottom: 4px;
  text-align: left;
}
.line {
  opacity: 80%;
  color: #f0ebe3;
}
#spce {
  margin-left: 10px;
}
.stats .label {
  font-size: 21px;
  color: #333;
  font-weight: 400;
  font-family: "Inter", sans-serif;
}

/* Note */
.note {
  font-size: 13px;
  color: #444;
  line-height: 1.6;
  margin-top: 10px;
}
/* Right Image with Accent */
.image-wrap {
  position: relative;
  display: inline-block;
}
.image-wrap img {
  border-radius: 14px;
  position: relative;
  z-index: 2;
  width: 65%;
  margin-left: 104px;
}
.image-wrap::after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: 39px;
  width: 65%;
  height: 95%;
  border-radius: 14px;
  background: #1A8E68;
  z-index: 1;
}
/* Decorative icon */
.decor-icon {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 40px;
  height: auto;
  z-index: 3;
}
/* Responsive */
@media (max-width: 900px) {
  .case-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 30px;
  }
  .case-left {
    text-align: center;
  }
  .stats {
    flex-direction: column;
    gap: 15px;
  }
  .stats div {
    margin-bottom: 10px;
  }
  .decor-icon {
    top: -10px;
    right: 10px;
  }
}
/* Additional responsive refinements for case study section */
@media (max-width: 1200px) {
  .case-study-highlight {
    padding: 60px 20px;
  }
  .case-card {
    padding: 36px;
    gap: 32px;
  }
  .stats .value {
    font-size: 32px;
  }
}
@media (max-width: 992px) {
  .case-card {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }
  .case-left {
    text-align: left;
  }
  .image-wrap img {
    max-width: 100%;
    height: auto;
  }
  .image-wrap::after {
    bottom: -8px;
    right: -8px;
  }

  .stats {
    flex-wrap: wrap;
    justify-content: center;
  }
  .stats div {
    flex: 0 0 45%;
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .case-study-highlight {
    padding: 40px 16px;
  }
  .case-card {
    padding: 24px;
    gap: 20px;
  }
  .case-left p {
    font-size: 17px;
  }
  .stats .value {
    font-size: 28px;
  }
  .stats .label {
    font-size: 14px;
  }
  .image-wrap::after {
    bottom: -6px;
    right: -6px;
  }
}
@media (max-width: 576px) {
  .stats div {
    flex: 0 0 100%;
  }
  .image-wrap::after {
    display: none;
  }
}

/* ============================
   ABOUT SECTION
============================ */
.about-section {
  padding: 80px 8%;
  background-color: #f5f3f0;
  font-family: "Inter", sans-serif;
  color: #111;
}
.about-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
/* LEFT COLUMN */
.about-left {
  flex: 1 1 45%;
  min-width: 300px;
}
.about-heading {
  font-size: 62px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  margin-top: 14px;
}
.about-border {
  display: inline-block;
  /* border: 2px solid #004aad; */
  /* padding: 6px 12px; */
}
.about-highlight {
  color: #1A8E68;
  font-style: italic;
}
.about-text {
  font-size: 24px;
  line-height: 35px;
  color: #333;
  margin-bottom: 25px;
  letter-spacing: 0px;
  font-family: "Poppins", sans-serif;
}
.about-btn {
  background-color: #D4A017;
  color: #ffffff;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.about-btn:hover {
  background-color: #d49e17e1;
  transform: scale(1.05);
}
/* RIGHT COLUMN */
.about-right {
  flex: 1 1 50%;
  min-width: 320px;
}
.about-subheading {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: 23px;
}
.about-right p {
  font-size: 23px;
  color: #333;
  line-height: 35px;
  margin-bottom: 18px;
  letter-spacing: 0px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
/* RESPONSIVE */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    gap: 40px;
  }
  .about-heading {
    font-size: 2rem;
  }
  .about-subheading {
    font-size: 1.4rem;
  }
}
section.case-study-highlight h2 {
  font-size: 42px;
  font-weight: 700;
  color: #333;
  line-height: 75px;
  margin-bottom: 0px;
}
/* ============================
   WHY PARTNER SECTION
============================ */
.why-partner-section {
  background-color: #f5f3f0;
  padding: 80px 8%;
  font-family: "Inter", sans-serif;
  color: #111;
  text-align: center;
}
.why-partner-container {
  max-width: 1200px;
  margin: 0 auto;
}
/* Heading + Subtext */
.why-partner-heading {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}
.why-partner-heading .highlight {
  color: #1A8E68;
  font-style: italic;
}

.why-partner-subtext {
  /* font-size: 1.05rem; */
  /* color: #333; */
  /* line-height: 1.7; */
  /* max-width: 850px; */
  /* margin: 0 auto 60px auto; */
  font-size: 24px;
  color: #333;
  line-height: 36px;
  margin-bottom: 42px;
  letter-spacing: 0px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
/* Cards Layout */
.why-partner-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 12px;
  overflow: hidden; /* ensures cards look merged */
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}
.partner-card {
  flex: 1;
  padding: 40px 30px;
  text-align: left;
  transition: all 0.3s ease;
}
.partner-card h3 {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 15px;
  margin-top: 0;
  line-height: 35px;
  letter-spacing: -1px;
  font-family: "Inter";
}
.partner-card p {
  font-size: 17px;
  line-height: 1.7;
  color: #675050;
  letter-spacing: 0px;
  font-family: "Poppins", sans-serif;
}
/* Color Variants */
.light-card {
  background-color: #ffffff;
}
.orange-card {
  background: linear-gradient(90deg, #1A8E68 0%, rgba(26, 142, 104, 0.8) 50%, #1A8E68 100%);
  color: #ffffff;
}
.orange-card p {
  color: #ffffff;
}
/* Hover Effects */
.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
/* Rounded Corners for First/Last */
.partner-card:first-child {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}
.partner-card:last-child {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}
/* Responsive */
@media (max-width: 992px) {
  .why-partner-cards {
    flex-direction: column;
    border-radius: 12px;
  }
  .partner-card {
    border-radius: 0;
    text-align: center;
  }
  .partner-card:first-child {
    border-radius: 12px 12px 0 0;
  }
  .partner-card:last-child {
    border-radius: 0 0 12px 12px;
  }
}
/* ============================
   WHAT WE DO SECTION
============================ */
.what-we-do-section {
  background-color: #f5f3f0;
  padding: 35px 8%;
  font-family: "Inter", sans-serif;
  color: #111;
  text-align: center;
}
.what-we-do-container {
  max-width: 1200px;
  margin: 0 auto;
}
/* Heading & Intro Text */
.what-we-do-heading {
  /* font-size: 2.2rem; */
  /* font-weight: 800; */
  /* margin-bottom: 20px; */
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 75px;
}
.what-we-do-heading .highlight {
  color: #1A8E68;
  font-style: italic;
}
.what-we-do-subtext {
  font-size: 24px;
  color: #333;
  line-height: 35px;
  margin-bottom: 42px;
  letter-spacing: 0px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}

/* Tablet: 600–1000px */
@media (max-width: 1000px) {
  .what-we-do-subtext {
    font-size: 21px;
    line-height: 32px;
  }
}

/* Mobile: 0–600px */
@media (max-width: 600px) {
  .what-we-do-subtext {
    font-size: 17px;
    line-height: 28px;
  }
}

/* Cards Layout */
.what-we-do-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 12px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}
.what-card {
  flex: 1;
  padding: 40px 30px;
  text-align: left;
  border-right: 1px solid #e8e8e8;
}
.what-card:last-child {
  border-right: none;
}

.what-card h3 {
  /* font-size: 1.4rem; */
  /* font-weight: 700; */
  /* margin-bottom: 15px; */
  font-size: 25px;
  /* font-weight: 400; */
  margin-bottom: 15px;
  font-family: "poppins", sans-serif;
  margin-top: 0;
  line-height: 35px;
  letter-spacing: -1px;
  font-family: "Inter";
}
.what-card p {
  /* font-size: 1.05rem; */
  /* line-height: 1.7; */
  /* color: #333; */
  font-size: 17px;
  line-height: 1.7;
  color: #675050;
  letter-spacing: -1px;
}
/* Middle Card Divider Subtle Variation */
.middle-card {
  background-color: #ffffff;
}

@media (max-width: 992px) {
  .what-we-do-bottom{
    font-size: 20px !important;
  }
}
/* Bottom Text */
.what-we-do-bottom {
  /* font-size: 1.05rem; */
  /* color: #333; */
  /* margin-top: 50px; */
  /* max-width: 900px; */
  /* margin-left: auto; */
  /* margin-right: auto; */
  /* line-height: 1.7; */
  font-size: 24px;
  color: #333;
  line-height: 35px;

  letter-spacing: 0px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  margin-top: 43px;
}
/* Responsive */
@media (max-width: 992px) {
  .what-we-do-cards {
    flex-direction: column;
    text-align: center;
  }
  .what-card {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding: 30px 25px;
  }
  .what-card:last-child {
    border-bottom: none;
  }
}
/* ============================
   PET GROWTH SECTION
============================ */
.pet-growth-section {
  background-color: #f5f3f0;
  padding: 80px 8%;
  font-family: "Inter", sans-serif;
  color: #111;
  text-align: center;
}
.pet-growth-container {
  max-width: 1200px;
  margin: 0 auto;
}
/* Headings */
.pet-growth-heading {
  /* font-size: 2.2rem; */
  /* font-weight: 800; */
  /* margin-bottom: 20px; */
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 75px;
  font-family: "Inter" !important;
}
.pet-growth-heading .highlight {
  color: #1A8E68;
  font-style: italic;
}
.pet-growth-subtext {
  /* font-size: 1.05rem; */
  /* color: #333; */
  /* line-height: 1.7; */
  /* max-width: 850px; */
  /* margin: 0 auto 60px auto; */
  font-size: 24px;
  color: #333;
  line-height: 40px;
  margin-bottom: 42px;
  letter-spacing: 0px;
  font-weight: 400;
  font-family: "Poppins", sans-serif !important;
}
/* Plan Cards */
.pet-growth-plans {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 7px;
}
.plan-card {
  flex: 1;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  padding: 35px 30px;
  text-align: left;
  transition: all 0.3s ease;
  min-width: 300px;
}
.orange-card {
  color: #ffffff;
}
.orange-card h4,
.orange-card p,
.orange-card li {
  color: #ffffff;
}
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}
/* _______________________________________________________________________DROPDOWN-SECTION____________________________________________________________ */
/* WRAPPER */
.pb-dropdown-wrapper {
  position: relative;
  width: 100%;
}

/* TOGGLE BUTTON */
.pb-dropdown-toggle {
  
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  font-size: 20px;
  font-family: "Inter";
  font-weight: 500;
  letter-spacing: -0.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.2s ease;
}

.pb-chevron {
  font-size: 13px;
  transition: transform 0.3s ease;
}

.pb-dropdown-toggle.active .pb-chevron {
  font-size: 13px;
  color:#1A8E68;
  transform: rotate(-180deg);
}
.pb-dropdown-toggle.active #orange-drop{
  color: white;
}

/* PANEL (OVERLAY) */
.pb-dropdown-panel {
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-radius: 10px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: all 0.25s ease;
  z-index: 9999;
}

/* OPEN STATE */
.pb-dropdown-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* TIER ITEM */
.pb-tier-item {
  padding: 10px 4px;
  border-radius: 6px;
  transition: background-color 0.2s ease;
  cursor: pointer;
}

.pb-tier-item:hover {
  background: rgba(218, 173, 149, 0.08); /* light orange hover */
}

/* TITLE */
.pb-tier-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #333;
}

/* SUB */
.pb-tier-sub {
  font-size: 16px;
  line-height: 1.5;
  color: #474747;
}

/* DIVIDER */
.pb-divider {
  height: 1px;
  background: #ececec;
  margin: 10px 0;
}

/* _________________________________________________________________________________________________________________________________________________________________ */
.plan-card h3 {
  /* font-size: 1.5rem; */
  /* font-weight: 700; */
  /* margin-bottom: 10px; */
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 15px;
  margin-top: 0;
  line-height: 35px;
  letter-spacing: -1px;
  font-family: "Inter";
}
.plan-desc {
  /* font-size: 1rem; */
  /* color: #333; */
  /* line-height: 1.6; */
  /* margin-bottom: 15px; */
  font-size: 15px;
  line-height: 1.7;
  color: #675050;
  letter-spacing: 0px;
  margin-bottom: 20px;
}
.orange-card .plan-desc {
  color: #ffffff;
}
.plan-price {
  /* font-size: 1.1rem; */
  /* font-weight: 600; */
  /* margin-bottom: 15px; */
  font-size: 21px;
  font-weight: 500;
  margin-bottom: -10px;
  margin-top: 0;
  line-height: 35px;
  letter-spacing: -1px;
  font-family: "Inter";
}
.plan-card h4 {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: 36px;
}
.plan-card ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 25px;
}
.plan-card ul li {
  /* font-size: 17px; */
  /* line-height: 1.6; */
  margin-bottom: 9px;
  /* color: #333; */
  font-size: 15px;
  line-height: 1.7;
  color: #675050;
  letter-spacing: 0px;
}
.orange-card ul li {
  color: #ffffff;
}
/* Buttons */
.plan-btn {
  background-color: #D4A017;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s ease;
  width: 59%;
  text-align: center;
  /* margin: 0 auto !important; */
}
.plan-btn:hover {
  background-color: #d49f18e3;
}
.white-btn {
  background-color: #ffffff;
  color: #333;
}
.white-btn:hover {
  background-color: #f4f4f4;
}
/* Add-ons */
.pet-addons {
  background: linear-gradient(0deg, #ffffff, #ffffff);
  border-radius: 10px;
  margin-top: 21px;
  padding: 50px 40px;
}
.addons-heading {
  /* font-size: 1.6rem; */
  /* font-weight: 700; */
  /* margin-bottom: 15px; */
  text-align: left;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 27px;
  margin-top: 0;
  line-height: 35px;
  letter-spacing: -1px;
  font-family: "Inter";
}

.addons-heading {
    text-align: left;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 27px;
    margin-top: 0;
    line-height: 35px;
    letter-spacing: -1px;
    font-family: "Inter";
}

/* Tablet: 600–1000px */
@media (max-width: 1000px) {
    .addons-heading {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 22px;
    }
}

/* Mobile: 0–600px */
@media (max-width: 600px) {
    .addons-heading {
        font-size: 21px;
        line-height: 28px;
        margin-bottom: 18px;
        letter-spacing: -0.5px;
    }
}

.addons-subtext {
  /* font-size: 1rem; */
  /* color: #333; */
  line-height: 1.7;
  max-width: 977px;
  /* margin: 0 auto 25px auto; */
  font-size: 21px;
  font-weight: 400;
  margin-bottom: 30px;
  margin-top: 0;
  text-align: left;
}
.addon-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
}

.addon-btn {
  background-color: #D4A017;
  color: #ffffff;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  line-height: 1.7;
  max-width: 977px;
  margin: 0 auto 10px auto;
  font-weight: 400;
}
.faq-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 0.5rem;
  background-color: rgba(244, 86, 0, 0.1); /* #1A8E68 at 10% */
  color: #1e0e00;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  border-radius: 10px;
  padding: 0.3em 1em;
  font-size: small;
  line-height: 1.4;
  white-space: nowrap;
}
.faq-label .dot {
  width: 0.8em;
  height: 0.8em;
  background-color: #1A8E68;
  border-radius: 50%;
  flex-shrink: 0;
}
.addon-btn:hover {
  background-color: #d49e17e0;
}
/* Responsive */
@media (max-width: 992px) {
  .pet-growth-plans {
    flex-direction: column;
  }
  .plan-card {
    text-align: center;
  }
  .plan-card ul {
    list-style-position: inside;
    padding-left: 0;
  }
}
@media (max-width: 600px) {
  .pet-growth-heading {
    font-size: 1.8rem;
  }
  .plan-card {
    padding: 25px 20px;
  }
}
/* Mobile: 0–600px → full width buttons */
@media (max-width: 600px) {
  .addon-btn {
    width: 100%;
    text-align: center;
    white-space: normal;
  }

  .addon-buttons {
    gap: 8px;
    
  }
}

/* Tablet: 600–1000px → 2-column layout */
@media (min-width: 600px) and (max-width: 1000px) {
  .addon-btn {
    flex: 1 1 calc(50% - 12px);
    text-align: center;
  }
}


/* ============================
   TESTIMONIALS SECTION
============================ */
.testimonials-section {
  background-color: #f5f3f0;
  padding: 45px 8%;
  font-family: "Inter", sans-serif;
  text-align: center;
  color: #111;
}
.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}
/* Top Section */
.section-tag {
  display: inline-block;
  background-color: #fff2e6;
  color: #1A8E68;
  font-size: 0.9rem;
  padding: 5px 12px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 15px;
}
.testimonials-heading {
  /* font-size: 2.2rem; */
  /* font-weight: 800; */
  /* margin-bottom: 20px; */
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 75px;
  font-family: "Inter" !important;
  margin-top: 0;
}
.testimonials-heading .highlight {
  color: #1A8E68;
  font-style: italic;
}
.testimonials-top {
  max-width: 1200px;
}
.testimonials-subtext {
  max-width: 1200px;
  /* font-size: 1.05rem; */
  /* color: #333; */
  /* line-height: 1.7; */
  /* max-width: 850px; */
  /* margin: 0 auto 60px auto; */
  font-size: 24px;
  color: #333333;
  line-height: 40px;
  margin-bottom: 42px;
  letter-spacing: 0px;
  font-weight: 400;
  font-family: "Poppins", sans-serif !important;
  margin-top: 0;
}
@media (max-width: 1000px) {
    .testimonials-subtext {
        font-size: 21px;
        line-height: 34px;
    }
}

/* Mobile (0–600px) */
@media (max-width: 600px) {
    .testimonials-subtext {
        font-size: 17px;
        line-height: 28px;
    }
}
/* Cards */
.testimonial-cards {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
}
.testimonial-card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  padding: 30px 25px;
  text-align: left;
  flex: 1;
  min-width: 300px;
  max-width: 360px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.stars {
  color: #ffb400;
  font-size: 1.3rem;
  margin-bottom: 15px;
}
.testimonial-card h4 {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 35px;
  letter-spacing: 0px;
  color: #333;
}
.scaling-smart-form {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-sizing: border-box;
}

.scaling-smart-form input,
.scaling-smart-form select,
.scaling-smart-form textarea,
.scaling-smart-form button {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.testimonial-card p {
  font-size: 17px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 25px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-initial {
  background-color: #fff8f3;
  color: #1A8E68;
  font-weight: 700;
  width: 50px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
/* .author-initial.orange {
  /* background-color: #1A8E68; */
/* color: #ffffff; */
/* } */
.testimonial-author span {
  font-size: 12px;
  color: #666;
}
/* Stats Row */
.testimonial-stats {
  background-color: #ffffff;
  border-radius: 10px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 43px 17px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 20px;
}
.testimonial-stats .stat h3 {
  font-size: 45px;
  color: #1A8E68;
  font-weight: 700;
  margin-bottom: 5px;
}
.testimonial-stats .stat p {
  font-size: 17px;
  color: #333;
  margin: 0 auto;
  margin-top: 20px;
  width: 63%;
}
/* CTA Section */
.testimonial-cta {
  background-color: #ffffff;
  padding: 60px 40px;
  border-radius: 12px;
  text-align: center;
}
.cta {
  background-color: #ffffff;
  padding: 60px 40px;
  border-radius: 12px;
  text-align: center;
}
.cta p {
  max-width: 832px;
  /* margin-left: auto; */
  /* margin-right: auto; */
  font-size: 24px;
  color: #333;
  line-height: 32px;
  margin-bottom: 42px !important;
  letter-spacing: 0px;
  font-weight: 400;
  font-family: "Poppins", sans-serif !important;
  margin-top: 0;
  margin: 0 auto;
  margin-top: 20px;
}
@media (max-width: 600px) {
  .cta p {
    font-size: 17px !important;
  }
}
@media (max-width: 600px) {
  .testimonial-cta p {
    font-size: 17px !important;
  }
}
@media (max-width: 1000px) {
  .launch-image {
    text-align: center !important;
  }
}

.cta h3 {
  font-size: 40px;
  color: #1A8E68;
  font-weight: 700;
  margin-bottom: 5px;
  margin-top: 0;
}
.testimonial-cta h3 {
  /* color: #1A8E68; */
  /* font-size: 1.8rem; */
  /* font-weight: 800; */
  /* margin-bottom: 15px; */
  font-size: 42px;
  color: #1A8E68;
  font-weight: 700;
  margin-bottom: 5px;
  margin-top: 0;
}

@media (max-width: 991px) {
  .hero-buttons a,
  .btn-outline {
    display: none;
  }
}

.testimonial-cta p {
  /* font-size: 1.05rem; */
  /* color: #333; */
  /* margin-bottom: 25px; */
  max-width: 832px;
  /* margin-left: auto; */
  /* margin-right: auto; */
  font-size: 24px;
  color: #333;
  line-height: 32px;
  margin-bottom: 42px !important;
  letter-spacing: 0px;
  font-weight: 400;
  font-family: "Poppins", sans-serif !important;
  margin-top: 0;
  margin: 0 auto;
  margin-top: 20px;
}
.cta-banner .cta-btn {
  background-color: #ffffff;
  color: #010205;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}
.cta-banner .cta-btn img {
  color: #010205;
}

/* Responsive */
@media (max-width: 992px) {
  .testimonial-cards {
    flex-direction: column;
    align-items: center;
  }
  .testimonial-card {
    max-width: 500px;
  }
  .testimonial-stats {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .testimonials-heading {
    font-size: 1.8rem;
  }
  .testimonial-cta h3 {
    font-size: 1.5rem;
  }
  .cta h3 {
    font-size: 1.5rem;
    font-weight: 800;
  }
  
}
/* ============================
   SCALING SMART SECTION
============================ */
.scaling-smart-section {
  background-color: #f5f3f0;
  padding: 80px 8%;
  font-family: "Inter", sans-serif;
  color: #111;
}
.scaling-smart-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
  flex-wrap: wrap;
}
/* Left Column */
.scaling-smart-left {
  flex: 1;
  min-width: 300px;
}
.scaling-smart-left h2 {
  /* font-size: 2.2rem; */
  /* font-weight: 800; */
  /* margin-bottom: 20px; */
  /* line-height: 1.3; */
  font-size: 54px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  margin-top: 14px;
}
.scaling-smart-left .highlight {
  color: #1A8E68;
  font-style: italic;
}
.scaling-smart-left p {
  /* font-size: 1.05rem; */
  /* color: #333; */
  /* line-height: 1.7; */
  /* margin-bottom: 15px; */
  font-size: 23px;
  color: #333;
  line-height: 35px;
  margin-bottom: 18px;
  letter-spacing: 0px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
/* Right Column (Form) */
.scaling-smart-form {
  flex: 1;
  max-width: 575px;
  min-width: 340px;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 35px 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 17px;
  outline: none;
  transition: 0.3s;
  font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #1A8E68;
}
textarea {
  min-height: 90px;
  resize: none;
}
.full {
  width: 100%;
}
/* Submit Button */
.submit-btn {
  width: 100%;
  background-color: #D4A017;
  color: #ffffff;
  font-weight: 600;
  padding: 14px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 17px;
  transition: background-color 0.3s ease;
  margin-top: 24px;
}
.submit-btn:hover {
  background-color: #d49e17e3;
}

/* Tablet (≤ 1000px) */
@media (max-width: 1000px) {
    .cta p {
        font-size: 21px;
        line-height: 30px;
    }
}

/* Mobile (≤ 600px) */
@media (max-width: 600px) {
    .cta p {
        font-size: 17px;
        line-height: 26px;
    }
}
/* Responsive */
@media (max-width: 992px) {
  .scaling-smart-container {
    flex-direction: column;
    align-items: center;
  }
  .scaling-smart-form {
    width: 100%;
    max-width: 500px;
  }
  .scaling-smart-left {
    text-align: center;
  }
  .scaling-smart-left h2 {
    font-size: 1.9rem;
  }
}
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }
  .scaling-smart-left p {
    font-size: 1rem;
  }
  .accelerate-list li{
    font-size: 17px;
  }
}
@media (max-width: 600px) {
.accelerate-list li{
    font-size: 17px !important;
  }
}

/* ============================
   LAUNCH PACKAGE SECTION
============================ */
.launch-package-section {
  background-color: #f5f3f0;
  padding: 80px 8%;
  font-family: "Inter", sans-serif;
}
.launch-package-container {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
/* Left Column */
.launch-text {
  flex: 1;
  min-width: 320px;
}
.launch-text .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "inter", sans-serif;
  font-style: italic;
  background-color: #ffffff;
  color: #1A8E68;
  font-weight: 600;
  font-size: 21px;
  padding: 6px 14px;
  border-radius: 10px;
  margin-bottom: 20px;
}
#text-sze {
  font-size: 40px;
}
.launch-text .dot {
  width: 14px;
  height: 14px;
  background-color: #1A8E68;
  border-radius: 50%;
}
.launch-text h2 {
  /* font-size: 2.4rem; */
  /* font-weight: 800; */
  /* color: #111; */
  /* line-height: 1.3; */
  /* margin-bottom: 15px; */
  font-size: 51px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  margin-top: 0;
}
.launch-text .highlight {
  color: #1A8E68;
  font-style: italic;
}
.launch-text .subtext {
  /* font-size: 1.05rem; */
  /* color: #333; */
  /* line-height: 1.7; */
  /* margin-bottom: 30px; */
  font-size: 24px;
  color: #333;
  line-height: 35px;
  margin-bottom: 18px;
  letter-spacing: 0px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
.launch-btn {
  display: inline-block;
  background-color: #D4A017;
  color: #ffffff;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.launch-btn:hover {
  background-color: #d49e17e3;
}
/* Right Column */
.launch-image {
  flex: 1;
  min-width: 340px;
  text-align: right;
}
.launch-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
/* Responsive */
@media (max-width: 992px) {
  .launch-package-container {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }
  .launch-text {
    max-width: 600px;
  }
  .launch-text h2 {
    font-size: 2rem;
  }
  .launch-image img {
    max-width: 90%;
  }
}
@media (max-width: 600px) {
  .launch-text h2 {
    font-size: 1.8rem;
  }
  .launch-btn {
    width: 100%;
    text-align: center;
  }
}
/* Base */
.launch-fit-section {
  background: #f5f3f0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  color: #111;
}
/* TOP: Full-width heading + intro */
.launch-fit-top {
  max-width: 1200px;
  margin: 0 auto 48px auto;
  text-align: center;
}
.launch-fit-top h2 {
  /* font-size:2.15rem; */
  /* font-weight:800; */
  /* line-height:1.3; */
  /* margin:0 0 16px 0; */
  font-size: 36px;
  font-weight: 700;
  margin: 0;
  line-height: 75px;
  font-family: "Inter" !important;
}
.launch-fit-accent {
  color: #1A8E68;
  font-style: italic;
}
.launch-fit-intro {
  /* font-size:1.05rem; */
  /* line-height:1.7; */
  /* color:#333; */
  /* margin:0; */
  font-size: 23px;
  color: #333;
  line-height: 40px;
  margin-bottom: 42px;
  letter-spacing: 0px;
  font-weight: 400;
  font-family: "Poppins", sans-serif !important;
}
/* GRID: content below heading */
.launch-fit-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: start;
}
/* Left column */
.launch-fit-left h3 {
  /* font-size:1.1rem; */
  /* font-weight:700; */
  /* margin:0 0 18px 0; */
  font-size: 22px;
  color: #333;
  line-height: 40px;
  /* margin-bottom: 42px; */
  letter-spacing: 0px;
  font-weight: 400;
  font-family: "Poppins", sans-serif !important;
  margin-top: 0;
}
.mid {
  width: 100%;
  display: flex;
  justify-content: center;
}
.launch-fit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.launch-fit-list li {
  /* font-size:1rem; */
  /* line-height:1.75; */
  /* color:#333; */
  /* margin:0 0 18px 0; */
  font-size: 21px;
  color: #333333;
  line-height: 30px;
  margin-bottom: 40px;
  letter-spacing: 0px;
  font-weight: 400;
  font-family: "Poppins", sans-serif !important;
}
.launch-fit-list li strong {
  color: #333333;
  font-weight: 600;
  font-size: 21px;
  font-family: "poppins", sans-serif;
}
.launch-fit-list li p{
  font-size: 17px;
}
/* Right column (image) */
.launch-fit-right img {
  width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
}
/* Responsive */
@media (max-width: 1024px) {
  .launch-fit-top h2 {
    font-size: 1.95rem;
  }
  .launch-fit-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .launch-fit-top {
    text-align: left;
    margin-bottom: 36px;
  }
  .launch-fit-intro {
    font-size: 1rem;
  }
}


@media (max-width: 768px) {
  .hero-section,
  .growth-partner,
  .amazon-services,
  .partner-section,
  .insights-section {
    padding: 40px 6%;
  }
}
@media (max-width: 992px) {
  .pet-growth-plans {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .case-study-highlight {
    padding: 40px 6%;
  }
}
@media (max-width: 640px) {
  .launch-fit-section {
    padding: 56px 6%;
  }
  .launch-fit-top h2 {
    font-size: 1.75rem;
  }
  .launch-fit-intro {
    font-size: 17px;
  }
  .launch-fit-list li {
    font-size: 17px;
  }
}
@media (max-width: 1024px) {
  .launch-fit-section {
    padding: 56px 6%;
  }
  .launch-fit-top h2 {
    font-size: 1.75rem;
  }
  .launch-fit-intro {
    font-size: 17px;
  }
  .launch-fit-list li {
    font-size: 17rpx;
  }
}
/* =============================
   GROWTH BLUEPRINT SECTION
============================= */
.growth-blueprint-section {
  display: grid;
  justify-content: center;
  background-color: #f5f3f0;
  padding: 80px 8%;
  font-family: "Inter", sans-serif;
  color: #111;
}
.growth-blueprint-container {
  max-width: 1200px;
  margin: 0 auto;
}
/* Header */
.blueprint-top {
  text-align: center;
  margin-bottom: 50px;
}
.blueprint-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ffffff;
  color: #1A8E68;
  font-size: 0.9rem;
  padding: 6px 14px;
  border-radius: 10px;
  font-style: italic;
  font-weight: 500;
  font-size: 21px;
  margin-bottom: 18px;
}
.blueprint-tag .dot {
  width: 10px;
  height: 10px;
  background-color: #1A8E68;
  border-radius: 50%;
}
.blueprint-top h2 {
  /* font-size: 2rem; */
  /* font-weight: 800; */
  /* margin-bottom: 14px; */
  font-size: 36px;
  font-weight: 700;

  line-height: 75px;
  font-family: "Inter" !important;
  margin-top: 0;
}
.blueprint-top .highlight {
  color: #1A8E68;
  font-style: italic;
}
.blueprint-top p {
    font-size: 23px;
    color: #333333;
    line-height: 38px;
    margin-bottom: 42px;
    letter-spacing: 0px;
    font-weight: 400;
    font-family: "Poppins", sans-serif !important;
}

/* Tablet (600–1000px) */
@media (max-width: 1000px) {
    .blueprint-top p {
        font-size: 21px;
        line-height: 32px;
    }
}

/* Mobile (0–600px) */
@media (max-width: 600px) {
    .blueprint-top p {
        font-size: 17px;
        line-height: 28px;
    }
}

/* Table Layout */
.blueprint-table {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.blueprint-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  border-top: 1px solid #ddd;
  padding-top: 30px;
  gap: 126px;
  align-items: center;
}
.blueprint-left {
  /* font-weight: 700; */
  /* color: #111; */
  /* font-size: 1.05rem; */
  /* line-height: 1.5; */
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  margin-top: 0;
  line-height: 35px;
  letter-spacing: -1px;
  font-family: "Inter";
}
.blueprint-right p {
  /* font-size: 1rem; */
  /* line-height: 1.75; */
  /* color: #333; */
  /* margin-bottom: 12px; */
  font-size: 21px;
  line-height: 32px;
  color: #333333;
  letter-spacing: 0px;
  font-family: "Poppins", sans-serif;
}
.blueprint-right strong {
  color: #333333;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}
/* Responsive Design */
@media (max-width: 992px) {
  .blueprint-row {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 20px;
  }
  .blueprint-left {
    font-size: 22px;
  }
  .blueprint-right p {
    font-size: 17px;
  }
  .blueprint-top h2 {
    font-size: 1.8rem;
  }
}
@media (max-width: 600px) {
  .growth-blueprint-section {
    padding: 60px 6%;
  }
  .blueprint-left {
    text-align: left;
  }
  .blueprint-top h2 {
    font-size: 1.6rem;
  }
  .blueprint-right p {
    font-size: 17px;
  }
}

/* ---------- Section Base ---------- */
.ntb-metrics-section {
  padding: 64px 6%;
  background: #f5f3f0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  color: #111;
}
.ntb-metrics-wrap {
  max-width: 1200px;
  margin: 0 auto;
}
/* ---------- Heading ---------- */
.ntb-metrics-title {
  text-align: center;
  /* font-size: clamp(1.6rem, 2.2vw + 1rem, 2.1rem); */
  /* font-weight: 800; */
  /* margin: 0 0 10px; */
  /* line-height: 1.25; */
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 75px;
  font-family: "Inter" !important;
  margin-top: 0;
}
.ntb-accent {
  color: #1A8E68;
  font-style: italic;
}
.ntb-metrics-sub {
  text-align: center;
  /* color: #555; */
  /* max-width: 840px; */
  /* margin: 0 auto 26px; */
  /* line-height: 1.7; */
  /* font-size: 1.02rem; */
  font-size: 24px;
  color: #333;
  line-height: 40px;
  margin-bottom: 42px;
  letter-spacing: 0px;
  font-weight: 400;
  font-family: "Poppins", sans-serif !important;
}
/* ---------- Grid ---------- */
.ntb-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Desktop: 3 columns */
  gap: 0px;
}
/* ---------- Standard Cards ---------- */
.ntb-card {
  background: #ffffff;
  border: 1px solid #e9e9e9;
  /* border-radius: 12px; */
  padding: 20px 20px 22px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 160px; /* keeps heights tidy without forcing equal */
  margin-top: -7px;
}
.ntb-card h3 {
  font-size: 24px;
  line-height: 1.35;
  margin: 0;
  font-weight: 500;
  font-family: "Inter" !important;
  width: 80%;
  margin-bottom: 20px;
}
.ntb-card p {
  margin: 0;
  color: #444;
  font-size: 17px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
}
/* ---------- CTA Card ---------- */
.ntb-card-cta {
  background: linear-gradient(360deg, #1A8E68 0%, #1A8E68 100%);
  color: #ffffff;
  border-radius: 12px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 6px 16px rgba(255, 107, 0, 0.25);
}
.ntb-card-cta h3 {
  /* margin: 0; */
  /* font-size: 1.15rem; */
  /* font-weight: 800; */
  font-size: 24px;
  line-height: 1.35;
  margin: 0;
  font-weight: 500;
  font-family: "Inter" !important;
  width: 80%;
  margin-bottom: 20px;
}
.ntb-card-cta p {
  /* margin: 0; */
  /* line-height: 1.65; */
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  /* color: #444; */
  font-size: 17px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
}
.ntb-cta-btn {
  align-self: start;
  margin-top: 6px;
  background: #ffffff;
  color: #1A8E68;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  padding: 10px 14px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
}
.ntb-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 7px 16px rgba(255, 255, 255, 0.25);
}
/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .ntb-metrics-grid {
    grid-template-columns: repeat(2, 1fr); /* Tablet: 2 columns */
  }
}
@media (max-width: 620px) {
  .ntb-metrics-section {
    padding: 48px 5%;
  }
  .ntb-metrics-grid {
    grid-template-columns: 1fr; /* Mobile: 1 column */
  }
}
/* ----------------------------
   LAUNCH → LONG-TERM GROWTH
----------------------------- */
.launch-growth-section {
  background-color: #f5f3f0;
  padding: 80px 8%;
  font-family: "Inter", sans-serif;
  color: #111;
}
.launch-growth-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
/* Tag */
.growth-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ffffff;
  color: #1A8E68;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 6px 14px;
  border-radius: 10px;
  font-style: italic;
  margin-bottom: 20px;
}
.growth-tag .dot {
  width: 10px;
  height: 10px;
  background-color: #1A8E68;
  border-radius: 50%;
}
/* Heading */
.launch-growth-section h2 {
  /* font-size: 2rem; */
  /* font-weight: 800; */
  /* line-height: 1.3; */
  /* margin-bottom: 16px; */
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 75px;
  font-family: "Inter" !important;
  margin-top: 0;
}
.launch-growth-section .highlight {
  color: #1A8E68;
  font-style: italic;
}
/* Description */
.growth-desc {
  /* font-size: 1.05rem; */
  /* color: #333; */
  /* line-height: 1.7; */
  /* max-width: 850px; */
  /* margin: 0 auto 50px; */
  font-size: 24px;
  color: #333;
  line-height: 40px;
  margin-bottom: 42px;
  letter-spacing: 0px;
  font-weight: 400;
  font-family: "Poppins", sans-serif !important;
}
/* Packages Row */
.growth-packages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  margin-bottom: 40px;
}
.growth-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
  padding: 30px 28px;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.growth-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
#line-height {
  line-height: 15px;
}
.growth-card h3 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 6px;
  margin-top: 0;
  font-family: "Inter";
  line-height: 37px;
}
.growth-card .growth-sub {
  color: #1A8E68;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 12px;
  font-size: 24px;
  font-family: "Inter";
  line-height: 37px;
}
.growth-card p {
  color: #333;
  font-size: 21px;
  line-height: 1.7;
  margin: 0;
  font-family: "Open sans", sans-serif;
  font-weight: 400;
  letter-spacing: -0.5px;
}
/* Add-ons */
.growth-addons {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
  padding: 36px 30px;
  text-align: center;
}
.growth-addons h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.growth-addons p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 22px;
  line-height: 1.6;
}
/* Buttons */
.growth-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.addon-btn {
  background-color: #D4A017 !important;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  padding: 10px 22px;
  font-size: 17px;
  transition: all 0.2s ease;
}
.addon-btn:hover {
  background-color: #d49e17e0;
  transform: translateY(-2px);
}
/* Responsive */
@media (max-width: 992px) {
  .launch-growth-section {
    padding: 70px 6%;
  }
  .growth-packages {
    grid-template-columns: 1fr;
  }
  .launch-growth-section h2 {
    font-size: 1.8rem;
  }
  .growth-desc {
    font-size: 17px;
    margin-bottom: 36px;
  }
  .growth-card {
    padding: 26px 24px;
  }
}
@media (max-width: 600px) {
  .growth-tag {
    font-size: 0.85rem;
    padding: 5px 12px;
  }
  .launch-growth-section h2 {
    font-size: 1.6rem;
  }
  .growth-addons {
    padding: 28px 22px;
  }
  .growth-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .addon-btn {
    text-align: center;
  }
}
/* ============================
   GROWTH PARTNER SECTION
============================ */
.growth-partner-section {
  background-color: #f5f3f0;
  padding: 80px 8%;
  font-family: "Inter", sans-serif;
  color: #111;
}
.growth-partner-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
/* Heading */
.growth-title {
  /* font-size: 2rem; */
  /* font-weight: 800; */
  /* line-height: 1.3; */
  /* margin-bottom: 14px; */
  font-size: 42px;
  font-weight: 700;
  color: #333;
  line-height: 75px;
  margin-bottom: 0px;
}
.highlight {
  color: #1A8E68;
  font-style: italic;
}
/* Subtitle */
.growth-sub {
  /* font-size: 1.05rem; */
  /* color: #333; */
  /* line-height: 1.7; */
  /* max-width: 850px; */
  /* margin: 0 auto 48px; */
  font-size: 24px;
  color: #333;
  line-height: 40px;
  margin-bottom: 42px;
  letter-spacing: 0px;
  font-weight: 400;
  font-family: "Poppins", sans-serif !important;
  margin-top: 0;
}
/* Features Grid */
.growth-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.growth-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 46px;
  text-align: left;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.growth-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.growth-card h3 {
  /* font-size: 1.15rem; */
  /* font-weight: 800; */
  /* line-height: 1.4; */
  /* margin-bottom: 10px; */
  font-size: 24px;
  font-weight: 700;
  color: #333;
  line-height: 37px;
  margin-bottom: 0px;
}
.growth-card p {
  /* font-size: 17px; */
  /* color: #333; */
  /* line-height: 1.65; */
  /* margin: 0; */
  font-size: 21px;
  color: #333;
  line-height: 32px;
  margin-bottom: 42px;
  letter-spacing: 0px;
  font-weight: 400;
  font-family: "Poppins", sans-serif !important;
  margin-top: 0;
}
/* Responsive */
@media (max-width: 992px) {
  .growth-features {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .growth-title {
    font-size: 1.8rem;
  }
  .growth-sub {
    font-size: 1rem;
    margin-bottom: 36px;
  }
  .growth-card {
    padding: 24px 22px;
  }
}
@media (max-width: 600px) {
  .growth-partner-section {
    padding: 60px 6%;
  }
  .growth-title {
    font-size: 1.6rem;
  }
  .growth-sub {
    font-size: 17px;
  }
  .growth-card h3 {
    font-size: 1.05rem;
  }
  .growth-card p {
    font-size: 17px;
  }
}
/* ============================
   DATA LOYALTY SECTION
============================ */
.data-loyalty-section {
  background-color: #f5f3f0;
  padding: 80px 8%;
  font-family: "Inter", sans-serif;
  color: #111;
}
.data-loyalty-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
/* Heading */
.data-title {
  /* font-size: 2rem; */
  /* font-weight: 800; */
  /* line-height: 1.3; */
  /* margin-bottom: 16px; */
  font-family: "Inter", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
  line-height: 75px;
}
.highlight {
  color: #1A8E68;
  font-style: italic;
}
/* Description */
.data-sub {
  /* font-size: 1.05rem; */
  /* color: #333; */
  /* line-height: 1.7; */
  /* max-width: 850px; */
  /* margin: 0 auto 48px; */
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  color: #333;
  line-height: 36px;
  /* max-width: 750px; */
  margin: 0 auto;
  letter-spacing: 0px;
  margin-bottom: 32px;
}
/* Grid */
.data-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.data-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 26px;
  text-align: left;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.data-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.data-card h3 {
  /* font-size: 1.1rem; */
  /* font-weight: 800; */
  /* line-height: 1.4; */
  /* margin-bottom: 10px; */
  font-size: 28px;
  font-weight: 500;
  color: #333;
  line-height: 75px;
  margin-bottom: 0px;
  margin-top: 0;
}
.data-card p {
  /* font-size: 17px; */
  /* color: #333; */
  /* line-height: 1.65; */
  /* margin: 0; */
  font-size: 21px;
  color: #333;
  line-height: 32px;
  margin-bottom: 42px;
  letter-spacing: 0px;
  font-weight: 400;
  font-family: "Poppins", sans-serif !important;
  margin-top: 0;
}
/* Responsive */
@media (max-width: 992px) {
  .data-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .data-title {
    font-size: 1.8rem;
  }
  .data-sub {
    font-size: 1rem;
    margin-bottom: 36px;
  }
  .data-card {
    padding: 24px 22px;
  }
}
@media (max-width: 600px) {
  .data-loyalty-section {
    padding: 60px 6%;
  }
  .data-title {
    font-size: 1.6rem;
  }
  .data-sub {
    font-size: 17px;
  }
  .data-card h3 {
    font-size: 1.05rem;
  }
  .data-card p {
    font-size: 17px;
  }
}


@media screen and (max-width: 500px) {
  .hero-content h1 {
    font-size: 17px;
    line-height: 36px !important;
  }
  h2.growth-title {
    font-size: 17px;
    line-height: 36px !important;
  }
  .growth-card h3 {
    font-size: 21px;
    line-height: 28px;
  }
  .amazon-services h2 {
    /* font-size: 28px; */
    font-size: 17px;
    line-height: 36px !important;
  }
  section.case-study-highlight h2 {
    font-size: 25px;
    line-height: 28px !important;
  }

  .stats .value {
    text-align: center;
  }
  .stats .label {
    margin-left: 0px;
  }
  .image-wrap img {
    margin-left: 0;
  }
  .cta-text h3 {
    font-size: 22px;
    text-align: center;
  }
  .partner-header h2 {
    /* font-size: 28px; */
    font-size: 21px;
    line-height: 36px !important;
  }
  .partner-content p {
    font-family: "Poppins", sans-serif;
    color: #333333;
    font-size: 21px;
    line-height: 36px;
    margin-bottom: 47px;
    margin-top: 0;
  }
  @media screen and (min-width: 1000px) {
    .service-title {
      font-size: 22px;
      font-weight: 900;
    }
  }
  @media screen and (max-width: 600px) {
    .partner-content p {
      font-size: 17px;
    }
  }

  .partner-content strong {
    font-weight: 600;
    color: #111;
    font-size: 17px;
  }
  .data-title {
    font-size: 23px;
    line-height: 32px;
  }
  .insights-section h2 {
    /* font-size: 28px; */
    font-size: 23px;
    line-height: 32px;
  }
 
  .launch-text h2 {
    font-size: 21px;
  }
  .launch-image img {
    max-width: 100%;
  }
  .launch-image {
    flex: 1;
    /* min-width: 340px; */
    text-align: left;
    margin: 0 auto !important;
  }
  .launch-text .subtext {
    /* font-size: 1.05rem; */
    /* color: #333; */
    /* line-height: 1.7; */
    /* margin-bottom: 30px; */
    font-size: 17px;
    color: #333;
    line-height: 35px;
    margin-bottom: 18px;
    letter-spacing: 0px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    width: 100%;
  }
  .launch-btn {
    width: 72%;
    text-align: center;
  }
  .launch-fit-top h2 {
    font-size: 21px;
    line-height: 34px;
    /* text-align: center; */
  }
  .blueprint-top h2 {
    font-size: 21px;
    line-height: 30px;
  }
  .launch-text {
    flex: 1;
    min-width: 268px;
  }
  .blueprint-top p {
    /* font-size: 1.05rem; */
    /* color: #333; */
    /* line-height: 1.7; */
    /* max-width: 800px; */
    /* margin: 0 auto; */
    font-size: 17px;
    color: #333;
    line-height: 25px;
    margin-bottom: 42px;
    letter-spacing: 0px;
    font-weight: 400;
    font-family: "Poppins", sans-serif !important;
  }
  .ntb-metrics-title {
    text-align: center;
    /* font-size: clamp(1.6rem, 2.2vw + 1rem, 2.1rem); */
    /* font-weight: 800; */
    /* margin: 0 0 10px; */
    /* line-height: 1.25; */
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 31px;
    font-family: "Inter" !important;
    margin-top: 0;
  }
  .ntb-metrics-sub {
    text-align: center;
    /* color: #555; */
    /* max-width: 840px; */
    /* margin: 0 auto 26px; */
    /* line-height: 1.7; */
    /* font-size: 1.02rem; */
    font-size: 17px;
    color: #333;
    line-height: 26px;
    margin-bottom: 42px;
    letter-spacing: 0px;
    font-weight: 400;
    font-family: "Poppins", sans-serif !important;
  }
  .ntb-card h3 {
    font-size: 24px;
    line-height: 28px;
    margin: 0;
    font-weight: 500;
    font-family: "inter" !important;
    width: 80%;
    margin-bottom: 20px;
  }
  .launch-growth-section h2 {
    font-size: 21px;
    line-height: 28px;
  }
  .growth-desc {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 28px;
  }
  .growth-card .growth-sub {
    color: #1A8E68;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 12px;
    font-size: 17px;
    font-family: "Inter";
    line-height: 20px;
  }
  .pet-addons {
    background: linear-gradient(0deg, #ffffff, #ffffff);
    border-radius: 10px;
    margin-top: 21px;
    padding: 41px 18px;
  }
  .addons-subtext {
    /* font-size: 1rem; */
    /* color: #333; */
    line-height: 26px;
    max-width: 977px;
    /* margin: 0 auto 25px auto; */
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 30px;
    margin-top: 0;
    text-align: left;
  }
  .testimonials-heading {
    font-size: 21px;
    line-height: 28px;
  }
  .testimonials-subtext {
    max-width: 1200px;
    /* font-size: 1.05rem; */
    /* color: #333; */
    /* line-height: 1.7; */
    /* max-width: 850px; */
    /* margin: 0 auto 60px auto; */
    font-size: 17px;
    color: #333;
    line-height: 27px;
    margin-bottom: 42px;
    letter-spacing: 0px;
    font-weight: 400;
    font-family: "Poppins", sans-serif !important;
    margin-top: 0;
  }
  .testimonial-stats .stat p {
    font-size: 17px;
    color: #333;
    margin: 0 auto;
    margin-top: 20px;
    width: 100%;
  }
  .testimonial-stats .stat h3 {
    font-size: 32px;
    color: #1A8E68;
    font-weight: 700;
    margin-bottom: 5px;
  }
  .testimonial-cta {
    background-color: #ffffff;
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
  }
  .testimonial-cta p {
    /* font-size: 1.05rem; */
    /* color: #333; */
    /* margin-bottom: 25px; */
    max-width: 832px;
    /* margin-left: auto; */
    /* margin-right: auto; */
    font-size: 17px;
    color: #333;
    line-height: 24px;
    margin-bottom: 42px !important;
    letter-spacing: 0px;
    font-weight: 400;
    font-family: "Poppins", sans-serif !important;
    margin-top: 0;
    margin: 0 auto;
    margin-top: 20px;
  }
  .launch-image {
    flex: 1;
    min-width: 290px;
    text-align: left;
  }
  .launch-image img {
    max-width: 93% !important;
  }
  .testimonial-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    padding: 30px 30px;
    text-align: left;
    flex: 1;
    min-width: 218px;
    max-width: 400px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }
  .plan-btn {
    background-color: #D4A017;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    bottom: 0;
    transition: 0.3s ease;
    width: 74%;
    text-align: center;
    /* margin: 0 auto !important; */
  }
  .plan-card {
    flex: 1;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    padding: 35px 30px;
    text-align: left;
    transition: all 0.3s ease;
    min-width: 228px;
  }
  .plan-card.orange-card a {
    background: #ffffff !important;
    color: #333;
  }
  .plan-card.orange-card ul li {
    color: #ffffff;
  }
  .pet-growth-heading {
    /* font-size: 2.2rem; */
    /* font-weight: 800; */
    /* margin-bottom: 20px; */
    font-size: 23px !important;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 35px;
    font-family: "Inter" !important;
  }
  .pet-growth-subtext {
    /* font-size: 1.05rem; */
    /* color: #333; */
    /* line-height: 1.7; */
    /* max-width: 850px; */
    /* margin: 0 auto 60px auto; */
    font-size: 21px;
    color: #333;
    line-height: 25px;
    margin-bottom: 42px;
    letter-spacing: 0px;
    font-weight: 400;
    font-family: "Poppins", sans-serif !important;
  }
  .plan-card ul li {
    /* font-size: 17px; */
    /* line-height: 1.6; */
    margin-bottom: 9px;
    /* color: #333; */
    font-size: 15px;
    line-height: 1.7;
    color: #675050;
    letter-spacing: 0px;
    text-align: left;
  }
  .about-right {
    flex: 1 1 50%;
    min-width: 288px;
  }
  .about-left {
    flex: 1 1 45%;
    min-width: 290px;
  }
  .partner-card {
    flex: 1;
    padding: 40px 14px;
    text-align: left;
    transition: all 0.3s ease;
  }
  .about-right p {
    font-size: 17px;
    color: #333;
    line-height: 26px;
    margin-bottom: 18px;
    letter-spacing: 0px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    width: 92%;
  }
  .about-text {
    font-size: 21px;
    line-height: 30px;
    color: #333;
    margin-bottom: 25px;
    letter-spacing: 0px;
    font-family: "Poppins", sans-serif;
  }
  .why-partner-heading {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 32px;
  }
  .what-we-do-heading {
    /* font-size: 2.2rem; */
    /* font-weight: 800; */
    /* margin-bottom: 20px; */
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 40px;
  }
  .what-we-do-subtext {
    /* font-size: 1.05rem; */
    /* color: #333; */
    /* line-height: 1.7; */
    /* max-width: 850px; */
    /* margin: 0 auto 60px auto; */
    font-size: 17px;
    color: #333;
    line-height: 26px;
    margin-bottom: 42px;
    letter-spacing: 0px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
  }
  .services-subtext {
    font-size: 17px;
    line-height: 23px;
  }
  .scaling-smart-left p {
    font-size: 21px;
    line-height: 27px;
  }
  .scaling-smart-left p {
    font-size: 21px;
    line-height: 27px;
  }
  .why-partner-subtext {
    /* font-size: 1.05rem; */
    /* color: #333; */
    /* line-height: 1.7; */
    /* max-width: 850px; */
    /* margin: 0 auto 60px auto; */
    font-size: 20px;
    color: #333;
    line-height: 25px;
    margin-bottom: 42px;
    letter-spacing: 0px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
  }
  .scaling-smart-form {
    width: 100%;
    max-width: 483px;
    /* margin-left: -19px; */
  }

  .scaling-smart-left {
    flex: 1;
    min-width: 271px;
  }
  .scaling-smart-form {
    flex: 1;
    min-width: 204px;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 35px 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }
}

/* ________________________________________________________________________________________________________________________ */
/* === NTB Metrics Section === */
.ntb-metrics-section {
  background: #f5f3f0;
  padding: 80px 20px;
  font-family: "Inter", sans-serif;
  color: #111;
}
.ntb-metrics-wrap {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.ntb-metrics-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111;
}
.ntb-accent {
  color: #1A8E68;
  font-style: italic;
}
.ntb-metrics-sub {
  color: #5c5c5c;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 48px;
  line-height: 1.6;
}
.ntb-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  justify-content: center;
}
.ntb-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 28px 26px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ntb-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}
.ntb-card h3 {
  font-size: 21px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: #333;
  margin-bottom: 10px;
}
.ntb-card p {
  color: #333;
  font-size: 17px;
  font-weight: 100;
  font-family: "Poppins", sans-serif;
  line-height: 1.5;
  letter-spacing: 0px;
  margin: 0;
}
/* === CTA Card === */
.ntb-card-cta {
  background: #1A8E68;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ntb-card-cta h3 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 12px;
}
.ntb-card-cta p {
  color: #ffffff;
  margin-bottom: 18px;
}
.ntb-cta-btn {
  align-self: flex-start;
  background: #ffffff;
  color: black;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 15px;
  font-weight: 300;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.ntb-cta-btn:hover {
  background: #f9f9f9;
  transform: scale(1.04);
}
/* === Responsive === */
@media (max-width: 960px) {
  .ntb-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .ntb-metrics-grid {
    grid-template-columns: 1fr;
  }
  .ntb-metrics-title {
    font-size: 30px;
  }
  .ntb-metrics-sub {
    font-size: 17px;
  }
}
/* _________________________________________________________________________________________________________________________________*/
.growth-partner-section {
  background: #f5f3f0;
  padding: 80px 20px;
  font-family: "Inter", sans-serif;
  color: #111;
}
.content-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.section-header h1 {
  font-size: 38px;
  font-weight: 700;
  color: #111;
  margin-bottom: 14px;
}
.highlight-main {
  color: #1A8E68;
  font-style: italic;
}
.subtitle {
  font-family: "Poppins", sans-serif;
  color: #333;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 20px;
}
/* ___________________ */
/* ==============================
   GROWTH PARTNER SECTION FINAL
   ============================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  justify-content: center;
  align-items: stretch; /* ensures equal height */
}
/* Feature Boxes */
.feature-box {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #f0ebe3;
  padding: 28px 26px;
  font-family: "Poppins", sans-serif;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-sizing: border-box;
  display: flex; /* makes equal height alignment possible */
  flex-direction: column; /* stack content vertically */
  justify-content: space-between; /* spread heading and text evenly */
  overflow-wrap: anywhere;
  height: 100%; /* allow full stretch inside grid cell */
}
.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}
.feature-box h2 {
  font-family: "Inter", sans-serif;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #111;
}
.highlight-secondary {
  color: #1A8E68;
  font-style: italic;
}
.feature-box p {
  font-family: "Poppins", sans-serif;
  color: #333;
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1; /* helps text fill available space evenly */
}
/* === CTA CARD === */
.feature-box.call-to-action {
  background: #1A8E68;
  color: #ffffff;
  border: 1px solid #1A8E68;
  align-items: center;
  justify-content: center;
  text-align: left;
}
.feature-box.call-to-action h2,
.feature-box.call-to-action p {
  color: #ffffff;
}
.cta-button {
  background: #ffffff;
  color: #333;
  border: none;
  border-radius: 8px;
  padding: 10px 25px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.cta-button:hover {
  background: #f9f9f9;
  transform: translateY(-2px);
}
/* Responsive Layout */
@media (max-width: 992px) {
  .feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
}
@media (max-width: 576px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature-box {
    padding: 22px 20px;
  }
  .feature-box h2 {
    font-size: 22px;
  }
  .feature-box p {
    font-size: 15px;
  }
}
/* ________________________ */
.cta-button:hover {
  background: #f9f9f9;
  transform: scale(1.04);
}
/* === Responsive === */
@media (max-width: 960px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .section-header h1 {
    font-size: 30px;
  }
  .subtitle {
    font-size: 17px;
  }
}

.accelerate-list {
  font-family: "Poppins", sans-serif;
  color: #333;
  max-width: 750px;
  line-height: 32px;
}
.accelerate-list p {
  font-size: 21px;
  font-weight: 400;
  margin-bottom: 8px;
  font-family: "Poppins", sans-serif !important;
}
.accelerate-list ul {
  list-style-type: disc;
  padding-left: 25px;
  margin-left: 22px;
  margin-bottom: 16px;
}
/* Original */
.accelerate-list ul {
  list-style-type: disc;
  padding-left: 25px;
  margin-left: 22px;
  margin-bottom: 16px;
}

/* Responsive fix: remove left spacing below 900px */
@media (max-width: 900px) {
  .accelerate-list ul {
    padding-left: 20px;
    margin-left: 0;
  }
}

.accelerate-list li {
  font-size: 21px;
  font-weight: 400;
  margin-bottom: 6px;
  line-height: 32px;
}
/* Learn More link */
.learn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 50px;
  color: #1A8E68;
  font-size: 21px;
  font-weight: 400;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 2px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.learn-link:hover {
  color: #d94a00;
  border-color: rgba(0, 0, 0, 0.3);
}
.learn-link img {
  width: 16px;
  height: auto;
  display: inline-block;
}
/* _____________________________sequence-page______________________________________________________________________ */

/* ------------------------------------- */
/* 3. TABLET PORTRAIT (max-width: 768px) */
/* Major stacking and typography scaling for tablet/mobile view */
/* ------------------------------------- */







@media (max-width: 768px) {
  /* General Body/Section Padding */
  .hero-section,
  .growth-partner,
  .amazon-services,
  .partner-section,
  .insights-section {
    padding: 40px 15px;
  }

  /* Typography Scaling */
  .hero-content h1 {
    font-size: 36px;
    line-height: 45px !important;
  }
  .hero-content p {
    font-size: 17px;
    line-height: 1.6;
  }
  .growth-description,
  .services-subtext,
  .closing-text,
  .partner-subtext,
  .insights-subtext{
    font-size: 17px;
    line-height: 1.6;
  }

  /* Buttons */
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    margin-bottom: 20px;
  }
  .btn-outline {
    width: 90%; /* Buttons take up most of the width */
    max-width: 300px; /* Prevents stretching too wide */
    padding: 12px 20px;
    text-align: center;
  }
  .local-link {
    display: block;
    text-align: center;
  }

  /* Growth Partner Section */
  .growth-box p {
    width: 100%; /* Fix: ensures text does not overflow box */
  }
  .growth-box h3 {
    font-size: 24px;
  }
  .growth-box p {
    font-size: 17px;
    text-align: left;
  }

  /* Amazon Services (Service Items are already stacked via existing query, adjust font sizes) */
  .service-title h3 {
    font-size: 24px;
  }
  .service-description p {
    font-size: 17px;
    line-height: 1.6;
  }

  /* CTA Banner (Existing query for 768px is good, scaling text) */
  .cta-banner {
    padding: 40px 25px;
  }
  .cta-text h3 {
    font-size: 28px;
    text-align: center;
  }
  .testimonial-cta .cta-btn {
    padding: 12px 30px;
    font-size: 17px;
  }

  /* Trusted Section */
  .trusted-stats {
    justify-content: space-between; /* Better use of mobile width */
  }


  /* Insights Section */
  .insight-card h3 {
    font-size: 22px;
    line-height: 1.4;
  }

  .brand-info {
    order: -1; /* Put the brand info at the top */
  }
}

/* ------------------------------------- */
/* 4. SMALL MOBILE (max-width: 576px) */
/* Final adjustments for very narrow screens */
/* ------------------------------------- */

@media (max-width: 576px) {
  /* General Typography */
  h1 {
    font-size: 30px !important;
    line-height: 1.3 !important;
  }
  h2,
  .final-heading {
    font-size: 23px !important;
    line-height: 25px !important;
  }
 

  /* Hero Section */
  .hero-content h1 {
    font-size: 30px;
    line-height: 40px !important;
  }
  .hero-image img {
    max-width: 100%;
  }

  /* Growth Section */
  .growth-box {
    padding: 25px 20px;
  }
  .growth-box h3 {
    font-size: 21px;
  }

  /* CTA Banner */
  .cta-banner {
    margin: 40px 15px;
  }
  .cta-text h3 {
    font-size: 24px;
  }

  /* Insights Grid */
  .insights-grid {
    grid-template-columns: 1fr; /* Force a single column for all cards */
  }
  .insight-card {
    padding: 25px;
  }

}
#newsletter-form{
  
  gap: 5px;
}
/* ================= RESPONSIVE FIXES – ADD AT BOTTOM ================= */

/* Tablets & down */
@media (max-width: 991px) {
  /* Hero */
  .hero-content {
    min-width: 0;
    flex: 1 1 100%;
  }

  .hero-content h1 {
    font-size: 36px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 17px;
    line-height: 1.6;
    max-width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons a,
  .btn-outline {
    width: 100%;
    text-align: center;
  }

  /* Service rows: stack instead of two fixed columns */
  .service-item {
    grid-template-columns: 1fr;
  }

  /* Partner section image: let it be flexible */
  .partner-image img {
    height: auto;
    min-height: 0;
    max-height: none;
    margin-top: 0;
  }

  /* Trusted card: stack on smaller screens (just in case) */
  .trusted-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
.faq-left h2{
    font-size: 24px;
    line-height: 1.3;
  }
}

  

  


  
/* Mobiles */
@media (max-width: 768px) {
  /* General typography scaling */
  .growth-partner h2,
  .amazon-services h2,
  .partner-header h2,
  .insights-section h2{
    font-size: 24px;
    line-height: 1.3;
  }

  .growth-description,
  .services-subtext,
  .partner-subtext,
  .insights-subtext,
  .closing-text {
    font-size: 17px;
    line-height: 1.6;
  }

  /* Remove hard widths inside cards */
  .growth-box p {
    width: 100%;
  }

  .growth-box {
    height: auto;
    padding: 24px 20px;
  }

  /* Hero image */
  .hero-image img {
    max-width: 280px;
  }


}










/* ________________________________________________________________________________________________________________________________________________________

                                                                       Footer Section
___________________________________________________________________________________________________________________________________________________________ */
/*(((((FOOTER)))))*/

/* _________________________________________________________________________________________________________________________________________________________________ */
/* _____________________________________________________________________________Footer-section______________________________________________________________________ */
/* _________________________________________________________________________________________________________________________________________________________________ */
/* Footer */
.ntb-footer {
  padding: 200px 20px 4px;
  background-color: #ffffff;
  border-top: 1px solid #eee;
  position: relative;
  z-index: 1;
}
@media (max-width: 1000px) {
    .ntb-footer {
        padding: 70px 20px 4px;
    }
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}


/* Links */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}
.footer-col ul li {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  color: #333;
  margin-bottom: 8px;
  cursor: pointer;
  transition: color 0.3s ease;
  margin-bottom: 20px;
}
.footer-col ul li:hover {
  color: #1A8E68;
}

/* Footer Columns */
.footer-col h3,
.footer-col h4 {
  color: #111;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Let's Talk */
.lets-talk-btn {
  background-color: #D4A017;
  color: #ffffff;
  border: none;
  padding: 8px 18px;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
}
.lets-talk-btn:hover {
  background-color: #d49e17e1;
}
/* Social */
.social-icons img {
  width: 40px;
  margin-right: 10px;
  cursor: pointer;
  transition: transform 0.2s;
}
.social-icons img:hover {
  transform: scale(1.1);
}
.social-icons img {
  width: 40px;
  height: auto;
}

@media (max-width: 576px) {
  .social-icons img {
    width: 28px;
  }
}



.subscribe {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
}
.subscribe input {
  flex: 1;
  padding: 10px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: "Poppins", sans-serif;
}
.subscribe-btn {
  background-color: #D4A017;
  color: #ffffff;
  border: none;
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.subscribe-btn:hover {
  background-color: #d49e17e1;
}

@media (max-width: 576px) {
  .subscribe {
    flex-direction: column;
  }
  .subscribe input,
  .subscribe-btn {
    width: 100%;
    margin-top: 5px;
    text-align: center;
  }}
  /* --- DESKTOP LAYOUT (side-by-side) ONLY --- */
@media (min-width: 768px) {
  #newsletter-form {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }

  #newsletter-form input[type="email"] {
    flex: 1;
  }

  #newsletter-form button,
  .subscribe-btn {
    height: 44px;
    white-space: nowrap;
  }
}


@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}
/* .cta-footer-wrapper {
  background-color: #f5f3f0 !important;
} */

@media (max-width: 768px) {
  .cta-footer-wrapper {
    padding-top: 40px; /* space above footer if needed */
  }

  /* Footer columns: single column */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    text-align: center;
  }
}

@media (max-width: 768px) {
  /* Footer */
  .footer-container {
    grid-template-columns: 1fr; /* Stack columns */
    gap: 30px;
  }
  .footer-col h3,
  .footer-col h4 {
    margin-bottom: 10px;
    font-size: 21px;
  }
}

.decore-none a {
  text-decoration: none;
  color: #333;
}
.decore-none a:hover {
  color: #1A8E68;
}

.footer-col:nth-child(1) {
  transition-delay: 0.15s;
}
.footer-col:nth-child(2) {
  transition-delay: 0.3s;
}
.footer-col:nth-child(3) {
  transition-delay: 0.45s;
}
.footer-col:nth-child(4) {
  transition-delay: 0.6s;
}

/* CTA Footer Wrapper */
.cta-footer-wrapper {
  position: relative;
  font-family: "Inter", sans-serif;
  /* background-color: #f9f8f6; */
}
@media (max-width: 992px) {
  .cta-footer-wrapper {
    margin-top: 0 !important;
  }
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #eee;
  padding-top: 20px;
  font-size: 13px;
  color: #555;
}


/*+++++++++++ with cta btn ++++++++++++ */

.cta-footer-wrapper .cta-btn {       
  background-color: #ffffff;
  color: #010205;
  font-weight: 600;
  padding: 14px 33px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
  font-size: 17px;
  border: 0px solid !important;
}

@media (max-width: 992px) {
/* CTA footer bar: remove absolute layout on small screens */
  .cta-footer-wrapper {
    margin-top: 40px;
  }
}



/* Tablet (≤ 768px) */
@media (max-width: 768px) {
    .growth-partner-section {
        padding: 40px 15px; /* or 0 if you want 100% no padding */
    }
}

/* Mobile (≤ 480px) */
@media (max-width: 480px) {
    .growth-partner-section {
        padding: 0px 10px; /* 80 becomes 0 on mobile */
    }
}

/* Contact Info */
.footer-contact li {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #333;
  margin-bottom: 12px;
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-contact img {
  width: 16px;
  height: 16px;
  margin-top: 3px;
}


#for-padding{
  padding-bottom: 400px;
}

  @media (max-width: 1024px) {
  #for-padding {
    padding-bottom: 0 !important;
  }
}

#logooo-btm-margin{
  margin-bottom: 10px;
}


/* _____________________________________________________________________________Add-new changing_________________________________________________________________________________________ */

.small-chevron {
    font-size: 12px;
    margin-left: 4px;
    transition: transform 0.25s ease;
  }

  /* Rotate on hover (desktop) */
  .dropdown:hover > a .small-chevron {
    transform: rotate(180deg);
  }

  /* Rotate when active (mobile click) */
  .dropdown.show > a .small-chevron {
    transform: rotate(180deg);
  }



  #dn{
    text-decoration: none;
  }
















  /* __________________________________________________________________________Blog-css__________________________________________________________________________________ */


  

  
  /* ________________________________________blog-css___________________________________________________________________________________________ */ 
  /* _____________________________stationary-page______________________________________________________________________ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@500;600;700;800&display=swap');
/* ============ VARIABLES & TOP UI ============ */
:root {
  --stationary-progress-height: 4px;
  --stationary-warning-height: 36px;
  --stationary-header-height: 88px;
  --stationary-page-gap: 16px;
  --stationary-max-width: 1280px;
  --stationary-bg: #ffffff;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #0f1724;
  /* background: var(--stationary-bg); */
}
/* ---------- TOP PROGRESS BAR ---------- */
#stationaryScrollProgress {
  position: fixed;
  top: 0;
  z-index: 100000;
  left: 0;
  height: var(--stationary-progress-height);
  width: 0%;
  background: #1A8E68;
  transition: width 150ms linear, opacity 250ms ease;
  opacity: 0;
  pointer-events: none;
}
/* ---------- WARNING BAR ---------- */
.stationary-warning-bar {
  position: relative;
  top: 0;
  margin-top: var(--stationary-progress-height);
  left: 0;
  right: 0;
  height: var(--stationary-warning-height);
  line-height: var(--stationary-warning-height);
  background: #D4A017;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  z-index: 10010;
  padding: 0 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform .25s ease;
}
.stationary-warning-bar .stationary-verify {
  color: #1A8E68;
  text-decoration: underline;
  margin-left: 6px;
}
/* ---------- HEADER ---------- */
/* Header */
.stationary-site-header {
  background: #ffffff;
  border-bottom: 1px solid #eee;
  font-family: 'Balsamiq Sans', cursive;
}
.stationary-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

/* ---------------- HERO SECTION ---------------- */
.stationary-modern-hero-section {
  width: 100%;
  padding: 90px 20px 40px;
  background: linear-gradient(to bottom, #fdfdfd, #fafafa 60%, #f8f8f8 100%);
  border-bottom: 1px solid #ececec;
  display: flex;
  justify-content: center;
}
.stationary-hero-inner {
  max-width: 1150px;
  width: 100%;
  margin-right: 350px;
  margin-left: 350px;


  text-align: left;
}
.stationary-hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin: 0 0 16px;
  font-weight: 800;
  line-height: 1.18;
  color: #000000;
}
.stationary-hero-meta {
  font-size: 13px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.2;
  margin-top: 30px;
  margin-bottom: 30px;
}
.stationary-feed {
  display: flex;
}
.stationary-hero-meta .stationary-dot {
  width: 5px;
  height: 5px;
  background: #555;
  border-radius: 50%;
}
.stationary-hero-authors {
  display: flex;
  align-items: flex-start;
  padding-top: 20px;
  gap: 300px;
}
.stationary-hero-author {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.stationary-hero-author .stationary-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #999;
  margin-bottom: 8px;
  line-height: 1;
  height: 14px;
  display: block;
}
.stationary-hero-author img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}
.stationary-hero-author .stationary-name {
  font-size: 15px;
  vertical-align: middle;
  margin-top: 15px;
  margin-left: 15px;
  font-weight: 600;
  color: #0f1724;
}
.stationary-branding-section {
  width: 100%;
  padding: 30px 20px 40px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
      display: none;
}
.stationary-branding-section img {
  max-width: 1200px;
  height: 675px;
  width: 100%;
  border-radius: 12px;
}
.stationary-toc-column {
  position: sticky;
  top: 120px;
  align-self: flex-start;
}

.stationary-toc-box {
  max-height: calc(50% - 160px);
  overflow-y: auto;
}

/* Hierarchy */
.stationary-toc-list li.toc-h1 a { font-weight: 600; }
.stationary-toc-list li.toc-h2 { padding-left: 12px; }
.stationary-toc-list li.toc-h3 { padding-left: 24px; font-size: 0.95em; }
.stationary-toc-list li.toc-h4 { padding-left: 36px; font-size: 0.9em; }

/* Active */
.stationary-toc-list a.active {
  color: #1f7aed;
  font-weight: 600;
  position: relative;
}

.stationary-toc-list a.active::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 16px;
  background: #1f7aed;
  border-radius: 2px;
}

/* =============== IMPROVED MAIN LAYOUT =============== */
.stationary-page-wrapper {
  padding: 48px 0 0;
  background: #fafafa;
}
.stationary-article-grid {
    max-width: 1450px !important;
    margin: 0 auto;                              
    padding: 0 32px;
    display: grid;
    grid-template-columns: 300px 1fr 350px;
    gap: 32px;
    align-items: flex-start;
}
/* =============== LEFT TOC COLUMN =============== */
.stationary-toc-column {
  position: sticky;
    top: 120px;
    /*background: #fff;*/
    border-radius: 12px;
    padding: var(--stationary-space-xl);
    box-shadow: var(--stationary-shadow-sm);
    border: 1px solid var(--stationary-ink-100);
    height: max-content;
}
.stationary-toc-box {
  position: sticky;
  /* top: calc(var(--stationary-progress-height) + var(--stationary-warning-height) + var(--stationary-header-height) + 24px); */
  background: #ffffff;
  padding: 1.9rem;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
  border: 1px solid #e5e7eb;
  transition: box-shadow 0.2s ease;
}
@media (min-width: 1024px) {
    .stationary-article-grid {
        max-width: 1450px;
        margin: 0 auto 360px;              /* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
        padding: 2rem;
        display: grid;
        grid-template-columns: 300px 1fr 350px;
        gap: 5px;
        align-items: start;
        border: none;
    }
}
.stationary-toc-box:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.05);
}
.stationary-toc-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  font-family: 'Inter' !important;
  letter-spacing: 0.5px;
}
.stationary-toc-list {
  border: none;
  list-style: none;
  padding: 0;
  margin: 0;
}
.stationary-toc-list li {
  margin: 0;
  border-left: 2px solid #e5e7eb;
  transition: border-color 0.2s ease;
}
.stationary-toc-list li:hover {
  border-left-color: #1A8E68;
}
.stationary-toc-list a {
  display: block;
  padding: 10px 0 10px 16px;
  color: #4b5563;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
  transition: all 0.2s ease;
}
.stationary-toc-list a:hover {
  color: #1A8E68;
  padding-left: 20px;
}
.stationary-toc-list a.stationary-active {
  font-weight: 600;
  color: #1A8E68;
  padding-left: 20px;
  border-left-color: #1A8E68;
}
.stationary-review-card {
  margin-top: 10px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 22px 14px 20px;
  width: 250px;
  text-align: center;
  font-family: 'Inter', sans-serif;
}
/* Title */
.stationary-review-card h4 {
  font-size: 15.5px;
  font-weight: 700;
  color: #111;
  margin-bottom: 16px;
}
/* REVIEWED ON + STARS */
.stationary-review-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
}
/* Dropdown Base */
.stationary-reviewed-label {
  color: #485057;
  font-size: 11px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  font-weight: 500;
}
/* Thicker Stars */
.stationary-stars {
  font-size: 17px;
  font-weight: 900;     /* extra bold */
  letter-spacing: 2px;
  color: #ff3b30;
}
/* Logo + Review Count */
.stationary-logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.stationary-review-logo {
  width: 95px;
  height: auto;
}
.stationary-review-count {
  font-size: 11.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 500;
  color: #7b7b7b;
  margin-top: 2px;
}
/* =============== CENTER ARTICLE COLUMN =============== */
.stationary-article-content {
  background: #ffffff;
  font-family: 'Crimson Text', Georgia, serif;
  border-radius: 12px;
  border: 1px solid #ffffff;
  max-width: 100%;
  padding: 0px 32px !important;
    border: none !important;
    box-shadow: none !important;
    font-family: '';
    font-size: 18px;
    line-height: 1.75;
    color: #262626;
    overflow-wrap: break-word;
    word-wrap: break-word;
}
@media (min-width: 1024px) {
    .stationary-article-content {
        /* font-family: 'Crimson Text', Georgia, serif; */
        font-size: 18px;
        padding: 0;
        max-width: 100%;
    }
}
.stationary-ai-summary-box {
  background: #ffffff;
  border: 1.5px solid #c9d8ff;
  border-radius: 12px;
  padding: 22px 24px;
  font-family: 'Inter', sans-serif;
}
.stationary-ai-summary-box h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #111827;
}
.stationary-ai-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #2563eb;
  text-decoration: none;
  margin-bottom: 12px;
}
.stationary-ai-link:last-child {
  margin-bottom: 0;
}
.stationary-ai-link:hover {
  text-decoration: underline;
}
.stationary-ai-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: inline-block;
}
.stationary-article-content h1 {
  font-family: 'phoppins',"Inter";
  font-size: 36px;
  font-weight: 900;
  line-height: 1.2;
  margin: 0 0 32px 0;
  color: #111827;
  letter-spacing: -0.02em;
}
.stationary-article-content h2 {
  font-family: 'phoppins',"Inter";
  font-size: 32px;
  font-weight: 900;
  line-height: 1.3;
  margin: 56px 0 24px 0;
  color: #111827;
  letter-spacing: -0.01em;
  scroll-margin-top: calc(var(--stationary-progress-height) + var(--stationary-warning-height) + var(--stationary-header-height) + 32px);
}
.stationary-article-content h3 {
  font-family: 'phoppins',"Inter";
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  margin: 40px 0 20px 0;
  color: #1f2937;
  scroll-margin-top: calc(var(--stationary-progress-height) + var(--stationary-warning-height) + var(--stationary-header-height) + 32px);
}
.stationary-article-content p {
      font-family: 'Open-sans', sans-serif !important;
  font-size: 17px;
  line-height: 1.75;
  color: #374151;
  margin: 0 0 24px 0;
  max-width: 100%;
}
.stationary-article-content a {
  color: #1A8E68;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.stationary-article-content a:hover {
  border-bottom-color: #1A8E68;
}
/* =============== RIGHT SIDEBAR COLUMN =============== */
.stationary-right-column {
  position: sticky;
    top: 120px;
    background: transparent;
    border: 1px solid var(--stationary-ink-100);
    padding: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,.06);
    border: 1px solid var(--stationary-ink-100);
    box-shadow: none;
}
.stationary-sticky-wrapper {
  position: sticky;
  top: calc(var(--stationary-progress-height) + var(--stationary-warning-height) + var(--stationary-header-height) + 24px);
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  padding: 24px;
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.2s ease;
}
/* _______________________________________________________________________________right column____ */
.stationary-right-column {
  width: 100%;
  max-width: 350px;
  padding-left: 20px;
}
.stationary-sticky-wrapper {
  position: sticky;
  top: 20px;
}
/* AI Summary Box */
.stationary-ai-summary-box {
  border: 2px solid #1A8E68;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 35px;
}
.stationary-ai-summary-box .stationary-ai-title {
 font-family: 'phoppins',"Inter";
    font-size: 15px;
    font-weight: 600;
    color: #171717;
    margin-bottom: 14px;
    display: block;
}
/* AI Links */
.stationary-ai-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 15px;
  text-decoration: underline;
  color: #D4A017;
  margin-bottom: 10px;
  transition: .2s;
}
.stationary-ai-link:hover { text-decoration: underline; }
.stationary-ai-icon {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}
/* Related Articles */
.stationary-related-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
}
.stationary-related-card {
  background: #fff;
  border-radius: 10px;
  padding: 14px 16px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
  margin-bottom: 14px;
}
.stationary-related-card a {
  display: block;
  font-weight: 600;
  color: #000;
  font-size: 15px;
  margin-bottom: 5px;
  text-decoration: none;
}
.stationary-related-card a:hover { text-decoration: underline; }
.stationary-related-card span {
  font-size: 13px;
  color: #7b7b7b;
}
/* ______________________________________________________________________________ */
.stationary-ai-box,
.stationary-related-box {
  background: #ffffff;
  padding: 28px 24px;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
  border: 1px solid #e5e7eb;
  transition: box-shadow 0.2s ease;
}
.stationary-ai-box:hover,
.stationary-related-box:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.05);
}
.stationary-ai-box h3,
.stationary-related-box h3 {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stationary-ai-box ul,
.stationary-related-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.stationary-ai-box li,
.stationary-related-box li {
  margin: 0 0 12px 0;
}
.stationary-ai-box li:last-child,
.stationary-related-box li:last-child {
  margin-bottom: 0;
}
.stationary-ai-box a,
.stationary-related-box a {
  display: block;
  padding: 12px 16px;
  color: #374151;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 8px;
  background: #f9fafb;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}
.stationary-ai-box a:hover,
.stationary-related-box a:hover {
  background: #f3f4f6;
  color: #1A8E68;
  border-color: #e5e7eb;
  transform: translateX(2px);
}
/* Mobile panel */
.stationary-mobile-panel {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: calc(var(--stationary-progress-height) + var(--stationary-warning-height) + var(--stationary-header-height));
  background: #fff;
  z-index: 9998;
  padding: 12px;
  box-shadow: 0 8px 30px rgba(2, 6, 23, 0.2);
}
.stationary-mobile-panel .stationary-mobile-link {
  display: block;
  padding: 12px 8px;
  color: #0f1724;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
}
.stationary-mobile-panel.stationary-show {
  display: block;
}
/* =============== RESPONSIVE DESIGN =============== */
@media (max-width: 1280px) {
  .stationary-article-grid {
    grid-template-columns: 260px 1fr 320px;
    gap: 40px;
  }
  .stationary-article-content {
    padding: 48px 48px 64px;
  }
}
@media (max-width: 1100px) {
  .stationary-article-grid {
    grid-template-columns: 240px 1fr;
    gap: 40px;
  }
  .stationary-right-column {
    display: none;
  }
  .stationary-article-content {
    padding: 48px 40px 64px;
  }
}
@media (max-width: 900px) {
  .stationary-article-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 16px 60px;
  }
  .stationary-toc-column {
    display: none;
  }
  .stationary-article-content {
    padding: 40px 32px 56px;
    border-radius: 8px;
  }
  .stationary-article-content h1 {
    font-size: 2rem;
  }
  .stationary-article-content h2 {
    font-size: 1.5rem;
    margin-top: 40px;
  }
  .stationary-article-content h3 {
    font-size: 1.25rem;
  }
  .stationary-article-content p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .stationary-mobile-toggle {
    display: block;
  }
  .stationary-center-nav {
    display: none;
  }
  .stationary-header {
    height: 72px;
  }
  :root {
    --stationary-header-height: 72px;
  }
  .stationary-hero-authors {
    gap: 60px;
    flex-direction: column;
  }
  .stationary-hero-title {
    font-size: 2.2rem;
  }
  .stationary-article-content {
    padding: 32px 24px 48px;
  }
}
@media (max-width: 480px) {
  .stationary-article-content {
    padding: 24px 20px 40px;
  }
  .stationary-article-content h1 {
    font-size: 1.75rem;
  }
  .stationary-article-content h2 {
    font-size: 1.375rem;
  }
  .stationary-article-content p {
    font-size: 15px;
  }
}
.stationary-comment-box {
  max-width: 860px;
  margin: 60px auto;
  padding: 0 10px;
  font-family: 'Inter', sans-serif;
}
.stationary-comment-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f172a;
}
.stationary-comment-note {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 35px;
}
.stationary-comment-form label {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  display: block;
  margin-bottom: 6px;
}
.stationary-comment-form textarea {
  width: 100%;
  height: 180px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 15px;
  resize: vertical;
  outline: none;
  transition: border-color 0.2s ease;
}
.stationary-comment-form textarea:focus,
.stationary-comment-form input:focus {
  border-color: #3b82f6;
}
.stationary-comment-row {
  display: flex;
  gap: 18px;
  margin: 25px 0;
}
.stationary-comment-field {
  flex: 1;
}
.stationary-comment-field input {
  width: 100%;
  height: 46px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 0 14px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease;
}
.stationary-comment-field input:focus {
  border-color: #3b82f6;
}
.stationary-checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 25px;
  cursor: pointer;
}
.stationary-checkbox-row input {
  width: 16px;
  height: 16px;
}
.stationary-comment-submit {
  background: #1A8E68;
  color: #fff;
  border: none;
  display: inline-block;
  padding: 14px 26px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s ease;
}
.stationary-comment-submit:hover {
  background: #0284c7;
}
/* Mobile */
@media (max-width: 768px) {
  .stationary-comment-row {
    flex-direction: column;
  }
}
.stationary-post-nav {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 10px;
  font-family: 'Inter', sans-serif;
}
.stationary-post-card {
  flex: 1;
  display: block;
  background: #fafafa;
  border-radius: 12px;
  padding: 18px 26px;
  text-decoration: none;
  border: 1px solid #f1f1f1;
  transition: all 0.25s ease;
}
.stationary-post-card:hover {
  background: #f7f7f7;
  transform: translateY(-3px);
  box-shadow: 0px 3px 8px rgba(0,0,0,0.07);
}
.stationary-nav-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 6px;
}
.stationary-nav-title {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.45;
  margin: 0;
}
/* Optional better visual spacing */
.stationary-prev-post {
  text-align: left;
}
.stationary-next-post {
  text-align: left;
}
/* Responsive */
@media (max-width: 768px) {
  .stationary-post-nav {
    flex-direction: column;
  }
}
        /* ________________________________________voice reader_____________________________________________ */
        .stationary-article-audio-player {
  border: 2px solid #1A8E68;
  padding: 14px 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Inter", sans-serif;
  width: 100%;
  max-width: 100%;
  background: white;
  margin-bottom: 25px;
}
.stationary-tts-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #1A8E68;
  background: white;
  color: #1A8E68;
  font-size: 18px;
  cursor: pointer;
  font-weight: bold;
}
.stationary-tts-progress {
  flex-grow: 1;
  height: 8px;
  background: #f4f7ff;
  border-radius: 5px;
  overflow: hidden;
}
#stationaryTtsProgressBar {
  width: 0%;
  height: 100%;
  background: #1A8E68;
  transition: width 0.15s linear;
}
.stationary-highlight-reading {
  background: linear-gradient(90deg, rgba(14,165,255,0.09), rgba(14,165,255,0.04));
  border-left: 4px solid #1A8E68;
  padding-left: 8px !important;
  border-radius: 4px;
}
.stationary-toc-list a.stationary-active {
  color: #2563eb;
  border-left: 3px solid #2563eb;
  font-weight: 600;
  padding-left: 20px;
}


/* _______________________________________RESPONSIVE CSS____________________________________________________________________________ */

/* ========================================
   PROFESSIONAL RESPONSIVE CSS
   ======================================== */

/* Extra Large Desktops (1440px+) */
@media screen and (min-width: 1440px) {
  .stationary-article-grid {
    max-width: 1600px;
    gap: 0px;
  }
  
  .stationary-article-content {
    padding: 0 48px !important;
  }
}
nav.stationary-navbar.stationary-navbar-expand-lg.stationary-bg-white.stationary-border-bottom.stationary-py-2.stationary-mob {
    display: none;
}
@media screen and (min-width: 1000px) {
  .stationary-service-title {
    font-size: 22px;
    font-weight: 900;
  }
}
@media screen and (max-width: 600px) {
    .stationary-partner-content p {
        font-size: 17px;
    }
}



/* Large Tablets & Small Desktops (992px - 1279px) */
@media screen and (max-width: 1279px) {
  .stationary-article-grid {
    /* grid-template-columns: 260px 1fr 300px; */
    gap: 24px;
    padding: 0 24px;
  }
  
  .stationary-article-content {
    padding: 0 24px !important;
    font-size: 17px;
  }
  
  .stationary-article-content h1 {
    font-size: 32px;
  }
  
  .stationary-article-content h2 {
    font-size: 28px;
    margin: 48px 0 20px 0;
  }
  
  .stationary-article-content h3 {
    font-size: 24px;
  }
  
  .stationary-toc-box, .stationary-sticky-wrapper {
    padding: 20px;
  }
  
  .stationary-hero-inner {
    margin-right: 0px;
    margin-left: 0px;
  }
}

/* Tablets (768px - 991px) */
@media screen and (max-width: 991px) {
  /* Header Mobile Menu */
  .stationary-main-nav {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    display: none;
    padding: 20px 0;
    border-top: 1px solid #eee;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    z-index: 9998;
  }
  
  .stationary-main-nav.stationary-active {
    display: flex;
  }
  
  .stationary-main-nav ul {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 15px;
  }
  
  .stationary-dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border: none;
    background: #f9f9f9;
    margin-top: 10px;
  }
  
  .stationary-menu-toggle {
    display: block;
  }
  
  .stationary-cta-btnn {
    display: none;
  }
  
  /* Hero Section */
  .stationary-modern-hero-section {
    padding: 60px 20px 30px;
  }
  
  .stationary-hero-inner {
    margin-right: 0;
    margin-left: 0;
    max-width: 100%;
  }
  
  .stationary-hero-title {
    font-size: clamp(28px, 5vw, 42px);
    margin-bottom: 20px;
  }
  
  .stationary-hero-meta {
    font-size: 12px;
    flex-wrap: wrap;
  }
  
  .stationary-hero-authors {
    gap: 40px;
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .stationary-branding-section img {
    height: auto;
    max-height: 450px;
  }
  
  /* Article Grid - 2 Column */
  .stationary-article-grid {
    /* grid-template-columns: 240px 1fr; */
    gap: 20px;
    padding: 0 20px;
  }
  
  .stationary-right-column {
    display: none;
  }
  
  .stationary-article-content {
    padding: 0 20px !important;
    font-size: 16px;
  }
  
  .stationary-article-content h1 {
    font-size: 28px;
    margin-bottom: 24px;
  }
  
  .stationary-article-content h2 {
    font-size: 24px;
    margin: 40px 0 16px 0;
  }
  
  .stationary-article-content h3 {
    font-size: 20px;
    margin: 32px 0 16px 0;
  }
  
  .stationary-article-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  
  .stationary-toc-box {
    padding: 16px;
  }
  
  .stationary-toc-box h3 {
    font-size: 14px;
  }
  
  .stationary-toc-list a {
    font-size: 13px;
    padding: 8px 0 8px 12px;
  }
  
  .stationary-review-card {
    width: 100%;
    padding: 18px 12px;
  }
  
  /* Footer */
  .stationary-footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 20px;
  }
  
  .stationary-cta-bar {
    padding: 50px 20px;
  }
  
  .stationary-cta-bar h2 {
    font-size: 28px;
  }
  
  .stationary-cta-bar p {
    font-size: 16px;
  }
}

/* Mobile Landscape & Large Phones (600px - 767px) */
@media screen and (max-width: 767px) {
  h1.stationary-hero-title {
    font-size: 24px !important;
}

  
  
  /* Warning Bar */
  .stationary-warning-bar {
    font-size: 12px;
    padding: 8px 12px;
    line-height: 1.4;
    height: auto;
    min-height: 36px;
  }
  
  /* Header */
  .stationary-header-content {
    padding: 12px 16px;
  }
  
  .stationary-logo img {
    max-width: 120px;
  }
  
  .stationary-brand {
    font-size: 18px;
  }
  
  /* Hero */
  .stationary-hero-title {
    font-size: clamp(24px, 6vw, 32px);
    line-height: 1.25;
  }
  
  .stationary-hero-meta {
    font-size: 11px;
    gap: 6px;
    margin: 20px 0;
  }
  
  .stationary-hero-authors {
    flex-direction: column;
    gap: 30px;
    padding-top: 15px;
  }
  
  .stationary-hero-author img {
    width: 48px;
    height: 48px;
  }
  
  .stationary-hero-author .stationary-name {
    font-size: 14px;
    margin-top: 12px;
  }
  
  .stationary-branding-section {
    padding: 20px 16px 30px;
  }
  
  .stationary-branding-section img {
    height: auto;
    border-radius: 8px;
  }
  
  /* Article Layout - Single Column */
  .stationary-page-wrapper {
    padding: 32px 0 0;
  }
  
  .stationary-article-grid {
    grid-template-columns: 1fr;
    padding: 0 16px 40px;
    gap: 0;
  }
  
  .stationary-toc-column {
    display: none;
  }
  
  .stationary-article-content {
    padding: 0 16px !important;
    border-radius: 0;
  }
  
  .stationary-article-content h1 {
    font-size: 26px;
    margin-bottom: 20px;
  }
  
  .stationary-article-content h2 {
    font-size: 22px;
    margin: 36px 0 16px 0;
  }
  
  .stationary-article-content h3 {
    font-size: 19px;
    margin: 28px 0 14px 0;
  }
  
  .stationary-article-content p {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 18px;
  }
  
  .stationary-article-content ul li {
    font-size: 16px;
    margin-bottom: 12px;
  }
  
  /* Table Responsive */
  .stationary-article-content table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 14px;
  }
  
  .stationary-article-content table th,
  .stationary-article-content table td {
    padding: 8px !important;
    min-width: 100px;
  }
  
  /* Voice Reader */
  .stationary-article-audio-player {
            display: block;
        gap: 12px;
        padding: 12px 14px;
        margin-bottom: 20px;
  }
  
  .stationary-tts-btn {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
  
  .stationary-tts-progress {
    width: 100%;
    height: 6px;
  }
  
  /* Comments */
  .stationary-comment-box {
    padding: 0 16px;
    margin: 40px auto;
  }
  
  .stationary-comment-title {
    font-size: 22px;
  }
  
  .stationary-comment-note {
    font-size: 14px;
  }
  
  .stationary-comment-row {
    flex-direction: column;
    gap: 16px;
  }
  
  .stationary-comment-submit {
    width: 100%;
    padding: 12px 20px;
  }
  
  /* Post Navigation */
  .stationary-post-nav {
    flex-direction: column;
    gap: 16px;
    margin: 40px auto;
    padding: 0 16px;
  }
  
  .stationary-post-card {
    padding: 16px 20px;
  }
  
  .stationary-nav-title {
    font-size: 16px;
  }
  
  /* CTA & Footer */
  .stationary-cta-bar {
    padding: 40px 16px;
    border-radius: 8px;
  }
  
  .stationary-cta-bar h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }
  
  .stationary-cta-bar p {
    font-size: 15px;
    margin-bottom: 18px;
  }
  
  .stationary-cta-bar .stationary-cta-btn {
    width: 100%;
    padding: 12px 24px;
    font-size: 16px;
  }
  
  .stationary-footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 16px;
  }
  
  .stationary-footer-col {
    text-align: left;
  }
  
  .stationary-subscribe {
    flex-direction: column;
    gap: 10px;
  }
  
  .stationary-subscribe input {
    width: 100%;
  }
  
  .stationary-subscribe-btn {
    width: 100%;
    padding: 12px;
  }
  
  .stationary-lets-talk-btn {
    width: 100%;
  }
}

/* Small Mobile (480px - 599px) */
@media screen and (max-width: 599px) {
  .stationary-container {
    padding: 12px 16px;
  }
  
  .stationary-hero-title {
    font-size: 24px;
  }
  
  .stationary-article-content h1 {
    font-size: 24px;
  }
  
  .stationary-article-content h2 {
    font-size: 20px;
  }
  
  .stationary-article-content h3 {
    font-size: 18px;
  }
  
  .stationary-article-content p {
    font-size: 15px;
  }
}

/* Extra Small Mobile (320px - 479px) */
@media screen and (max-width: 479px) {
  .stationary-warning-bar {
    font-size: 11px;
    padding: 6px 10px;
  }
  
  .stationary-header-content {
    padding: 10px 12px;
  }
  
  .stationary-logo img {
    max-width: 100px;
  }
  
  .stationary-menu-toggle {
    font-size: 24px;
  }
  
  .stationary-hero-title {
    font-size: 22px;
    line-height: 1.3;
  }
  
  .stationary-hero-meta {
    font-size: 10px;
  }
  
  .stationary-article-content {
    padding: 0 12px !important;
  }
  
  .stationary-article-content h1 {
    font-size: 22px;
    margin-bottom: 16px;
  }
  
  .stationary-article-content h2 {
    font-size: 19px;
    margin: 32px 0 14px 0;
  }
  
  .stationary-article-content h3 {
    font-size: 17px;
    margin: 24px 0 12px 0;
  }
  
  .stationary-article-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
  }
  
  .stationary-article-content table {
    font-size: 12px;
  }
  
  .stationary-article-content table th,
  .stationary-article-content table td {
    padding: 6px !important;
    min-width: 80px;
  }
  
  .stationary-cta-bar h2 {
    font-size: 20px;
  }
  
  .stationary-cta-bar p {
    font-size: 14px;
  }
  
  .stationary-footer-col p {
    font-size: 14px;
  }
}

.stationary-toc-list a.active { 
  color: #1A8E68;
  border-left: 3px solid #1A8E68;
  font-weight: 600;
}

.stationary-toc-list a {
    transition: color .25s ease, border-left .25s ease, padding .25s ease;
}










/* _____________________________________________________________ */



/* ================== PROFESSIONAL TABLE OF CONTENTS STYLING ================== */

/* TOC Container */
.stationary-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Base TOC Item Styling */
.stationary-toc-list li {
  margin: 0;
  padding: 0;
  transition: all 0.2s ease;
}

/* TOC Links - Base Style */
.stationary-toc-list a {
  display: block;
  text-decoration: none;
  color: #4a5568;
  font-size: 14px;
  line-height: 1.5;
  padding: 8px 12px;
  border-left: 3px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

/* Hover State */
.stationary-toc-list a:hover {
  color: #1a8e68;
  background-color: rgba(26, 142, 104, 0.05);
  border-left-color: rgba(26, 142, 104, 0.3);
  transform: translateX(2px);
}

/* Active State - Currently Viewing */
.stationary-toc-list a.active {
  color: #1a8e68;
  font-weight: 600;
  background-color: rgba(26, 142, 104, 0.1);
  border-left-color: #1a8e68;
  transform: translateX(4px);
}

/* Active State Indicator */
.stationary-toc-list a.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 100%;
  background: #1a8e68;
  border-radius: 0 3px 3px 0;
}

/* ================== HEADING HIERARCHY LEVELS ================== */

/* H2 - Main Sections (Top Level) */
.toc-level-2 {
  margin-top: 12px;
  margin-bottom: 4px;
}

.toc-link-2 {
  font-weight: 600;
  font-size: 15px;
  padding-left: 12px;
  color: #2d3748;
}

/* H3 - Sub-sections (Indented) */
.toc-level-3 {
  margin-top: 4px;
  margin-bottom: 3px;
}

.toc-link-3 {
  font-weight: 500;
  font-size: 14px;
  padding-left: 28px; /* 12px base + 16px indent */
  color: #4a5568;
}

.toc-link-3::before {
  content: '•';
  position: absolute;
  left: 18px;
  color: #cbd5e0;
  font-size: 12px;
}

/* H4 - Sub-sub-sections (Double Indented) */
.toc-level-4 {
  margin-top: 2px;
  margin-bottom: 2px;
}

.toc-link-4 {
  font-weight: 400;
  font-size: 13px;
  padding-left: 44px; /* 12px base + 32px double indent */
  color: #718096;
}

.toc-link-4::before {
  content: '◦';
  position: absolute;
  left: 34px;
  color: #e2e8f0;
  font-size: 10px;
}

/* ================== ACTIVE STATE HIERARCHY OVERRIDES ================== */

.toc-link-2.active {
  font-size: 15px;
  color: #1a8e68;
}

.toc-link-3.active {
  font-size: 14px;
  color: #1a8e68;
  padding-left: 30px;
}

.toc-link-3.active::before {
  color: #1a8e68;
  font-weight: bold;
}

.toc-link-4.active {
  font-size: 13px;
  color: #1a8e68;
  padding-left: 46px;
}

.toc-link-4.active::before {
  color: #1a8e68;
  font-weight: bold;
}

/* ================== SMOOTH TRANSITIONS ================== */

.stationary-toc-list a {
  will-change: transform, background-color, border-color;
}

/* ================== RESPONSIVE ADJUSTMENTS ================== */

@media (max-width: 1200px) {
  .toc-link-2 {
    font-size: 14px;
  }
  
  .toc-link-3 {
    font-size: 13px;
    padding-left: 24px;
  }
  
  .toc-link-4 {
    font-size: 12px;
    padding-left: 36px;
  }
}

@media (max-width: 768px) {
  /* On mobile, reduce hierarchy indentation */
  .toc-link-3 {
    padding-left: 20px;
  }
  
  .toc-link-4 {
    padding-left: 30px;
  }
}

/* ================== SCROLLBAR FOR LONG TOC ================== */

.stationary-toc-box {
  max-height: calc(70vh - 200px);
  overflow-y: auto;
  overflow-x: hidden;
}

/* Custom Scrollbar */
.stationary-toc-box::-webkit-scrollbar {
  width: 4px;
}

.stationary-toc-box::-webkit-scrollbar-track {
  background: #f7fafc;
}

.stationary-toc-box::-webkit-scrollbar-thumb {
  background: #cbd5e0;
  border-radius: 4px;
}

.stationary-toc-box::-webkit-scrollbar-thumb:hover {
  background: #a0aec0;
}

/* ================== FOCUS STATES FOR ACCESSIBILITY ================== */

.stationary-toc-list a:focus {
  outline: 2px solid #1a8e68;
  outline-offset: 2px;
  background-color: rgba(26, 142, 104, 0.1);
}

.stationary-toc-list a:focus-visible {
  outline: 2px solid #1a8e68;
  outline-offset: 2px;
}

/* ================== PRINT STYLES ================== */

@media print {
  .stationary-toc-box {
    display: none;
  }
}





/* _________________________________________________________________________ */
main.stationary-page-wrapper h1 {
    font-family: 'Inter' !important;
}
main.stationary-page-wrapper h2 {
    font-family: 'Inter' !important;
}
main.stationary-page-wrapper h3 {
    font-family: 'Inter' !important;
}
main.stationary-page-wrapper h4 {
    font-family: 'Inter' !important;
}
main.stationary-page-wrapper p {
   font-family: 'Open-sans', sans-serif !important;
}

main.stationary-page-wrapper li {
   font-family: 'Open-sans', sans-serif !important;
  
}
main.stationary-page-wrapper strong {
font-family: 'Inter' !important;
}
ul.ss {
    padding: 0;
}
ul.ss li {
    list-style-type: none;
}


/* ____________________________________________________________________________ */






/* ================== SCHEDULE FREE LAUNCH AUDIT BOX ================== */

.below-box {
  background: linear-gradient(135deg, rgba(26, 142, 104, 0.95) 0%, rgba(26, 142, 104, 0.85) 100%);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  margin: 40px 0;
  box-shadow: 0 10px 30px rgba(26, 142, 104, 0.2);
}

.below-box h4 {
  color: #ffffff;
  font-size: 27px;
  font-weight: 700;
  margin: 0 0 16px 0;
  line-height: 1.3;
  font-family: 'Inter' !important;
}

.below-box > p {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 12px 0;
  opacity: 0.95;
      font-family: 'Open-sans', sans-serif;
}

.below-box .zzzzzz {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.below-box .button-blac {
    display: inline-block;
    background-color: #d4a017;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    padding: 13px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 160, 23, 0.3);
    font-family: 'Inter' !important;
}

.below-box .button-blac:hover {
  background-color: #c29215;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 160, 23, 0.4);
  color: #ffffff;
}

.below-box .zzzzzz p {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  opacity: 0.9;
  font-weight: 400;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .below-box {
    padding: 30px 20px;
  }
  
  .below-box h4 {
    font-size: 24px;
  }
  
  .below-box > p {
    font-size: 15px;
  }
  
  .below-box .button-blac {
    font-size: 16px;
    padding: 14px 28px;
  }
}