.g-config-tbl-sidebar-btn-group {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
.g-config-tbl-activate-btn {
  background-color: #02073e;
  padding: 15px 10px !important;
  border: 1px solid #ccc;
  text-align: justify;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  transition: 0.3s ease-in-out;
  display: flex !important;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
}
.g-config-tbl-activate-btn-img {
  width: 40px;
}
.g-config-tbl-sidebar-btn-group {
  background: #fbf8f8;
  padding: 20px 20px;
  border-radius: 10px;
  box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
  border: 1px solid #ccc;
  flex: 1 1 350px;
  height: fit-content;
  text-align: center;
  min-width: 300px;
}
.g-config-tbl-search-box {
  margin-bottom: 20px;
  border: 1px solid #ccc;
  padding: 5px 16px !important;
  border-left: 3px solid #ef8354;
  outline: none;
  width: 100%;
  position: relative;
  font-size: 16px !important;
}
.g-config-show-toggle-btn {
  width: auto;
  margin-top: 13px;
  border: none;
  font-weight: 600;
  font-size: 18px;
  padding: 8px 14px;
  color: #fff;
  border-radius: 20px;
  background: var(--secondary-color) !important;
  background: -moz-linear-gradient(
    93deg,
    rgba(131, 0, 22, 1) 0%,
    rgba(215, 0, 36, 1) 100%
  );
  background: -webkit-linear-gradient(
    93deg,
    rgba(131, 0, 22, 1) 0%,
    rgba(215, 0, 36, 1) 100%
  );
  background: linear-gradient(
    93deg,
    rgba(131, 0, 22, 1) 0%,
    rgba(215, 0, 36, 1) 100%
  );
}
.recent-posts-section {
  padding: 60px 0;
  background-color: #f9f9f9;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
.recent-posts-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
}
.recent-posts-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
  font-weight: 700;
}
.recent-posts-carousel {
  width: 100%;
  height: 100%;
  padding-bottom: 50px;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}
.post-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.post-card a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.post-card .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.post-card .card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.post-card .card-category {
  display: inline-block;
  background-color: #eef2ff;
  color: #4338ca;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 12px;
  align-self: flex-start;
}
.post-card .card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #111827;
  line-height: 1.4;
}
.post-card .card-description {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-grow: 1;
}
.post-card .card-footer {
  margin-top: auto;
  font-size: 0.85rem;
  color: #6b7280;
}
.swiper-button-next,
.swiper-button-prev {
  color: #4338ca;
  top: 50%;
  transform: translateY(-70%);
}
.swiper-button-prev {
  left: -10px;
}
.swiper-button-next {
  right: -10px;
}
.swiper-pagination-bullet-active {
  background: #4338ca;
}
@media (max-width: 768px) {
  .recent-posts-section h2 {
    font-size: 2rem;
  }
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}
.g-tooltip-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.g-tooltip-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6daa04;
  font-weight: bold;
}
.g-tooltip {
  visibility: hidden;
  opacity: 0;
  background-color: #2c3e50;
  color: #ffffff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: normal;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  transition: opacity 0.3s ease;
  &::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #2c3e50 transparent transparent transparent;
  }
}
.g-tooltip-container:hover .g-tooltip {
  visibility: visible;
  opacity: 1;
}
.category-wise-product-tbl-section {
  padding: 50px 3%;
}
.category-wise-product-tbl-cover {
  width: 100%;
}
.g-new-product-pricing-table-data:nth-child(3) {
  max-width: 250px;
}

        #leo-tokyo-s1 *, #leo-tokyo-s2 *, #leo-tokyo-s3 *, #leo-tokyo-s4 * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
         #leo-tokyo-s1 {
            margin-top:100px;
         }
        #leo-tokyo-s1, #leo-tokyo-s2, #leo-tokyo-s3, #leo-tokyo-s4 {
            width: 100%;
            line-height: 1.6;
            color: #02073e;
            display: block;
        }

        /* Shared Container */
        #leo-tokyo-s1 .leo-container, 
        #leo-tokyo-s2 .leo-container, 
        #leo-tokyo-s3 .leo-container, 
        #leo-tokyo-s4 .leo-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 5rem 2rem;
        }

        /* Common Typography */
        #leo-tokyo-s1 h1, #leo-tokyo-s1 h2, #leo-tokyo-s1 h3,
        #leo-tokyo-s2 h1, #leo-tokyo-s2 h2, #leo-tokyo-s2 h3,
        #leo-tokyo-s3 h1, #leo-tokyo-s3 h2, #leo-tokyo-s3 h3,
        #leo-tokyo-s4 h1, #leo-tokyo-s4 h2, #leo-tokyo-s4 h3 {
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        #leo-tokyo-s1 p, #leo-tokyo-s2 p, #leo-tokyo-s3 p, #leo-tokyo-s4 p {
            margin-bottom: 1.5rem;
        }

        .leo-text-center { text-align: center; }
        .leo-accent-text { color: #ef8354; }

        /* ==========================================================
           SECTION 1: Main Page Hero & Overview
           ========================================================== */
        #leo-tokyo-s1 {
            background-color: #02073e;
            color: #ffffff;
        }
        
        #leo-tokyo-s1 h1 {
            font-size: 2.5rem;
            color: #ffffff;
        }

        #leo-tokyo-s1 h2 {
            font-size: 2rem;
            color: #ef8354;
            margin-top: 3rem;
        }

        #leo-tokyo-s1 .leo-hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        #leo-tokyo-s1 .leo-feature-list {
            list-style: none;
            margin-bottom: 2rem;
        }

        #leo-tokyo-s1 .leo-feature-list li {
            position: relative;
            padding-left: 2rem;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        #leo-tokyo-s1 .leo-feature-list li i {
            position: absolute;
            left: 0;
            top: 5px;
            color: #ef8354;
        }

        #leo-tokyo-s1 .leo-mgmt-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 3rem;
            margin-bottom: 3rem;
        }

        #leo-tokyo-s1 .leo-mgmt-card {
            background-color: #ffffff;
            color: #02073e;
            padding: 2.5rem;
            border-radius: 8px;
            border-top: 5px solid #ef8354;
        }

        #leo-tokyo-s1 .leo-mgmt-card h3 {
            color: #02073e;
            font-size: 1.5rem;
        }

        /* ==========================================================
           SECTION 2: Use Cases & Solutions
           ========================================================== */
        #leo-tokyo-s2 {
            background-color: #f4f5f7; /* Lightest Grey */
        }

        #leo-tokyo-s2 .leo-section-title {
            text-align: center;
            font-size: 2.2rem;
            margin-bottom: 3rem;
        }

        #leo-tokyo-s2 .leo-usecase-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        #leo-tokyo-s2 .leo-usecase-card {
            background-color: #ffffff;
            padding: 2.5rem;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(2, 7, 62, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        #leo-tokyo-s2 .leo-usecase-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(2, 7, 62, 0.1);
        }

        #leo-tokyo-s2 .leo-usecase-icon {
            font-size: 2.5rem;
            color: #ef8354;
            margin-bottom: 1.5rem;
            display: inline-block;
        }

        #leo-tokyo-s2 .leo-usecase-card h3 {
            font-size: 1.3rem;
        }

        #leo-tokyo-s2 .leo-usecase-card p {
            font-size: 0.95rem;
            margin-bottom: 0;
            color: #444444;
        }

        /* ==========================================================
           SECTION 3: Technical Specifications
           ========================================================== */
        #leo-tokyo-s3 {
            background-color: #ffffff;
        }

        #leo-tokyo-s3 .leo-section-title {
            font-size: 2.2rem;
            text-align: center;
            margin-bottom: 3rem;
        }

        #leo-tokyo-s3 .leo-specs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem 2rem;
        }

  
        #leo-tokyo-s3 .leo-spec-item {
            box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
            padding: 23px;
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
        }

        #leo-tokyo-s3 .leo-spec-icon {
            background-color: #f4f5f7;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #ef8354;
            flex-shrink: 0;
        }

        #leo-tokyo-s3 .leo-spec-content h3 {
            font-size: 1.2rem;
            margin-bottom: 0.8rem;
        }

        #leo-tokyo-s3 .leo-spec-list {
            list-style: none;
        }

        #leo-tokyo-s3 .leo-spec-list li {
            position: relative;
            padding-left: 1.2rem;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
            color: #444444;
        }

        #leo-tokyo-s3 .leo-spec-list li::before {
            content: "•";
            color: #ef8354;
            position: absolute;
            left: 0;
            top: 0;
            font-weight: bold;
        }

        /* ==========================================================
           SECTION 4: FAQ (Pure CSS Accordion)
           ========================================================== */
        #leo-tokyo-s4 {
            background-color: #f4f5f7;
        }

        #leo-tokyo-s4 .leo-section-title {
            text-align: center;
            font-size: 2.2rem;
            margin-bottom: 1rem;
        }
        
        #leo-tokyo-s4 .leo-faq-intro {
            text-align: center;
            margin-bottom: 3rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        #leo-tokyo-s4 .leo-faq-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        #leo-tokyo-s4 details {
            background-color: #ffffff;
            margin-bottom: 1rem;
            border-radius: 6px;
            box-shadow: 0 2px 8px rgba(2, 7, 62, 0.04);
            overflow: hidden;
        }

        #leo-tokyo-s4 summary {
            padding: 1.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            list-style: none;
            position: relative;
            color: #02073e;
        }

        #leo-tokyo-s4 summary::-webkit-details-marker {
            display: none;
        }

        #leo-tokyo-s4 summary::after {
            content: '\f078'; /* FontAwesome Chevron Down */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            right: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            color: #ef8354;
            transition: transform 0.3s ease;
        }

        #leo-tokyo-s4 details[open] summary::after {
            transform: translateY(-50%) rotate(180deg);
        }

        #leo-tokyo-s4 .leo-faq-answer {
            padding: 0 1.5rem 1.5rem 1.5rem;
            color: #444444;
            font-size: 0.95rem;
        }

        /* ==========================================================
           RESPONSIVE MEDIA QUERIES
           ========================================================== */
        @media (max-width: 992px) {
            #leo-tokyo-s1 .leo-hero-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            #leo-tokyo-s1 .leo-container, 
            #leo-tokyo-s2 .leo-container, 
            #leo-tokyo-s3 .leo-container, 
            #leo-tokyo-s4 .leo-container {
                padding: 3rem 1.5rem;
            }

            #leo-tokyo-s1 h1 { font-size: 2rem; }
            #leo-tokyo-s1 h2, #leo-tokyo-s2 .leo-section-title, 
            #leo-tokyo-s3 .leo-section-title, #leo-tokyo-s4 .leo-section-title { font-size: 1.8rem; }

            #leo-tokyo-s1 .leo-mgmt-grid {
                grid-template-columns: 1fr;
            }

            #leo-tokyo-s3 .leo-specs-grid {
                grid-template-columns: 1fr;
            }
        }