* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: #fff;
  color: #000;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 110px;
  background: white;
  position: sticky; /* Sticky header */
  top: 0;
  z-index: 1000;
}

/* Default style for the Table block (wp-block-table) */
.wp-block-table {
  margin: 0 0 1.5em;
  overflow: auto;
}

.wp-block-table table {
  width: 100%;
  border-collapse: collapse;
}

.wp-block-table td,
.wp-block-table th {
  border: 1px solid currentColor;
  padding: .5em .7em;
}

.wp-block-table th {
  font-weight: bold;
}

.wp-block-table.is‐style-stripes tbody tr:nth-child(even) {
  background-color: rgba(0,0,0,.05);
}

.wp-block-list {
  margin: 1em 0;
  padding-left: 1.5em;
  list-style-position: inside;
  font-size: 1rem;
  line-height: 1.6;
}

.wp-block-list li {
  margin-bottom: 0.5em;
}

/* Optional: Style for nested lists */
.wp-block-list ul,
.wp-block-list ol {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  padding-left: 1.5em;
  font-family: Satoshi;
}

.wp-block-heading {
  font-family: Satoshi;
  font-weight: 600;
  margin: 1.5em 0 1em;
  line-height: 1.3;
  color: #222;
}

/* Optional: Responsive font sizes */
.wp-block-heading h1 {
  font-size: 2.5rem;
  font-family: Satoshi;
}

.wp-block-heading h2 {
  font-size: 2rem;
  font-family: Satoshi;
}

.wp-block-heading h3 {
  font-size: 1.75rem;
  font-family: Satoshi;
}

.wp-block-heading h4 {
  font-size: 1.5rem;
  font-family: Satoshi;
}

.wp-block-heading h5 {
  font-size: 1.25rem;
  font-family: Satoshi;
}

.wp-block-heading h6 {
  font-size: 1rem;
  font-family: Satoshi;
}

@font-face {
  font-family: "Satoshi";
  src: 
        /* url('../fonts/Satoshi-Variable.woff') format('woff'), */ url("fonts/Satoshi-Variable.woff2")
      format(‘woff2 supports variations’),
    url("fonts/Satoshi-Variable.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-display: swap;
}

/* Base menu layout */
.navbar .menu {
  list-style: none;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0;
  margin: 0;
}

/* Menu items */
.menu li {
  position: relative;
}

/* Links */
.menu li a {
  font-family: Satoshi;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 15px;
  display: block;
  color: #000;
}

/* Dropdown hidden by default */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  padding: 0;
  list-style: none;
  display: none;
  width: 320px;
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 20px;
}

.dropdown-item img {
  width: 60px;
  height: auto;
  flex-shrink: 0;
}

.dropdown-item .text-content {
  display: flex;
  flex-direction: column;
}

.dropdown-item .text-content a {
  font-family: Satoshi;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  padding: 0;
  margin: 0;
}

.dropdown-item .text-content p {
  font-family: Satoshi;
  font-size: 14px;
  color: #000;
  margin: 5px 0 0;
}

/* Show dropdown on hover (desktop) */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Dropdown items */
.dropdown-menu li a {
  padding: 8px 20px;
  white-space: nowrap;
}

/* Mobile layout */
@media (max-width: 768px) {
  .navbar .menu {
    flex-direction: column;
    align-items: flex-start;
  }

  .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
  }

  .dropdown .dropdown-menu {
    display: none;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }
}

.logo {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
}

.logo img {
  height: 45px;
  margin-right: 10px;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

nav a:hover {
  color: #28a745;
}

.burger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Hide burger and mobile contact by default */
.mobile-actions {
  display: none;
  align-items: center;
  gap: 10px;
}

/* Show desktop contact by default */
.desktop-btn {
  display: inline-block;
}

.mobile-btn {
  display: none;
  padding: 8px 14px;
  font-size: 14px;
  border-radius: 20px;
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
  header {
    padding: 20px 24px;
  }
  .mobile-actions {
    display: flex;
  }

  .desktop-btn {
    display: none;
  }

  .mobile-btn {
    display: inline-block;
    background-color: #2a9d8f;
    color: white;
    text-decoration: none;
  }
  nav {
    top: 100%; /* Push menu below header */
  }
}

@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 999;
  }

  nav a {
    margin: 10px 20px;
  }

  .burger {
    display: block;
  }

  .show-nav {
    display: flex !important;
  }
}

.hero-slider {
  position: relative;
  height: 480px;
  overflow: hidden;
  border-radius: 20px;
  margin-left: 25px;
  margin-right: 25px;
}

.slider-track {
  display: flex;
  transition: transform 0.6s ease;
  height: 100%;
}

.slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}

.slider-content {
  max-width: 600px;
}

.slider-content h1 {
  font-family: Satoshi;
  font-weight: 700;
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 15px;
}

.slider-content p {
  font-family: Satoshi;
  font-weight: 500;
  font-size: 16px;
  max-width: 500px;
  margin-bottom: 20px;
}

.slider-content button {
  font-family: Satoshi;
  font-weight: 700;
  background: white;
  color: black;
  border: none;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: bold;
  cursor: pointer;
}

.slider-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.15);
  padding: 20px;
  border-radius: 20px;
  max-width: 300px;
  backdrop-filter: blur(6px);
}

.slider-caption h2 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 5px;
}

.slider-caption p {
  font-size: 14px;
  color: #eee;
}

.slider-controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider-controls button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: white;
  border: none;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.slider-counter {
  color: white;
  font-size: 14px;
}

/* Sustainability Section */
.sustainability {
  padding: 60px 20px;
  padding-bottom: 0px;
  text-align: center;
}

.sustainability h2 {
  font-family: Satoshi;
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 10px;
}

.sustainability p {
  font-family: Satoshi;
  font-weight: 500;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 40px;
  color: #000;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0; /* remove any outer spacing */
  padding: 0; /* remove inner padding */
}

.card {
  background: #f7faf7;
  padding: 30px 20px;
  width: 410px;
  text-align: left;
  margin: 0; /* remove margin between cards */
}

.card img {
  width: 125px;
  height: 125px;
  margin-bottom: 45px;
}

.card h3 {
  font-family: Satoshi;
  font-weight: 700;
  font-size: 21px;
  margin-bottom: 8px;
  color: #000;
}

.card p {
  font-family: Satoshi;
  font-weight: 500;
  font-size: 16px;
  color: #000;
  padding: 0;
  margin: 0;
}

@media (max-width: 768px) {
  .cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 100%;
    border-radius: 0; /* optional: flush edges on mobile */
    border-left: none;
    border-right: none;
  }
}

/* Our Solution Section */
.solutions {
  padding: 60px 20px;
  background: #fff;
}

.solution-container {
  max-width: 1218px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
}

.solution-image {
  width: 100%;
  max-width: 382px; /* Optional: constrain max width */
  height: 470px; /* Portrait height */
  overflow: hidden;
  border-radius: 1rem; /* Optional: rounded corners */
  margin-right: 1%;
}

.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image fills while keeping aspect */
  object-position: center; /* Focus on center of image */
  display: block;
}

.solution-content {
  flex: 2;
  min-width: 300px;
}

.solution-content h2 {
  font-family: Satoshi;
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 10px;
}

.solution-content p {
  font-family: Satoshi;
  font-weight: 500;
  font-size: 16px;
  color: #000;
  margin-bottom: 30px;
  max-width: 600px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 50px;
}

.solution-item {
  display: grid;
  align-items: flex-start;
  gap: 20px;
}

.solution-item img {
  width: 60px;
  height: 60px;
}

.solution-item h3 {
  font-family: Satoshi;
  font-weight: 700;
  font-size: 21px;
  margin-bottom: 4px;
}

.solution-item p {
  font-family: Satoshi;
  font-weight: 500;
  font-size: 16px;
  color: #000;
}

.treatment-section {
  padding: 4rem 2rem;
  background-color: #f7fcf8;
  font-family: sans-serif;
}

.treatment-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1230px;
  margin: auto;
}

@media (min-width: 1024px) {
  .treatment-container {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
}

.treatment-subtitle {
  color: #999;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.treatment-title {
  font-family: Satoshi;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
  margin: 0 0 1.5rem;
  color: #000000;
}

.treatment-question {
  font-family: Satoshi;
  font-weight: 700;
  font-size: 1.1rem;
  color: #000000;
  margin-bottom: 0.8rem;
}

.treatment-description {
  font-family: Satoshi;
  font-weight: 500;
  color: #000;
  font-size: 16px;
  line-height: 1.5;
}

.treatment-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  max-width: 314px;
  margin: auto;
}

.treatment-card img {
  width: 100%;
  height: 380px;
  display: block;
}

.treatment-card-button {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

.treatment-card-button .treatment-learn {
  color: #007bff;
  font-size: 0.75rem;
  display: block;
  margin-bottom: 0.2rem;
}

.treatment-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.25rem;
  background-color: #00aaff;
  color: white;
  border-radius: 50%;
  padding: 0.4rem;
}

.treatment-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.treatment-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.treatment-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #eef1f7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.treatment-item h4 {
  font-family: Satoshi;
  font-weight: 700;
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: #000000;
}

.treatment-item p {
  font-family: Satoshi;
  font-weight: 500;
  margin: 0;
  color: #000;
  font-size: 16px;
}

.latest-blog-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  margin: auto;
  max-width: 1230px;
  background-color: #fff;
  font-family: "Segoe UI", sans-serif;
  overflow: hidden;
}
.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.blog-header h2 {
  font-family: Satoshi;
  font-weight: 700;
  font-size: 2rem;
  color: #000000;
}

.rank-math-breadcrumb a {
    margin: 0px;
    padding-top:10px;
    font-family: Satoshi;
}

.joined-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatars {
  display: flex;
  align-items: center;
}
.avatars img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 50%;
  margin-left: -10px;
  border: 2px solid white;
}
.more-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #ffd400;
  color: #154734;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -10px;
}
.joined-text {
  font-size: 0.9rem;
  text-align: right;
}
.joined-text strong {
  font-size: 1.2rem;
}

.blog-filters {
  margin: 1.5rem 0;
  display: flex;
  gap: 1rem;
  overflow-x: auto;
}
.blog-filters button {
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: #f2f2f2;
  font-family: Satoshi;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}
.blog-filters button.active {
  background: linear-gradient(135deg, #34d058, #28a745);
  color: #ffffff;
}

.blog-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  scroll-padding-left: 1.5rem;
}

/* First Card (Image Left, Text Right) */
.big-card {
  display: flex;
  flex-shrink: 0;
  width: calc((100vw - 3rem) / 3.5 * 1.3); /* wider than others */
  height: 320px;
  background: #f0f8f0;
  border-radius: 1rem;
  overflow: hidden;
  flex-direction: row; /* Force horizontal layout */
}

.big-card img {
  width: 240px;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem 0 0 1rem;
  flex-shrink: 0;
}

.big-card .blog-content {
  width: calc(100% - 240px);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  background: #f0f8f0;
  box-sizing: border-box;
}

.big-card h3 {
  font-family: Satoshi;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.4;
}

.big-card p {
  font-family: Satoshi;
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  color: #000;
}

.big-card a {
  color: #154734;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.875rem;
}

/* Small Cards */
.small-card {
  width: calc((100vw - 3rem) / 3.5);
  max-width: 240px;
  height: 320px;
  flex-shrink: 0;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
}

.small-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.small-card .blog-title {
  position: absolute;
  bottom: 0.75rem;
  left: 1rem;
  right: 1rem;
  color: #fff;
  font-size: 0.95rem;
  font-weight: bold;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

/* Responsive — keep row layout and let container scroll if needed */
@media (max-width: 768px) {
  .latest-blog-section {
    padding: 2rem 1rem;
  }

  .blog-scroll {
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .big-card {
    min-width: 520px;
    height: 240px;
    width: calc((100vw - 3rem) / 3.5 * 1.3);
    flex-direction: row; /* stay horizontal */
  }

  .big-card img {
    width: 45%;
    height: 100%;
  }

  .big-card .blog-content {
    width: 55%;
    padding: 1rem;
  }

  .small-card {
    width: 60vw;
    height: 240px;
  }
}

.footer {
  background: #f9f9f9;
  padding: 3rem 1.5rem;
  font-family: "Segoe UI", sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.footer-col {
  flex: 1 1 200px;
  min-width: 200px;
}

.company-info .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.company-info .logo img {
  width: 32px;
  height: 32px;
}

.company-info p {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 1rem;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #111;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  text-decoration: none;
  color: #000000;
  font-weight:500;
  font-family:Satoshi;
  font-size: 15px;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

.social-icons a {
  display: inline-block;
  margin-right: 0.75rem;
  color: #154734;
  background: #e5f4e5;
  padding: 0.4rem;
  border-radius: 50%;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-col {
    flex: 1 1 100%;
  }
}

.contact-button {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  background: linear-gradient(135deg, #34d058, #28a745);
  color: white;
  font-family: Satoshi;
  font-weight: 700;
  font-size: 14px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  position: relative;
}

.contact-button .icon-circle {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-button:hover .icon-circle {
  background: white;
  transform: rotate(45deg);
}

.contact-button:hover svg {
  stroke: #28a745;
}

@media (max-width: 768px) {
  .contact-button {
    display: none;
  }
}

.hero {
  display: flex;
  height: 480px;
  width: 100%;
  overflow: hidden;
  padding: 40px;
}

.left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.left h1 {
  font-size: 2.8rem;
  font-weight: 700;
  font-family: Satoshi;
  margin-bottom: 16px;
  margin-left: 10%;
  line-height: 1.3;
}

.left p {
  font-size: 1rem;
  font-weight: 500;
  font-family: Satoshi;
  color: #000;
  margin-bottom: 20px;
  margin-right: 15%;
  margin-left: 10%;
}

.left button {
  background: black;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: bold;
  cursor: pointer;
}

.right {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.scroll-columns {
  display: flex;
  gap: 16px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  animation: scrollUp 25s linear infinite;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.column:nth-child(2) {
  margin-top: 60px; /* offset stagger */
}

.column img {
  width: 320px;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
}

.fade-top,
.fade-bottom {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 2;
}

.fade-top {
  top: 0;
  background: linear-gradient(to bottom, white 0%, transparent 100%);
}

.fade-bottom {
  bottom: 0;
  background: linear-gradient(to top, white 0%, transparent 100%);
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    height: auto;
    padding: 20px;
  }

  .left {
    padding-right: 0;
    padding-left: 0;
    margin-bottom: 20px;
    text-align: center;
    align-items: center;
  }

  .left h1 {
    font-size: 2rem;
  }

  .left p {
    font-size: 0.95rem;
    padding: 0 10px;
  }

  .right {
    position: relative;
    height: 400px;
    overflow: hidden;
  }

  .scroll-columns {
    position: relative;
    animation: scrollUp 20s linear infinite;
    flex-direction: row;
    gap: 12px;
    justify-content: center;
  }

  .column {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .column img {
    width: 320px;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
  }

  .column:nth-child(2) {
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .left h1 {
    font-size: 1.6rem;
    padding: 0;
    margin: 0;
  }

  .left p {
    font-size: 0.9rem;
    padding: 0;
    margin: 0;
  }

  .left button {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .right {
    height: 350px;
  }

  .column img {
    width: 170px;
    height: 240px;
  }
}

.process-section {
  background-color: #f0f8f0;
  padding: 60px 20px;
  color: white;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  overflow: hidden;
}

.process-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  align-items: center;
  gap: 40px;
}

.process-left {
  flex: 1;
  min-width: 300px;
  position: relative;
  padding-right: 20px;
}

.process-left h2 {
  font-size: 2rem;
  font-family: Satoshi;
  font-weight: bold;
  margin-bottom: 40px;
  line-height: 1.4;
  color: #000;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
  padding-left: 24px;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 5px;
  width: 2px;
  height: calc(100% - 16px);
  background: #000;
  z-index: 0;
}

.circle {
  width: 12px;
  height: 12px;
  background: transparent;
  border: 2px solid black;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 4px;
}

.step-text h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #000000;
  font-family: 'Satoshi';
}

.step-text p {
  margin-top: 6px;
  color: #000000; 
  font-size: 16px;
  font-weight: 500;
  font-family: 'Satoshi';
}

.process-right {
  flex: 1;
  min-width: 300px;
}

.process-right img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  max-height: 500px;
}

@media (max-width: 768px) {
  .process-container {
    flex-direction: column;
    text-align: left;
  }

  .process-left {
    padding-right: 0;
  }

  .process-right img {
    max-height: none;
  }
}

.web-type {
  padding: 80px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.web-type h2 {
  font-family: Satoshi;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
}

.web-type h2 span {
  color: #0e7c6b;
  font-weight: 600;
}

.web-type p {
  margin-top: 20px;
  color: #000000;
  font-weight:500;
  font-family: Satoshi;
  font-size: 18px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cards-web-type {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 60px;
}

.card-web-type {
  color: black;
  border-radius: 20px;
  padding: 30px 20px;
  flex: 1 1 300px;
  max-width: 350px;
  text-align: left;
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-web-type img.icon {
  max-width: 125px;
  height: auto;
  margin-bottom: 20px;
}

.card-web-type h3 {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  font-family: Satoshi;
  margin-bottom: 10px;
}

.card-web-type p {
  font-size: 16px;
  color: #000000;
  font-weight:500;
  font-family: Satoshi;
}

.card-web-type button {
  margin-top: 20px;
  background-color: white;
  color: black;
  font-weight: 500;
  padding: 10px 0;
  border-radius: 12px;
  border: none;
  width: 100%;
  cursor: pointer;
}

@media (max-width: 768px) {
  .web-type h1 {
    font-size: 36px;
  }
}

@media only screen and (max-width: 959px) {
  header {
    padding: 20px 30px;
  }
  .solution-image {
    width: 100%;
    height: 100%;
    max-width: 100%;
  }
  .treatment-card {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .treatment-card img {
    width: 100%;
    max-width: 100%;
    height: 100%;
  }
  .big-card {
    display: flex;
    flex-shrink: 0;
    width: calc((152vw - 3rem) / 3.5 * 1.3);
    height: 240px;
    background: #f0f8f0;
    border-radius: 1rem;
    overflow: hidden;
    flex-direction: row;
  }
  .small-card {
    max-width: 240px;
    height: 240px;
    flex-shrink: 0;
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    background: #fff;
  }
  .latest-blog-section {
    padding-left: 2rem;
  }
}

.blog-single {
  width: 100%;
  position: relative;
  padding-top: 100px;
}

.image-section {
  display: flex;
  align-items: flex-start;
  width: 100%;
  position: relative;
}

.featured-image {
  width: 70%;
  display: block;
  object-fit: cover;
}

.sidebar {
  width: 25%;
  padding: 40px 40px;
}

.sidebar h3 {
  font-size: 20px;
  font-family: Satoshi;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
}

.sidebar ul {
  list-style: none;
  margin-top: 10px;
}

.sidebar ul li {
  margin-bottom: 8px;
  color: #444;
  font-size: 15px;
  font-family: Satoshi;
  font-weight: 500;
}

/* Overlay now positioned separately */
.image-overlay {
  position: absolute;
  top: 100px;
  left: 50px;
  background: #f0f8f0;
  padding: 20px;
  border-radius: 8px;
  max-width: 680px;
  z-index: 5;
}

.image-overlay .category {
  color: #999;
  font-style: italic;
  font-size: 16px;
}

.image-overlay .post-title {
  font-size: 26px;
  font-weight: bold;
  font-family: Satoshi;
  margin: 5px 0;
}

.image-overlay .breadcrumb {
  color: #aaa;
  font-size: 14px;
}

.post-body {
  padding: 40px;
  max-width: 900px;
  margin: auto;
  font-size: 18px;
  line-height: 1.6;
  text-align: justify;
  font-family: Satoshi;
}

/* Responsive */
@media (max-width: 992px) {
  .image-section {
    flex-direction: column;
  }

  .featured-image,
  .sidebar {
    width: 100%;
  }

  .sidebar {
    padding: 20px;
  }

  .image-overlay {
    max-width: 90%;
    left: 10px;
    top: 90px;
  }

  .image-overlay .post-title {
    font-size: 18px;
  }

  .post-body {
    padding: 20px;
  }
}

.blog-section {
  max-width: 1230px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  padding: 60px 10px;
}

/* ===== LEFT FILTER COLUMN ===== */
.blog-filter {
  flex: 1;
  max-width: 260px;
}

.blog-filter h3 {
  font-size: 1rem;
  margin-bottom: 15px;
}

.blog-filter-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.blog-filter-list li {
  margin-bottom: 10px;
  font-family:Satoshi;
  text-decoration:none;
  color:#000000;
}

.blog-filter-list input {
  margin-right: 8px;
}

.blog-filter-follow {
  margin-top: 40px;
}

.blog-filter-social {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.blog-filter-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #ccc;
  border-radius: 50%;
  text-decoration: none;
  font-size: 16px;
  color: #333;
  transition: 0.3s;
}

.blog-filter-social a:hover {
  background: #333;
  color: #fff;
}

/* ===== RIGHT BLOG CARDS ===== */
.blog-card-list {
  flex: 3;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.blog-card-item {
  display: flex;
  align-items: flex-start;
  background: #fafafa;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #eee;
  transition: box-shadow 0.3s;
}

.blog-card-item a {
    text-decoration:none;
    color: #000000;
    font-family: Satoshi;
}

.blog-card-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.blog-card-image {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  background: #ddd;
  margin-right: 20px;
  flex-shrink: 0;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-content {
  flex: 1;
}

.blog-card-meta {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: Satoshi;
}

.blog-card-content h4 {
  margin: 0 0 10px 0;
  font-size: 1.2rem;
  color: #122033;
  font-family: Satoshi;
}

.blog-card-content p {
  margin: 0 0 10px 0;
  font-size: 0.95rem;
  color: #555;
  font-family: Satoshi;
}

.blog-card-read {
  font-size: 0.85rem;
  color: #003366;
  text-decoration: none;
  font-weight: 500;
  font-family: Satoshi;
}

.blog-card-read:hover {
  text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .blog-section {
    flex-direction: column;
  }
  .blog-filter {
    max-width: 100%;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .blog-card-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .blog-card-image {
    width: 100%;
    height: auto;
    max-height: 220px;
    margin: 0 0 15px 0;
  }

  .blog-card-content {
    width: 100%;
  }

  .blog-card-content h4 {
    font-size: 1.1rem;
  }

  .blog-card-content p {
    font-size: 0.9rem;
  }
}

.pricing-section {
  text-align: center;
  max-width: 1230px;
  margin: 0 auto;
  padding: 5px 20px;
}

.pricing-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family:Satoshi;
}

.pricing-subtitle {
  color: #000;
  margin-bottom: 40px;
  font-weight: 500;
  font-family:Satoshi;
}

/* 2-column grid */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  align-items: stretch;
}

/* Left Column stack */
.package-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Card Base */
.pricing-card {
  border-radius: 14px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.starter {
  background: #eaf3ff;
}

.fullteam {
  background: #ecffe9;
}

.card-content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 20px;
}

.card-left {
  flex: 1;
}

.plan-title {
  display: inline-block;
  font-weight: 700;
  margin-bottom: 15px;
  padding: 6px 14px;
  border: 1.5px solid #000;
  border-radius: 999px;
  background: #fff;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 5px 0;
}

.plan-desc {
  color: #000;
  font-weight:500;
  font-family:Satoshi;
  margin-bottom: 15px;
}

.features {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}

.features li {
  margin: 10px 0;
  position: relative;
  padding-left: 28px;
  font-weight:700;
  font-family:Satoshi;
}

.features li::before {
  content: "✔";
  color: #1ec96b;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Buttons */
.btn-group {
  display: flex;
  gap: 12px;
}

.btnserviceweb {
  flex: 1;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 600;
  border: 1.5px solid #000;
  cursor: pointer;
  transition: 0.2s;
}

.btnserviceweb.primary {
  background: #000;
  color: #fff;
}

.btnserviceweb.outline {
  background: transparent;
  color: #000;
}

/* Testimonial Card */
.testimonial-card {
  background: #fff2de;
  border-radius: 14px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
}

.testimonial-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.testimonial-text {
  color: #000;
  font-weight: 500;
  font-family: Satoshi;
}

.testimonial-image img {
  width: 100%;
  border-radius: 10px;
  margin-top: auto;
}

/* Responsive */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .package-column {
    order: 2;
  }
  .testimonial-card {
    order: 1;
  }
  .card-content {
    flex-direction: column;
    gap:5px;
  }
}

.pricing-wrapper {
  max-width: 1230px;
  margin: auto;
  padding: 20px;
  overflow-x: auto; /* allows horizontal scroll on small screens */
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 1rem;
  min-width: 600px; /* prevent breaking structure on small devices */
}

.pricing-table th {
  background: #f0f8f0;
  padding: 15px;
  color:black;
  font-size: 1.1rem;
  font-family:Satoshi;
  font-weight: bold;
  white-space: nowrap; /* keep headers in one line */
}

.pricing-table td {
  border-top: 1px solid #e2e2e2;
  font-family: Satoshi;
  padding: 14px;
  vertical-align: top;
}

.pricing-table a {
  color: #2f7ef7;
  text-decoration: none;
}

.pricing-table .addon {
  color: #3d7eff;
  background: #f0f5ff;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.85rem;
}

.extra-details {
  display: none; /* hidden by default */
}

.toggle-btn {
  margin-top: 18px;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid #ccc;
  background: #fff;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* --- Responsive Fix --- */
@media (max-width: 768px) {
  .pricing-wrapper {
    padding: 10px;
  }

  .pricing-table {
    font-size: 0.9rem; /* slightly smaller text */
  }

  .pricing-table th,
  .pricing-table td {
    padding: 10px;
  }

  .pricing-table small {
    display: block;
    margin-top: 4px;
    font-size: 0.8rem;
    color: #666;
  }
}

.benefit {
  padding: 60px 20px;
  background: #fff;
}

.benefit-container {
  max-width: 1230px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

.benefit-content {
  flex: 1;
}

.benefit-content h2 {
  font-size: 40px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
  font-family: Satoshi;
}

.benefit-content h2 span {
  color: #6c757d;
  font-weight: 400;
}

.benefit-intro,
.benefit-outro {
  font-size: 16px;
  color: #000;
  font-family:Satoshi;
  font-weight:500;
  line-height: 1.6;
  margin-bottom: 25px;
}

.benefit-features {
  display: flex;
  gap: 40px;
  margin-bottom: 25px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  max-width: 260px;
}

.feature-icon {
  background: #34d058;
  color: #000;
  font-size: 20px;
  padding: 12px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-text h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  color: #000;
  font-family: Satoshi;
}

.feature-text p {
  margin: 0;
  font-size: 14px;
  color: #000;
  line-height: 1.5;
  font-weight: 500;
  font-family: 'Satoshi';
}

.benefit-image img {
  width: 100%;
  max-width: 560px;
  border-radius: 16px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 992px) {
  .benefit-container {
    flex-direction: column;
    text-align: center;
  }

  .benefit-features {
    flex-direction: column;
    align-items: center;
  }

  .feature-item {
    max-width: 100%;
  }
}
