:root {
  /* Primary Colors - Warm Theme */
  --primary-color: #e67e22; /* Warm Orange/Yellow */
  --primary-hover: #d35400;
  --accent-color: #f1c40f; /* Bright Yellow */
  --accent-hover: #f39c12;
  --secondary-color: #3e2723; /* Deep Brownish Gray */
  --bg-light: #f9f6ee; /* Cream/Warm White background */
  --bg-white: #ffffff;

  /* Text Colors */
  --text-main: #2c3e50;
  --text-muted: #7f8c8d;
  --text-light: #bdc3c7;
  --text-white: #ffffff;

  /* Layout */
  --max-width: 1600px;
  --section-padding: 50px 0;
  --container-padding: 0 3vw;

  /* Transitions */
  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);

  /* Shadow */
  --shadow-sm:
    0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
html{
    font-size: 130%;
}
@media (max-width: 1281px) {
  html{
    font-size: 110%;
    }

}
@media (max-width: 768px) {
  html{
    font-size: 100%;
    }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Outfit", "Inter", sans-serif; /* Added Outfit for a more premium warm feel */
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--bg-white);
  overflow-x: clip;
-webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
img,a{
      -webkit-user-drag: none;
}
section {
  padding: 50px 0;
}
/* Tab Utilities */
.tabs-container {
  display: flex;
  gap: 40px;
}

.tabs-nav {
  flex: 0 0 300px;
  position: sticky;
  top: 160px; /* Offset for sticky header */
  height: fit-content;
}

.tabs-nav .view-all-btn {
  margin-top: 20px;
  width: 100%;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-weight: 700;
  border-radius: 12px;
}

.tabs-nav .view-all-btn:hover {
  background: var(--primary-color);
  color: white;
}

.tabs-content {
  flex: 1;
  overflow: hidden;
}

.tab-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 20px 25px;
  margin-bottom: 15px;
  font-size: 1rem;
  border-radius: 12px;
  background: var(--bg-light);
  border: 1px solid rgba(0, 0, 0, 0.05);
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}

.tab-btn.active {
  background: var(--primary-color);
  color: white;
  box-shadow: var(--shadow-md);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  font-family: inherit;
  transition: var(--transition);
}

/* Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* Sections */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-color);
}

.section-title p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
  flex-wrap: wrap;
}
.breadcrumb span {
  color: var(--primary-color);
}
/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary-color);
  color: var(--text-white);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--text-white);
}
/* FAQ Section Refined with Transition */
/* ---- FAQ Section (unified with faq.html style) ---- */
.faq-accordion-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: white;
  border-radius: 18px;
  border: 1.5px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.open,
.faq-item:hover {
  border-color: var(--primary-color);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  gap: 20px;
  font-family: inherit;
}

.faq-question span {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--secondary-color);
  flex: 1;
  line-height: 1.4;
}

.faq-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 0.85rem;
  transition: var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--primary-color);
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.3s ease;
  padding: 0 30px;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 30px 28px;
}

.faq-answer p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  border-top: 1px solid #f0f0f0;
  padding-top: 20px;
  margin: 0;
}
/* Slider/Carousel Common Styles */
.slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  padding: 5px 0;
  transition: transform 0.5s ease;
  cursor: grab;
  height: 100%;
  user-select: none;
}

.slider-track:active {
  cursor: grabbing;
}

.slider-item {
  flex: 0 0 100%;
  width: 100%;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
  z-index: 10;
}

.slider-btn {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  pointer-events: auto;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--primary-color);
}
/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.modal-content {
  background: white;
  padding: 40px;
  border-radius: 15px;
  width: 100%;
  max-width: 600px;
  position: relative;
  animation: fadeInUp 0.4s ease;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  color: var(--text-light);
}
/* Fade animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Prevent Reflow/Flash: Hide animated elements initially */
.product-card-enhanced,
.adv-card,
.section-title,
.solutions-row {
  opacity: 0;
}

/* Animation trigger class */
.fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; /* Smoother easing */
  opacity: 1; /* Ensure visibility after animation if forwards fails in some contexts */
  visibility: visible;
}

/* Reusable Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.page-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--bg-light);
  border: 1px solid #eee;
  font-weight: 600;
  color: var(--text-main);
  transition: var(--transition);
}

.page-link:hover,
.page-link.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  box-shadow: var(--shadow-sm);
}

.page-link.prev,
.page-link.next {
  width: auto;
  padding: 0 20px;
}

/* Reusable Sidebar */
.sidebar {
  position: sticky;
  top: 150px; /* Adjusted for sticky header/filters */
  flex: 0 0 300px;
  height: fit-content;
}

.sidebar-widget {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  border: 1px solid #eee;
}

.widget-title {
  font-size: 1.3rem;
  color: var(--secondary-color);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--bg-light);
  position: relative;
}

.widget-title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-color);
}

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

.category-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background: var(--bg-light);
  border-radius: 10px;
  font-weight: 600;
  transition: var(--transition);
}

.category-link:hover,
.category-link.active {
  background: var(--primary-color);
  color: white;
}

.category-link span {
  font-size: 0.85rem;
  opacity: 0.8;
}

.sidebar-cta {
  background: var(--secondary-color);
  color: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sidebar-cta h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.sidebar-cta p {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 25px;
}
/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.modal-content {
  background: white;
  padding: 40px;
  border-radius: 15px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: fadeInUp 0.4s ease;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  color: var(--text-light);
  cursor: pointer;
  z-index: 10;
}

.modal-close i {
  transition: var(--transition);
}
.modal-close i:hover {
  color: var(--primary-color);
  transform: rotate(90deg);
}
.fluentform .ff-text-left{
    text-align: center !important;
}
form.fluent_form_1 .ff-btn-submit:not(.ff_btn_no_style){
    background: var(--primary-color) !important;
}
/* Responsive */
@media (max-width: 1200px) {
  .section-title h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }
  .section-title h2 {
    font-size: 1.8rem;
  }
  .container {
    padding: 0 5vw;
  }
  .section-title{
      margin-bottom: 30px;
  }
    div.breadcrumb{
      margin-bottom: 30px;
      /*justify-content: center;*/
  }
  .breadcrumb li{
      text-align: left;
  }
  .sidebar{
      position: static;
  }
  .modal-content{
      width: 90%;;
  }
}
@media (min-width: 769px) {
    .btn{
        font-size: 1rem;
    }
}
/* SEO Section */
.seo-section{
    padding: 0;
}
.seo-container{
    padding: 60px 0;
}
.seo-container:nth-child(even){
    background: #f5f5f5;
}
.seo-container h2{
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 50px;
    position: relative;
    font-weight: bold;
    display: inline-block;
    width: 100%;
    text-align: center;
}

@media (max-width: 768px){
    .seo-container h2{
        font-size: 1.5rem;
    }
}

.seo-container h2>strong{
    font-weight: bold;
}
.seo-container>.container>p{
    margin-bottom: 10px;
}
.seo-container>.container>ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.seo-container>.container>ul>li{
    position: relative;
}
.seo-container>.container>ul>li>p::before{
    content: '';
    display: inline-block;
    top: 0;
    left: 0;
    width: 12px;
    height: 3px;
    background: var(--secondary-color);
    margin-right: 10px;
    vertical-align: middle;
}
.seo-container>.container>ul>li>p>strong{
    margin-right: 10px;
    color: var(--secondary-color);
}