/*
Theme Name: Plexaweb Bespoke Theme
Author: Plexaweb
Author URI: https://www.plexaweb.co.uk
Description: Bespoke website theme by Plexaweb.
Version: 2.1
Requires at least: 5.0
Tested up to: 5.4
Requires PHP: 7.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: plexaweb
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

body
{
text-align: left;
padding: 0px;
margin: 0px;
}

* {
    outline-width: 0px !important;
    text-decoration: none;
}

.hamburger.is-active:hover, .hamburger:hover, .hamburger:active, .hamburger {
    outline-width: 0px;
}
#ttr_sidebar
{
border-left: 1px solid black;
}
#ttr_footer
{
width: 100%;
border-top: 1px #a2a2a2 solid;
text-align: center;
}
.title
{
font-size: 11pt;
font-family: verdana;
font-weight: bold;
}

*:hover, *:active, *:focus {
    outline: 0;
  }

  input::-moz-focus-inner { 
    border: 0; 
  }

  * {
      border: 0;
  }

  a, a:active, a:focus{
    outline: none; /* Works in Firefox, Chrome, IE8 and above */ 
}

input[type="reset"],
input[type="button"],
input[type="submit"],
input[type="file"]
 {
    border: none;
}

.logo {
max-width: 100%;
width: 110px;
margin-top: 20px;
margin-bottom: 20px;
}

.logo img {
    width: 100px;
    height: 100px;
    transform: rotate(180deg);
}

.flex {
    display: flex;
}

img {
    max-width: 100%;
    height: auto;
}

.menu-main-menu-container {
    width: calc(100% - 110px);
  margin-top: 50px;
}



.top-nav {
    list-style: none;
    width: 100%;
    text-align: right;
}

.top-nav li {
    display: inline-block;
}


.top-nav li a {
    color: #fff;
    padding: 18px;
}

.hamburger {
    display: none;
}

/* Styles for align-wide and align-full */

.alignwide {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: 100vw;
}

.alignfull {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: 100vw;
    width: 100vw;
}

.header {
    border-bottom: 2px solid #920202;
    background-color: #282C35;
}

.footer {
    background-color: #282C35;
    border-top: 5px solid #920202;
    padding-bottom: 80px;
    padding-top: 100px;
}

/* ================================
   Trustindex Slider — Mobile-first
   Paste AFTER Trustindex CSS so these rules win
   ================================ */

   .ti-widget {
    --ti-bg: #ffffff;
    --ti-text: #0f172a;         /* slate-900 */
    --ti-muted: #6b7280;        /* gray-500 */
    --ti-border: #e5e7eb;       /* gray-200 */
    --ti-card: #ffffff;
    --ti-star: #f59e0b;         /* amber-500 */
    --ti-accent: #2563eb;       /* blue-600 */
    --ti-shadow: 0 10px 20px rgba(2, 6, 23, 0.06);
    color: var(--ti-text);
    background: var(--ti-bg);
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  }
  
  /* Container + track */
  .ti-widget .ti-widget-container {
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .ti-widget .ti-reviews-container {
    position: relative;
    overflow: hidden;
  }
  
  .ti-widget .ti-reviews-container-wrapper {
    /* Horizontal snap scroll — works even if their JS slider is disabled */
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 85%;
    gap: 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 0.75rem 2.5rem; /* breathing room + space for arrows */
  }
  
  .ti-widget .ti-reviews-container-wrapper::-webkit-scrollbar {
    height: 8px;
  }
  .ti-widget .ti-reviews-container-wrapper::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 9999px;
  }
  
  /* Cards */
  .ti-widget .ti-review-item {
    scroll-snap-align: start;
  }
  
  .ti-widget .ti-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 0.75rem;
    background: var(--ti-card);
    border: 1px solid var(--ti-border);
    border-radius: 16px;
    box-shadow: var(--ti-shadow);
    padding: 1rem;
  }
  
  /* Header: avatar, name, date */
  .ti-widget .ti-review-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .ti-widget .ti-profile-img img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background: #f3f4f6;
    border: 1px solid var(--ti-border);
  }
  
  .ti-widget .ti-profile-details {
    display: grid;
    gap: 0.125rem;
  }
  
  .ti-widget .ti-name {
    font-weight: 600;
    line-height: 1.2;
  }
  
  .ti-widget .ti-date {
    font-size: 0.8125rem;
    color: var(--ti-muted);
  }
  
  /* Stars */
  .ti-widget .ti-stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
  }
  
  .ti-widget .ti-star {
    filter: drop-shadow(0 0 0 var(--ti-star));
    /* If the star SVG is monotone, we tint via filter; otherwise leave as-is */
  }
  
  /* Body text */
  .ti-widget .ti-review-text-container,
  .ti-widget .ti-review-content {
    font-size: 0.975rem;
    line-height: 1.6;
    color: var(--ti-text);
  }
  
  /* Normalize noisy nested markup inside the review body (FB/IG embeds, etc.) */
  .ti-widget .ti-review-content * {
    font: inherit;
    color: inherit;
    line-height: inherit;
    margin: 0;
  }
  .ti-widget .ti-review-content img {
    display: inline-block;
    vertical-align: text-bottom;
    width: 1.15em;
    height: 1.15em;
  }
  
  /* Collapsible body with "Read more" */
  .ti-widget .ti-review-content {
    --_collapsed-h: 8.5rem;
    position: relative;
    max-height: var(--_collapsed-h);
    overflow: hidden;
  }
  .ti-widget .ti-review-content::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 3rem;
    background: linear-gradient(to bottom, rgba(255,255,255,0), var(--ti-card));
    pointer-events: none;
  }
  
  .ti-widget .ti-read-more {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.35rem;
    font-size: 0.9rem;
    color: var(--ti-accent);
    cursor: pointer;
    user-select: none;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  
  /* When Trustindex expands the review body it toggles inline styles; we also support a data flag if you add one */
  .ti-widget .ti-review-item[data-open="true"] .ti-review-content {
    max-height: none;
  }
  .ti-widget .ti-review-item[data-open="true"] .ti-review-content::after {
    display: none;
  }
  
  /* Slider arrows */
  .ti-widget .ti-controls {
    position: absolute !important;
    top: 50% !important;                  /* override their inline 'top' */
    left: 0;
    right: 0;
    transform: translateY(-50%);
    height: 0;                            /* let children position themselves */
    pointer-events: none;
  }
  
  .ti-widget .ti-next,
  .ti-widget .ti-prev {
    display: flex !important;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    background: #ffffffcc;
    border: 1px solid var(--ti-border);
    box-shadow: var(--ti-shadow);
    top: 0;
    transform: translateY(-50%);
    cursor: pointer;
  }
  .ti-widget .ti-prev { left: 8px; }
  .ti-widget .ti-next { right: 8px; }
  
  /* You can add icons via masks if Trustindex doesn’t inject arrow svgs */
  .ti-widget .ti-next::before,
  .ti-widget .ti-prev::before {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23000' d='M9.29 6.71a1 1 0 011.42 0L16 12l-5.29 5.29a1 1 0 01-1.42-1.42L13.17 12 9.29 8.12a1 1 0 010-1.41z'/%3E%3C/svg%3E") no-repeat center / contain;
    background: #111827;
  }
  .ti-widget .ti-prev::before {
    transform: scaleX(-1);
  }
  
  /* Pagination line (progress) */
  .ti-widget .ti-controls-line {
    position: relative;
    height: 4px;
    margin: 0.5rem 2.5rem 0.25rem;
    background: #e5e7eb;
    border-radius: 9999px;
    overflow: hidden;
  }
  .ti-widget .ti-controls-line .dot {
    position: absolute;
    top: 0;
    left: 0;
    height: 100% !important;
    background: var(--ti-accent);
    border-radius: 9999px;
  }
  
  /* Footer (if used) */
  .ti-widget .ti-footer {
    color: var(--ti-muted);
    font-size: 0.85rem;
    padding: 0 2.5rem 0.75rem;
  }
  
  /* ================================
     Desktop & Tablet Responsive
     ================================ */
  
  /* ≥640px: show a little more of each card */
  @media (min-width: 640px) {
    .ti-widget .ti-reviews-container-wrapper {
      grid-auto-columns: 60%;
      gap: 1.25rem;
      padding: 1rem 3rem;
    }
  }
  
  /* ≥768px: roughly 2-up feel */
  @media (min-width: 768px) {
    .ti-widget .ti-reviews-container-wrapper {
      grid-auto-columns: 48%;
    }
    .ti-widget .ti-inner {
      padding: 1.1rem 1.1rem 1.2rem;
    }
  }
  
  /* ≥1024px: 3-up slider look */
  @media (min-width: 1024px) {
    .ti-widget .ti-reviews-container-wrapper {
      grid-auto-columns: calc((100% - 2rem) / 3); /* 3 columns with gap compensation */
      gap: 1rem;
      padding: 1rem 3.5rem;
    }
    /* Show arrows on hover (desktop nicety) */
    .ti-widget .ti-next,
    .ti-widget .ti-prev {
      opacity: 0.0;
      transition: opacity .2s ease;
    }
    .ti-widget:hover .ti-next,
    .ti-widget:hover .ti-prev {
      opacity: 1.0;
    }
  }
  
  /* ≥1280px: breathe more */
  @media (min-width: 1280px) {
    .ti-widget .ti-reviews-container-wrapper {
      grid-auto-columns: calc((100% - 2rem) / 3);
      gap: 1rem;
      padding: 1.25rem 4rem 1.5rem;
    }
  }
  

  .midbanner {
      margin-top: 30px;
      margin-bottom: 30px;
      padding-top: 30px;
      padding-bottom: 30px;
  }

  .homebanner {
      margin-bottom: 40px;
  }

  .footer {
      color: #fff;
      margin-top: 140px;
  }

  /* ===== Contact Form 7 Minimal Styling ===== */

/* Inputs, textareas, selects */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="number"],
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  color: #282C35; /* dark grey text */
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Focus states */
.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
  border-color: #920202; /* accent red */
  box-shadow: 0 0 0 3px rgba(146, 2, 2, 0.2);
  outline: none;
}

/* Submit button */
.wpcf7-form input[type="submit"] {
  background: #920202;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.1s ease;
  float: right;
}

.wpcf7-form input[type="submit"]:hover {
  background: #7b0000; /* darker red hover */
}

.wpcf7-form input[type="submit"]:active {
  transform: translateY(1px);
}

/* Validation messages */
.wpcf7-response-output {
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.95rem;
}

/* Success */
.wpcf7-mail-sent-ok {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #064e3b;
}

/* Error */
.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #7f1d1d;
}

/* Required field tip */
span.wpcf7-not-valid-tip {
  color: #920202;
  font-size: 0.85rem;
  margin-top: 4px;
  display: block;
}


.wpcf7-form label {
    display: block;
}

.ti-controls-line {
    display: none;
}

/* Default (desktop) */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #fff; /* adjust for dark header */
    position: absolute;
  right: 0px;
  top: 30px;
  }
  
  /* Mobile breakpoint */
  @media (max-width: 768px) {
    /* Hide desktop menu */
    .menu-main-menu-container {
      display: none;
    }

    .menu-main-menu-container {
        margin-top: 0px !important;
    }

    #menu-main-menu {
        margin: 0px;
        padding: 0px;
    }
    /* Show hamburger */
    .hamburger {
      display: block;
    }

    .flex {
        display: block;
    }

    .top-nav {
        margin: 0px;
  width: 100%;
    }

    .menu-main-menu-container {
        width: 100%;

    }
    
    .top-nav li {
        display: block;
        width: 100%;
    }

    .menu-main-menu-container li a {
        display: block;
        text-align: center;
        padding: 24px;
        width: 100%;
    }
  }
  

  .menu-active {
      display: block;
  }

  /* ===== RankMath FAQ Accordion ===== */
#rank-math-faq .rank-math-list {
    margin: 0;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 30px;
  }
  
  #rank-math-faq .rank-math-list-item {
    border-bottom: 1px solid #e6e6e6;
  }
  
  /* Question row (looks like a button) */
  #rank-math-faq .rank-math-question {
    margin: 0;
    padding: 14px 54px 14px 12px;
    font-size: 24px !important;
    font-size: 1.05rem;
    line-height: 1.3;
    font-weight: 600;
    color: #282C35;
    cursor: pointer;
    position: relative;
    user-select: none;
    padding-left: 0px;
    padding-right: 0px;
  }
  
  /* Indicator (+ / –) */
  #rank-math-faq .rank-math-question::after {
    content: "+";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
    color: #920202;
    transition: transform .2s ease;
  }
  
  /* Open state indicator */
  #rank-math-faq .rank-math-question[aria-expanded="true"]::after {
    content: "–";
  }
  
  /* Hover / focus */
  #rank-math-faq .rank-math-question:hover {
    color: #920202;
  }
  #rank-math-faq .rank-math-question:focus {
    outline: 3px solid rgba(146,2,2,0.25);
    outline-offset: 2px;
    border-radius: 6px;
  }
  
  /* Answer body (hidden by default, jQuery will toggle) */
  #rank-math-faq .rank-math-answer {
    display: none;
    padding: 0 12px 14px 12px;
    color: #282C35;
  }
  
  /* Optional: first item open on load */
  #rank-math-faq .rank-math-list-item.is-open > .rank-math-answer {
    display: block;
  }
  
  /* Subtle link styling inside answers */
  #rank-math-faq .rank-math-answer a {
    color: #920202;
    text-underline-offset: 2px;
  }
  #rank-math-faq .rank-math-answer a:hover { color: #7b0000; }

  .facebook-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #fff;
    border-radius: 999px; /* pill shape */
    padding: 8px 16px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1877f2; /* Facebook blue */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
  }

  .facebook-badge i {
    font-size: 20px;
  }

  .facebook-badge:hover {
    background-color: #f2f2f2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }

  /* Mobile-friendly adjustments */
  @media (max-width: 480px) {
    .facebook-badge {
      font-size: 14px;
      padding: 6px 12px;
    }
    .facebook-badge i {
      font-size: 18px;
    }
  }

  .pweb {
      text-align: right;
      padding-top: 120px;
  }

  .pweb a {
      color: #999;
      font-size: 15px;
  }


  .hamburger-inner, .hamburger-inner::after, .hamburger-inner::before, .hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner::after, .hamburger.is-active .hamburger-inner::before {
      background: #ffffff;
  }

  .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366; /* WhatsApp green */
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 999;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
  }

  .whatsapp-float:hover {
    background-color: #20b954;
    transform: scale(1.05);
  }

  /* Only show on mobile (up to 768px width) */
  @media (min-width: 769px) {
    .whatsapp-float {
      display: none;
    }
  }