@charset "utf-8";
/* ============================================================================
   FINAL CLEAN CSS - With Full Dropdown Menu Support 2025-11-21 1125am
   ============================================================================ */

/* ===== BASE STYLES START ===== */
* { box-sizing: border-box; }
html, body { 
  margin: 0; 
  padding: 0; 
  font-family: Arial, Helvetica, sans-serif; 
  color: #111; 
}
a { color: #0033cc; text-decoration: none; }
/* ===== this is the hover color for red #d41f55; ===== */
/* ===== this is the hover color for black #111; ===== */
a:hover { color: #111; }
.page-wrapper { 
  max-width: 1200px; 
  margin: 0 auto; 
  background: #fff; 
}
/* ===== BASE STYLES END ===== */

/* ===== HEADER STYLES START ===== */
.header {
  background-color: #6B4423;
  background-image: linear-gradient(to bottom, #7d5a3d 0%, #5d3a1d 100%);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  color: #fff;
  padding: 15px 20px;
}

.header-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Top Row: Website | Title | Tagline */
.header-top-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-bottom: 12px;
}

.header-website {
  font-size: 1.8em;
  color: #ffd700;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  justify-self: start;
}

.header-maintitle {
  font-size: 2.5em;
  font-weight: bold;
  color: #fff;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  font-family: Verdana, Geneva, sans-serif;
}

.header-tagline {
  font-size: 1em;
  color: rgba(255,255,255,0.95);
  font-style: italic;
  justify-self: end;
}

/* Stats Row: Centered Stat Boxes */
.header-stats-row {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.header-stats {
  display: flex;
  gap: 12px;
}

.stat-box {
  background-color: rgba(255,255,255,0.15);
  padding: 12px 18px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.3);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  min-width: 85px;
}

.stat-box:hover {
  background-color: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

.stat-number {
  display: block;
  font-size: 1.8em;
  font-weight: bold;
  color: #ffd700;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.85em;
  color: white;
  margin-top: 4px;
}

/* Action Buttons Row */
.header-actions-row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.action-btn {
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.85em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
  cursor: pointer;
}

.green-btn {
  background-color: #28a745;
  color: white;
  border: 2px solid #ffd700;
}

.green-btn:hover {
  background-color: #218838;
  transform: translateY(-2px);
}

.orange-btn {
  background-color: #ff6b35;
  color: white;
}

.orange-btn:hover {
  background-color: #ff5722;
  transform: translateY(-2px);
}
/* ===== HEADER STYLES END ===== */

/* ===== NAVIGATION START ===== */
.nav-row { 
  display: flex; 
  justify-content: center; 
}

#css3menu0, #css3menu0 ul { 
  list-style: none; 
  margin: 0; 
  padding: 0; 
}

#css3menu0 { 
  display: flex; 
  flex-wrap: wrap; 
  align-items: center; 
  justify-content: center; 
  gap: 10px;
  padding: 0;
  position: relative;
  z-index: 50;
}

/* Remove any pseudo-elements */
#css3menu0 a::before, 
#css3menu0 a::after, 
#css3menu0 span::before, 
#css3menu0 span::after, 
#css3menu0 label::before, 
#css3menu0 label::after { 
  content: none !important; 
}

#css3menu0 > li.switch { 
  display: none; 
}

#css3menu0 > li.switch > label.menu-toggle { 
  display: block; 
  cursor: pointer; 
  user-select: none; 
  color: #111; 
  font-weight: 700; 
  height: 44px; 
  line-height: 44px; 
  padding: 0 20px; 
  background: #fff; 
  border: 1px solid rgba(0,0,0,.15); 
  border-radius: 25px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

#css3menu0 > li {
  position: relative;
}

#css3menu0 > li > a {
  display: inline-flex; 
  align-items: center; 
  justify-content: center;
  height: 44px; 
  padding: 0 20px; 
  border-radius: 25px;
  background-color: rgba(255, 200, 100, 0.95);
  border: 1px solid #cc7a00;
  color: #111; 
  font-weight: 700; 
  white-space: nowrap; 
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

#css3menu0 > li > a:hover { 
  background-color: rgba(255, 220, 120, 1);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* DROPDOWN MENUS */
#css3menu0 li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 6px 0;
  z-index: 1000;
  box-shadow: 0 8px 16px rgba(0,0,0,0.18);
}

#css3menu0 li:hover > ul, 
#css3menu0 li:focus-within > ul { 
  display: block; 
}

#css3menu0 li ul li a {
  display: block;
  padding: 0 12px;
  height: 36px;
  line-height: 36px;
  color: #111;
  text-decoration: none;
}

#css3menu0 li ul li a:hover {
  background: #f3f3f3;
}

/* Active/Hover States for Main Menu */
#css3menu0 > li:hover > a,
#css3menu0 > li:focus-within > a,
#css3menu0 > li > a:active,
#css3menu0 > li > a:focus,
#css3menu0 > li > a.current,
#css3menu0 > li.active > a,
#css3menu0 > li > a[aria-current="page"] {
  background: #996600 !important;
  border-color: #996600 !important;
  color: #fff !important;
}

/* Dropdown background when parent is hovered */
#css3menu0 li:hover > ul, 
#css3menu0 li:focus-within > ul, 
#css3menu0 li.active > ul, 
#css3menu0 li > a.current + ul, 
#css3menu0 li > a[aria-current="page"] + ul {
  background: #996600 !important;
  border-color: #996600 !important;
}

/* Dropdown links when parent is hovered */
#css3menu0 li:hover > ul a, 
#css3menu0 li:focus-within > ul a, 
#css3menu0 li.active > ul a, 
#css3menu0 li > a.current + ul a, 
#css3menu0 li > a[aria-current="page"] + ul a {
  color: #fff !important;
  border-top: 1px solid rgba(255,255,255,0.15);
}

#css3menu0 li:hover > ul a:hover, 
#css3menu0 li:focus-within > ul a:hover { 
  background: rgba(255,255,255,0.15) !important; 
}

/* Special "Order Now!" button styling */
#css3menu0 > li > a.cta-order {
  background-color: #28a745;
  color: white;
  border-color: #218838;
}

#css3menu0 > li > a.cta-order:hover {
  background-color: #218838;
  border-color: #1e7e34;
}

.c3m-switch-input { 
  display: none; 
}
/* ===== NAVIGATION END ===== */

/* ===== MOBILE RESPONSIVE START ===== */
@media (max-width: 768px) {
  .header {
    padding: 15px 10px;
  }
  
  /* Top row stacks */
  .header-top-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 8px;
  }
  
  .header-website {
    justify-self: center;
    font-size: 1.5em;
  }
  
  .header-maintitle {
    font-size: 2em;
  }
  
  .header-tagline {
    justify-self: center;
    font-size: 0.9em;
  }
  
  /* Stats row centers */
  .header-stats {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .stat-box {
    min-width: 75px;
    padding: 10px 15px;
  }
  
  .stat-number {
    font-size: 1.5em;
  }
  
  .stat-label {
    font-size: 0.75em;
  }
  
  /* Action buttons stack */
  .header-actions-row {
    flex-direction: column;
    align-items: center;
  }
  
  .action-btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
    font-size: 0.8em;
    padding: 10px 15px;
  }
  
  .action-btn:hover {
    transform: none;
  }
  
  /* Mobile menu */
  #css3menu0 { 
    display: block; 
  }
  
  #css3menu0 > li.switch { 
    display: block; 
    text-align: center; 
    margin-bottom: 10px; 
  }
  
  #css3menu0 > li.topmenu, 
  #css3menu0 > li.toplast { 
    display: none; 
  }
  
  #css3menu-switcher:checked ~ #css3menu0 > li.topmenu,
  #css3menu-switcher:checked ~ #css3menu0 > li.toplast { 
    display: block; 
  }
  
  #css3menu0 > li > a { 
    display: block; 
    border-radius: 10px; 
    margin: 8px 10px; 
    text-align: center; 
    height: 48px; 
    line-height: 48px; 
  }
  
  /* Mobile dropdowns */
  #css3menu0 li ul { 
    position: static; 
    display: none; 
    border: 0; 
    border-radius: 0; 
    padding: 0; 
    background: #ff9900; 
    box-shadow: none; 
  }
  
  #css3menu0 li:hover > ul { 
    display: none !important; 
  }
  
  #css3menu0 > li > a:focus + ul,
  #css3menu0 > li > a:active + ul,
  #css3menu0 > li:focus-within > ul { 
    display: block !important; 
  }
  
  #css3menu0 li ul li a { 
    padding: 0 22px; 
    height: 44px; 
    line-height: 44px; 
  }
  
  #css3menu0 > li:hover > a, 
  #css3menu0 > li:focus-within > a { 
    background: #996600; 
    color: #fff; 
  }
}
/* ===== MOBILE RESPONSIVE END ===== */

/* ===== CONTENT LAYOUT START ===== */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.grid1col {
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  text-align: center;
  border: none; 
  border-radius: 8px; 
  padding: 20px; 
  background: #ffffff;
}

.gridinsideCol { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  width: 100%;
}

.header-grid-no-border {
  border: none;
  padding: 0;
}

.title-container {
  text-align: center;
}

.title-container p {
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

.content-left {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.content-left p, 
.content-left ul, 
.content-left ol, 
.content-left h2, 
.content-left h3 {
  text-align: left;
}

.intro {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}
/* ===== CONTENT LAYOUT END ===== */

/* ===== FOOTER START ===== */
footer { 
  background: #f0f0f0; 
  padding: 20px 0; 
}

.grid1col-offset {
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  text-align: center;
  border: 1px solid #ccc; 
  border-radius: 8px; 
  padding: 20px;
}

.gridinsideCol-offset { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  margin-top: 10px; 
}

hr { 
  border: none; 
  border-top: 1px solid #ccc; 
  height: 1px; 
  margin: 20px 0; 
}
/* ===== FOOTER END ===== */

/* ===== UTILITIES START ===== */
.font20PT { font-size: 20px; }
.font14PT { font-size: 14px; }
.text-center { text-align: center; }
.content-narrow { width: 100%; max-width: 800px; margin: 0 auto; }

.MYbuttonClass {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ff6b35;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.MYbuttonClass:hover {
  background-color: #ff5722;
}
/* ===== UTILITIES END ===== */

/* ===== COMPARISON IMAGES START ===== */
.compare-flex-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
  margin: 0 0 20px 0;
}

.compare-flex-2 .panel {
  flex: 0 0 600px;
  max-width: 600px;
  margin: 0;
  padding: 0;
  background: transparent;
}

.compare-flex-2 .panel img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  background: transparent;
  object-fit: contain;
}

@media (max-width: 1240px) {
  .compare-flex-2 { padding: 10px; }
  .compare-flex-2 .panel {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
/* ===== COMPARISON IMAGES END ===== */

/* ===== CTA Colorful BUTTONSSTART ===== */

/* Base CTA Button */
.cta-demo-button {
  display: inline-block;
  text-align: center;
  padding: 20px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  cursor: pointer;
  border: 3px solid transparent;
}

.cta-demo-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* SIZE OPTIONS */
.cta-small {
  padding: 12px 20px;
  font-size: 0.9em;
}

.cta-medium {
  padding: 20px 30px;
  font-size: 1em;
}

.cta-large {
  padding: 25px 40px;
  font-size: 1.2em;
}

.cta-xlarge {
  padding: 30px 50px;
  font-size: 1.4em;
}

/* COLOR OPTIONS - WHITE TEXT */
.cta-green-white {
  background: linear-gradient(135deg, #28a745 0%, #218838 100%);
  color: white;
  border-color: #ffd700;
}

.cta-orange-white {
  background: linear-gradient(135deg, #ff6b35 0%, #ff5722 100%);
  color: white;
  border-color: #ffd700;
}

.cta-blue-white {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
  border-color: #ffd700;
}

.cta-purple-white {
  background: linear-gradient(135deg, #6f42c1 0%, #5a32a3 100%);
  color: white;
  border-color: #ffd700;
}

.cta-red-white {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: white;
  border-color: #ffd700;
}

.cta-red-black {
  background: linear-gradient(135deg, #dc3545 0%, #ff6b6b 100%);
  color: #111;
  border-color: #fff;
}

.cta-gold-white {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: white;
  border-color: #805500;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* COLOR OPTIONS - BLACK TEXT */
.cta-green-black {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: #111;
  border-color: #fff;
}

.cta-orange-black {
  background: linear-gradient(135deg, #ff9800 0%, #ffb84d 100%);
  color: #111;
  border-color: #fff;
}

.cta-blue-black {
  background: linear-gradient(135deg, #17a2b8 0%, #3dbfd3 100%);
  color: #111;
  border-color: #fff;
}

.cta-yellow-black {
  background: linear-gradient(135deg, #ffc107 0%, #ffd54f 100%);
  color: #111;
  border-color: #805500;
}

.cta-lime-black {
  background: linear-gradient(135deg, #8bc34a 0%, #aed581 100%);
  color: #111;
  border-color: #fff;
}

.cta-gold-black {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #111;
  border-color: #805500;
}

/* Button Content Styling */
.cta-badge {
  display: block;
  font-size: 0.8em;
  margin-bottom: 5px;
  opacity: 0.95;
}

.cta-badge {
  display: block;
  font-size: 0.8em;
  margin-bottom: 5px;
  opacity: 1;  /* Fully opaque - no transparency */
  color: inherit;  /* Uses parent button color */
}

.cta-sub-text {
  display: block;
  font-size: 0.85em;
  margin-top: 5px;
  opacity: 1;  /* Fully opaque - no transparency */
  color: inherit;  /* Uses parent button color */
}

.cta-note {
  display: block;
  font-size: 0.75em;
  margin-top: 8px;
  font-weight: bold;
}

/* ===== CTA Colorful BUTTONS END ===== */
   /* =======================
       SIMPLE, NO-BLEED QUOTE CAROUSEL
       ======================= */
    .testimonial-wrap { max-width: 900px; margin: 10px auto 0; padding: 0 12px; }

    .tcarousel {
      position: relative;
      border: 1px solid #ccc;
      border-radius: 10px;
      background: #fff;
      padding: 18px 16px 56px; /* bottom room for buttons */
    }

    .tslide { display: none; margin: 0; }
    .tslide.is-active { display: block; }

    .tslide blockquote {
      margin: 0;
      max-width: 560px;
      font-size: 18px;
      line-height: 1.5;
      text-align: left;
      overflow-wrap: anywhere;
    }
    .tslide footer { margin-top: 10px; font-weight: bold; }

    /* Buttons over the footer area */
    .tbtn {
      position: absolute;
      bottom: 12px;           /* moved down */
      background:#fff;
      border:1px solid #aaa;
      width:36px; height:36px;
      border-radius:50%;
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      box-shadow:0 2px 6px rgba(0,0,0,.15);
    }
    .tbtn:focus { outline:2px solid #996600; }
    .tprev { left: 8px; }
    .tnext { right: 8px; }

    /* Dots */
    .tdots { display:flex; gap:8px; justify-content:center; padding:10px 0 2px; flex-wrap:wrap; }
    .tdot { width:10px; height:10px; border-radius:50%; background:#ccc; cursor:pointer; display:inline-block; }
    .tdot.is-active { background:#333; }

    @media (max-width:900px){
      .comparison-row { grid-template-columns: 1fr; }
    }
    @media (max-width:600px){
      .testimonial-wrap { max-width: 92vw; }     /* avoids butting the right edge on phones */
      .tbtn { width:32px; height:32px; bottom: 10px; }
      .tslide blockquote { font-size:17px; }
      .tcarousel { padding: 16px 14px 52px; }
    }
    @media (max-width:420px){
      .testimonial-wrap { max-width: 94vw; }
      .tbtn { width:30px; height:30px; }
    }
	 /* PULLING IN PREVIOUS CSS START*/
	/* ====== PICTURE GRID IMAGES: make frame pure white ====== */
.gallery-photo {
  display:block;
  width:100% !important;
  height:var(--thumbH) !important;
  object-fit:contain !important;
  background:#ffffff;   /* CHANGED from #f6f6f6 (light gray) to white */
  border-radius:6px;
  border:0 !important;
}

 /* Hairline rule around a grid START */
/* Grid items with borders for gallery/product displays */
.grid1col-bordered {
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 8px; 
  padding: 20px; 
  background: #ffffff;
}

 /* Hairline rule around a grid END */





	 /* PULLING IN PREVIOUS CSS END*/