:root {
  --the-red: #B32025;
  /* Exact Logo Crimson Red */
  --the-red-dark: #8E161A;
  --the-black: #231F20;
  /* Logo Off-Black for text visibility */
  --the-dark: #333333;
  --the-grey: #58595B;
  /* Logo Dark Grey */
  --the-light: #F4F5F6;
  /* Logo Light Grey for backgrounds */
  --the-white: #FFFFFF;

  /* Fonts */
  --the-heading: 'Outfit', sans-serif;
  --the-body: 'Inter', sans-serif;

  /* Design Tokens */
  --the-radius: 12px;
  --the-radius-lg: 20px;
  --the-shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.04);
  --the-shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --the-shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
  --the-transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --the-transition-fast: all 0.2s ease;

  /* Gradients based on exact Logo Red (#B32025) and Logo Dark Grey (#58595B) */
  --the-gradient-red: linear-gradient(135deg, #D4262C 0%, #B32025 50%, #8E161A 100%);
  --the-gradient-dark: linear-gradient(135deg, #58595B 0%, #231F20 100%);
}

/* Entry Animation */
@keyframes tteFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tteGlow {

  0%,
  100% {
    box-shadow: 0 10px 30px rgba(179, 32, 37, 0.4);
  }

  50% {
    box-shadow: 0 10px 30px rgba(179, 32, 37, 0.7);
  }
}

/* Global Container Boxed Layouts to Center Sections on Desktop */
.tte-trust-bar-container,
.tte-stats-counter-wrapper,
.tte-why-choose-us-container,
.tte-products-container,
.tte-process-container,
.tte-testimonials-container,
.tte-team-container,
.tte-gallery-container,
.tte-cta-banner-container,
.tte-downloads-container,
.tte-certs-strip-container,
.tte-checklist-container,
.tte-comparison-table-container {
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box !important;
  width: 100% !important;
}

.tte-video-section-container {
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  box-sizing: border-box !important;
  width: 100% !important;
  height: auto;
}

.tte-faq-accordion-wrapper {
  max-width: 850px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  box-sizing: border-box !important;
  width: 100% !important;
}

/* Global Widget Context styling - Easily overridden by Elementor Site Settings */
.tte-widget-section,
.the-widget-section {
  font-family: inherit;
  color: var(--the-dark);
  line-height: 1.6;
}

/* Common Section Headers */
.tte-section-header {
  text-align: center;
  margin-bottom: 45px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.tte-header-label {
  display: block;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  color: var(--the-red);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.tte-header-title {
  font-family: inherit;
  font-size: 38px;
  font-weight: 900;
  color: var(--the-black);
  margin: 0 0 16px 0;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.tte-header-subtitle {
  font-family: inherit;
  font-size: 16px;
  color: var(--the-grey);
  margin: 0;
  line-height: 1.6;
}

/* WIDGET 1: THE Trust Bar */
.tte-trust-bar-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--the-shadow-sm);
}

.tte-trust-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--the-dark);
  transition: var(--the-transition-fast);
}

.tte-trust-bar-item:hover {
  color: var(--the-red);
}

.tte-trust-bar-item-icon svg {
  display: block;
  width: 20px;
  height: 20px;
  color: var(--the-red);
  filter: drop-shadow(0 2px 4px rgba(179, 32, 37, 0.2));
}

.tte-trust-bar-divider {
  border-left: 2px solid rgba(179, 32, 37, 0.25);
  height: 16px;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .tte-mobile-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
    gap: 15px;
  }

  .tte-mobile-wrap .tte-trust-bar-divider {
    display: none;
  }
}

/* WIDGET 2: THE Stats Counter */
.tte-stats-grid {
  display: grid;
  gap: 24px;
  width: 100%;
}

.tte-counter-item {
  background: var(--the-white);
  border-radius: var(--the-radius);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--the-shadow-sm);
  transition: var(--the-transition);
  padding: 25px 10px;
  text-align: center;
}

.tte-counter-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--the-shadow-md);
  border-color: rgba(179, 32, 37, 0.2);
}

.tte-counter-number-wrap {
  font-family: inherit;
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
}

.tte-counter-number,
.tte-counter-suffix {
  background: var(--the-gradient-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tte-counter-label {
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--the-grey);
}

/* WIDGET 3: THE Why Choose Us */
.tte-why-choose-us-grid {
  display: grid;
  gap: 30px;
  width: 100%;
}

.tte-card {
  padding: 40px 30px;
  background: var(--the-white);
  border-radius: var(--the-radius-lg);
  box-shadow: var(--the-shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  transition: var(--the-transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
}

.tte-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--the-gradient-red);
  transition: var(--the-transition);
}

.tte-card-hover-lift:hover {
  transform: translateY(-10px);
  box-shadow: var(--the-shadow-lg);
}

.tte-card-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(179, 32, 37, 0.05);
  color: var(--the-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: var(--the-transition);
}

.tte-card-hover-lift:hover .tte-card-icon-box {
  background: var(--the-gradient-red);
  color: var(--the-white);
  transform: rotate(4deg) scale(1.06);
}

.tte-card-icon-box svg {
  width: 28px;
  height: 28px;
}

.tte-card-title {
  font-family: inherit;
  font-size: 20px;
  font-weight: 700;
  color: var(--the-black);
  margin: 0 0 12px 0;
}

.tte-card-desc {
  font-family: inherit;
  font-size: 14px;
  line-height: 1.7;
  color: var(--the-grey);
  margin: 0 0 20px 0;
  flex-grow: 1;
}

.tte-card-link {
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--the-red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--the-transition-fast);
}

.tte-card-link:hover {
  gap: 10px;
  color: var(--the-red-dark);
}

/* WIDGET 4: THE Product Cards */
.tte-products-grid {
  display: grid;
  gap: 30px;
  width: 100%;
}

.tte-product-card {
  background: var(--the-white);
  border-radius: var(--the-radius-lg);
  overflow: hidden;
  box-shadow: var(--the-shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: var(--the-transition);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.tte-prod-card-hover:hover {
  transform: translateY(-10px);
  box-shadow: var(--the-shadow-lg);
}

.tte-product-card-image-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.tte-product-card-image {
  width: 100%;
  height: 240px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.tte-prod-card-hover:hover .tte-product-card-image {
  transform: scale(1.06) rotate(0.2deg);
}

.tte-product-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 16px;
  font-family: inherit;
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  color: var(--the-white);
  background-color: var(--the-red);
}

.tte-product-card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tte-product-title {
  font-family: inherit;
  font-size: 22px;
  font-weight: 700;
  color: var(--the-black);
  margin: 0 0 12px 0;
}

.tte-product-desc {
  font-family: inherit;
  font-size: 14px;
  line-height: 1.7;
  color: var(--the-grey);
  margin: 0 0 25px 0;
  flex-grow: 1;
}

.tte-product-link {
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--the-red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--the-transition-fast);
  align-self: flex-start;
}

.tte-product-link:hover {
  gap: 10px;
  color: var(--the-red-dark);
}

/* WIDGET 5: THE Video Section */
.tte-video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: var(--the-radius-lg);
  box-shadow: var(--the-shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tte-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* WIDGET 6: THE Process Steps */
.tte-process-grid {
  display: grid;
  gap: 30px;
  width: 100%;
}

.tte-step-item {
  text-align: center;
  padding: 40px 30px;
  background: var(--the-white);
  border-radius: var(--the-radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: var(--the-shadow-sm);
  transition: var(--the-transition);
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

.tte-step-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--the-shadow-md);
}

.tte-step-number-wrap {
  margin-bottom: 20px;
  display: inline-block;
}

.tte-step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 22px;
  font-weight: 800;
  background: var(--the-gradient-red);
  color: var(--the-white);
  border: 4px solid var(--the-white);
  box-shadow: 0 4px 15px rgba(179, 32, 37, 0.35);
}

.tte-step-title {
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  color: var(--the-black);
  margin: 0 0 10px 0;
}

.tte-step-desc {
  font-family: inherit;
  font-size: 14px;
  color: var(--the-grey);
  line-height: 1.6;
  margin: 0;
}

/* WIDGET 7: THE Testimonials */
.tte-testimonials-grid {
  display: grid;
  gap: 30px;
  width: 100%;
}

.tte-testimonial-card {
  padding: 40px;
  border-radius: var(--the-radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: var(--the-white);
  box-shadow: var(--the-shadow-sm);
  transition: var(--the-transition);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.tte-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--the-shadow-md);
  border-color: rgba(179, 32, 37, 0.15);
}

.tte-quote-icon-wrap {
  margin-bottom: 18px;
  opacity: 0.15;
}

.tte-quote-icon svg {
  display: block;
}

.tte-testimonial-quote-text {
  font-family: inherit;
  font-size: 15px;
  line-height: 1.7;
  font-style: italic;
  color: var(--the-dark);
  margin: 0 0 20px 0;
  flex-grow: 1;
}

.tte-testimonial-stars {
  font-size: 18px;
  margin-bottom: 25px;
  color: #F1C40F;
  display: flex;
  gap: 4px;
}

.tte-testimonial-stars svg {
  display: block;
}

.tte-author-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
}

.tte-author-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid var(--the-red);
  box-shadow: var(--the-shadow-sm);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.tte-placeholder-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
}

.tte-author-meta {
  display: flex;
  flex-direction: column;
}

.tte-author-name {
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: var(--the-black);
  margin: 0 0 4px 0;
}

.tte-author-sub-meta {
  font-family: inherit;
  font-size: 13px;
  color: var(--the-grey);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* WIDGET 8: THE Team Grid */
.tte-team-grid-wrapper {
  display: grid;
  gap: 30px;
  width: 100%;
}

.tte-member-card {
  text-align: center;
  background: var(--the-white);
  padding: 40px 30px;
  border-radius: var(--the-radius-lg);
  box-shadow: var(--the-shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: var(--the-transition);
}

.tte-member-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--the-shadow-md);
}

.tte-member-photo-wrap {
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: var(--the-shadow-sm);
  border: 3px solid var(--the-white);
  display: inline-block;
}

.tte-member-photo {
  width: 200px;
  height: 200px;
  object-fit: cover;
  transition: var(--the-transition);
  background-size: cover;
  background-position: center;
}

.tte-member-card:hover .tte-member-photo {
  transform: scale(1.05);
}

.tte-shape-circle,
.tte-shape-circle img {
  border-radius: 50% !important;
}

.tte-shape-rounded,
.tte-shape-rounded img {
  border-radius: var(--the-radius) !important;
}

.tte-member-name {
  font-family: inherit;
  font-size: 20px;
  font-weight: 700;
  color: var(--the-black);
  margin: 0 0 5px 0;
}

.tte-member-role {
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--the-red);
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.tte-member-bio {
  font-family: inherit;
  font-size: 13px;
  line-height: 1.6;
  color: var(--the-grey);
}

/* WIDGET 9: THE Projects Gallery */
.tte-gallery-grid {
  display: grid;
  width: 100%;
  gap: 24px;
}

.tte-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--the-radius-lg);
  box-shadow: var(--the-shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-sizing: border-box;
}

.tte-gallery-image-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 100%;
}

.tte-gallery-image {
  width: 100%;
  height: 280px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.tte-gallery-zoom:hover .tte-gallery-image {
  transform: scale(1.08);
}

.tte-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  box-sizing: border-box;
  background: linear-gradient(0deg, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0.3) 60%, rgba(26, 26, 26, 0) 100%);
  opacity: 0;
  transition: var(--the-transition);
  z-index: 2;
}

.tte-gallery-image-wrap:hover .tte-gallery-overlay {
  opacity: 1;
}

.tte-gallery-overlay-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateY(15px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tte-gallery-image-wrap:hover .tte-gallery-overlay-content {
  transform: translateY(0);
}

.tte-overlay-title {
  font-family: inherit;
  font-size: 20px;
  font-weight: 700;
  color: var(--the-white);
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.tte-overlay-location {
  font-family: inherit;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: block;
}

.tte-gallery-cta {
  display: inline-block;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 30px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--the-gradient-red);
  color: var(--the-white);
  box-shadow: 0 4px 10px rgba(179, 32, 37, 0.3);
  transition: var(--the-transition-fast);
}

.tte-gallery-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(179, 32, 37, 0.5);
}

/* WIDGET 10: THE CTA Banner */
.tte-cta-banner-container {
  background: var(--the-gradient-dark);
  color: var(--the-white);
  border-radius: var(--the-radius-lg);
  padding: 60px 40px;
  box-sizing: border-box;
}

.tte-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.tte-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.tte-cta-title {
  font-family: inherit;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--the-white);
}

.tte-cta-subtitle {
  font-family: inherit;
  font-size: 16px;
  line-height: 1.7;
  max-width: 800px;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.85);
}

.tte-cta-buttons {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.tte-cta-btn {
  padding: 16px 36px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 30px;
  transition: var(--the-transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tte-btn-1 {
  background: var(--the-gradient-red);
  color: var(--the-white);
}

.tte-btn-1:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(179, 32, 37, 0.4);
}

.tte-btn-2 {
  background: rgba(255, 255, 255, 0.1);
  color: var(--the-white);
  border: 2px solid var(--the-white);
}

.tte-btn-2:hover {
  background: var(--the-white) !important;
  color: var(--the-black) !important;
  border-color: var(--the-white) !important;
  transform: translateY(-2px);
}

/* WIDGET 11: THE FAQ Accordion */
.tte-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tte-faq-item {
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: var(--the-white);
  border-radius: var(--the-radius);
  box-shadow: var(--the-shadow-sm);
  transition: var(--the-transition);
  overflow: hidden;
}

.tte-faq-item:hover {
  border-color: rgba(179, 32, 37, 0.15);
  box-shadow: var(--the-shadow-md);
}

.tte-faq-question {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  transition: var(--the-transition-fast);
}

.tte-faq-question-text {
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  color: var(--the-black);
}

.tte-faq-icon {
  font-size: 20px;
  color: var(--the-red);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tte-faq-item.active .tte-faq-icon {
  transform: rotate(45deg);
}

.tte-faq-answer {
  padding: 0 24px 24px 24px;
  display: none;
}

.tte-faq-answer-inner {
  font-family: inherit;
  font-size: 14px;
  line-height: 1.7;
  color: var(--the-grey);
}

/* WIDGET 12: THE Download Cards */
.tte-download-grid {
  display: grid;
  gap: 30px;
  width: 100%;
}

.tte-download-card {
  padding: 40px 30px;
  background: var(--the-white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--the-radius-lg);
  box-shadow: var(--the-shadow-sm);
  text-align: center;
  transition: var(--the-transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.tte-download-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--the-shadow-lg);
  border-color: rgba(179, 32, 37, 0.2);
}

.tte-download-icon-box {
  font-size: 40px;
  margin-bottom: 25px;
  color: var(--the-red);
  filter: drop-shadow(0 4px 10px rgba(179, 32, 37, 0.2));
}

.tte-download-title {
  font-family: inherit;
  font-size: 20px;
  font-weight: 700;
  color: var(--the-black);
  margin-bottom: 12px;
}

.tte-download-desc {
  font-family: inherit;
  font-size: 14px;
  line-height: 1.6;
  color: var(--the-grey);
  margin-bottom: 25px;
  flex-grow: 1;
}

.tte-download-action-wrap {
  width: 100%;
}

.tte-download-btn {
  padding: 14px 28px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 30px;
  transition: var(--the-transition);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  background: var(--the-gradient-red);
  color: var(--the-white);
  display: inline-block;
}

.tte-download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* WIDGET 13: THE Certifications */
.tte-certs-strip-container {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-around !important;
  flex-wrap: wrap !important;
  gap: 30px !important;
  padding: 30px 20px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.tte-certs-borders {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.tte-cert-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tte-cert-logo {
  object-fit: contain;
  transition: filter 0.3s ease, transform 0.3s ease;
  filter: grayscale(1) opacity(0.6);
}

.tte-cert-logo:hover {
  filter: grayscale(0) opacity(1);
  transform: scale(1.05);
}

.tte-cert-label {
  font-family: inherit;
  font-weight: 700;
  margin-top: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--the-grey);
}

/* WIDGET 14: THE Footer */
.tte-footer-wrapper {
  padding: 80px 20px 0 20px;
  color: #CCCCCC;
}

.tte-footer-main {
  display: grid;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 50px auto;
  width: 100%;
}

.tte-footer-brand-column {
  display: flex;
  flex-direction: column;
}

.tte-footer-logo-wrap {
  margin-bottom: 20px;
}

.tte-footer-logo-text {
  font-family: inherit;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--the-white);
}

.tte-footer-brand-desc {
  font-family: inherit;
  font-size: 14px;
  line-height: 1.7;
  color: #AAAAAA;
  margin: 20px 0;
}

.tte-footer-socials {
  display: flex;
  gap: 12px;
}

.tte-footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--the-white);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--the-transition);
}

.tte-footer-social-link:hover {
  background: var(--the-red);
  border-color: var(--the-red);
  transform: translateY(-3px) rotate(5deg);
  color: var(--the-white);
}

.tte-footer-column {
  display: flex;
  flex-direction: column;
}

.tte-footer-col-title {
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: 1px;
  color: var(--the-white);
}

.tte-footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tte-footer-link {
  font-family: inherit;
  font-size: 14px;
  text-decoration: none;
  color: #AAAAAA;
  transition: var(--the-transition-fast);
}

.tte-footer-link:hover {
  color: var(--the-white);
  padding-left: 5px;
}

.tte-footer-bottom {
  padding: 30px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.tte-footer-bottom-text {
  font-family: inherit;
  font-size: 13px;
  color: #888888;
}

/* WIDGET 15: THE Sticky CTA */
.tte-sticky-cta {
  position: fixed !important;
  bottom: 24px;
  left: 24px;
  right: 24px;
  width: calc(100% - 48px) !important;
  max-width: 480px;
  margin: 0 auto;
  border-radius: 50px;
  padding: 18px 32px;
  font-family: inherit;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  box-shadow: 0 10px 30px rgba(179, 32, 37, 0.4);
  background: var(--the-gradient-red);
  color: var(--the-white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 999999;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  animation: tteGlow 4s infinite;
}

.tte-sticky-cta:hover {
  filter: brightness(1.15);
  transform: translateY(-2px);
  color: var(--the-white);
}

/* WIDGET 16: THE Product Hero */
.tte-product-hero-container {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.tte-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.92) 0%, rgba(17, 17, 17, 0.55) 60%, rgba(179, 32, 37, 0.18) 100%);
  z-index: 1;
}

.tte-hero-content-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  padding: 140px 20px;
  animation: tteFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.tte-hero-eyebrow {
  font-family: inherit;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--the-white);
  background: rgba(179, 32, 37, 0.22);
  border: 1px solid rgba(179, 32, 37, 0.45);
  padding: 8px 18px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.tte-hero-title {
  font-family: inherit;
  font-size: 58px;
  font-weight: 900;
  margin-bottom: 25px;
  line-height: 1.1;
  letter-spacing: -1.2px;
  color: var(--the-white);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.tte-hero-subtitle {
  font-family: inherit;
  font-size: 19px;
  line-height: 1.75;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
}

.tte-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.tte-hero-btn {
  padding: 16px 36px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 30px;
  transition: var(--the-transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
}

.tte-hero-btn.filled {
  background: var(--the-gradient-red);
  color: var(--the-white);
  box-shadow: 0 8px 25px rgba(179, 32, 37, 0.35);
  border: none;
}

.tte-hero-btn.filled:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(179, 32, 37, 0.55);
}

.tte-hero-btn.outline {
  background: transparent;
  color: var(--the-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.tte-hero-btn.outline:hover {
  background: var(--the-white) !important;
  color: var(--the-black) !important;
  border-color: var(--the-white) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15);
}

/* WIDGET 17: THE Features Checklist */
.tte-checklist-title {
  font-family: inherit;
  font-size: 24px;
  font-weight: 800;
  color: var(--the-black);
  margin-bottom: 30px;
}

.tte-checklist-grid {
  display: grid;
  width: 100%;
  gap: 16px;
}

.tte-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.6;
}

.tte-checklist-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--the-red);
}

.tte-checklist-icon svg {
  display: block;
  width: 16px;
  height: 16px;
}

.tte-checklist-text {
  color: var(--the-dark);
}

/* WIDGET 18: THE Comparison Table */
.tte-table-wrapper {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--the-radius-lg);
  box-shadow: var(--the-shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.tte-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-family: inherit;
  font-size: 14px;
}

.tte-table th {
  font-family: inherit;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 20px 24px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.06);
}

.tte-table td {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  color: var(--the-grey);
}

.tte-table tr:last-child td {
  border-bottom: 0;
}



/* WIDGET 19: THE State Page Layout */
.tte-state-page-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
  animation: tteFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.tte-state-hero {
  margin-bottom: 50px;
  text-align: center;
  padding: 60px 40px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.tte-state-hero h1 {
  font-family: var(--the-heading), 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 38px;
  margin: 0 0 20px;
  line-height: 1.2;
}

.tte-state-intro {
  font-family: var(--the-body), 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--the-grey);
  max-width: 800px;
  margin: 0 auto 30px;
}

.tte-state-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 20px 0 0;
}

.tte-state-badge {
  padding: 10px 20px;
  font-family: var(--the-heading), 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: var(--the-brand-red, #B32025);
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  color: #FFFFFF;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.tte-state-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.tte-state-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 40px 0;
}

.tte-state-zoning {
  background-color: #FAFAFA;
  border-left: 4px solid var(--the-brand-red, #B32025);
  padding: 30px;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  text-align: left;
  box-sizing: border-box;
}

.tte-state-zoning h2.tte-zoning-title {
  font-family: var(--the-heading), 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--the-dark, #1a1a1a);
  margin: 0 0 15px;
  font-style: normal;
}

.tte-state-zoning p {
  font-family: var(--the-body), 'Open Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--the-grey, #555555);
  margin: 0;
  font-style: normal;
}

.tte-state-testimonial {
  margin: 0;
  padding: 40px;
  background: #FAFAFA;
  border-radius: var(--the-radius-lg, 8px);
  text-align: center;
  box-shadow: var(--the-shadow-sm, 0 4px 15px rgba(0, 0, 0, 0.02));
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tte-state-testimonial-quote {
  font-family: var(--the-body), 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  font-style: italic;
  color: var(--the-dark);
  margin-bottom: 20px;
}

.tte-state-testimonial-author {
  font-family: var(--the-heading), 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--the-brand-red, #B32025);
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .tte-state-main-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.tte-state-cta {
  text-align: center;
  margin: 60px 0;
  padding: 60px 40px;
  background: var(--the-gradient-dark);
  border-radius: var(--the-radius-lg);
  color: var(--the-white);
  box-shadow: var(--the-shadow-lg);
  box-sizing: border-box;
}

.tte-state-cta-title {
  font-family: inherit;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--the-white);
}

.tte-state-cta-subtitle {
  font-family: inherit;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
}

.tte-state-cta-btn {
  padding: 16px 36px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 30px;
  background: var(--the-gradient-red);
  color: var(--the-white);
  display: inline-block;
  box-shadow: 0 4px 15px rgba(179, 32, 37, 0.3);
  transition: var(--the-transition);
}

.tte-state-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(179, 32, 37, 0.5);
}

/* Columns layouts grids responsive matching elementor */
@media (min-width: 769px) {
  .tte-stats-grid {
    grid-template-columns: repeat(var(--tte-stats-cols, 5), 1fr);
  }

  .tte-why-choose-us-grid {
    grid-template-columns: repeat(var(--tte-why-cols, 3), 1fr);
  }

  .tte-products-grid {
    grid-template-columns: repeat(var(--tte-prod-cols, 3), 1fr);
  }

  .tte-process-grid {
    grid-template-columns: repeat(var(--tte-step-cols, 4), 1fr);
  }

  .tte-testimonials-grid {
    grid-template-columns: repeat(var(--tte-test-cols, 3), 1fr);
  }

  .tte-team-grid-wrapper {
    grid-template-columns: repeat(var(--tte-team-cols, 4), 1fr);
  }

  .tte-gallery-grid {
    grid-template-columns: repeat(var(--tte-gal-cols, 3), 1fr);
  }

  .tte-download-grid {
    grid-template-columns: repeat(var(--tte-dl-cols, 3), 1fr);
  }

  .tte-footer-main {
    grid-template-columns: repeat(4, 1fr);
  }

  .tte-checklist-grid {
    grid-template-columns: repeat(var(--tte-checklist-cols, 2), 1fr);
  }
}

@media (max-width: 1024px) {
  .tte-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tte-why-choose-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tte-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tte-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tte-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tte-team-grid-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .tte-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tte-download-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tte-footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .tte-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tte-why-choose-us-grid {
    grid-template-columns: 1fr;
  }

  .tte-products-grid {
    grid-template-columns: 1fr;
  }

  .tte-process-grid {
    grid-template-columns: 1fr;
  }

  .tte-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .tte-team-grid-wrapper {
    grid-template-columns: 1fr;
  }

  .tte-gallery-grid {
    grid-template-columns: 1fr;
  }

  .tte-download-grid {
    grid-template-columns: 1fr;
  }

  .tte-footer-main {
    grid-template-columns: 1fr;
  }

  .tte-checklist-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .tte-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Ensure SVG paths inherit text colors dynamically */
.tte-trust-bar-item-icon svg,
.tte-trust-bar-item-icon svg path,
.tte-card-icon-box svg,
.tte-card-icon-box svg path,
.tte-download-icon-box svg,
.tte-download-icon-box svg path,
.tte-checklist-icon svg,
.tte-checklist-icon svg path {
  fill: currentColor !important;
}

/* Featured Layout for Projects Gallery (1 large + 4 small grid) */
@media (min-width: 769px) {
  .tte-gallery-grid.featured-layout {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    grid-template-rows: repeat(2, 280px) !important;
    gap: 24px !important;
  }

  .tte-gallery-grid.featured-layout .tte-gallery-item:first-child {
    grid-column: span 2 !important;
    grid-row: span 2 !important;
    height: 100% !important;
  }

  .tte-gallery-grid.featured-layout .tte-gallery-item:first-child .tte-gallery-image-wrap,
  .tte-gallery-grid.featured-layout .tte-gallery-item:first-child .tte-gallery-image {
    height: 100% !important;
    min-height: 584px !important;
  }
}

/* Video section poster image and overlay play button */
.tte-video-poster-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tte-video-poster-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tte-poster-zoom:hover img {
  transform: scale(1.08);
}

.tte-video-poster-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: background-color 0.3s ease;
}

.tte-video-poster-wrap:hover .tte-video-poster-overlay {
  background-color: rgba(0, 0, 0, 0.5) !important;
}

.tte-video-play-btn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--the-gradient-red);
  color: var(--the-white);
  box-shadow: 0 10px 25px rgba(179, 32, 37, 0.4);
  transition: all 0.3s ease;
  z-index: 2;
}

.tte-video-poster-wrap:hover .tte-video-play-btn {
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(179, 32, 37, 0.6);
}

.tte-video-play-btn svg {
  margin-left: 4px;
}

/* Custom Outline and Global Button Border Thickness Fixes */
.the-btn {
  border-width: 1.5px;
}

.the-btn-outline {
  border-width: 1.5px;
}

.elementor-button {
  border-width: 1.5px !important;
}

/* Cleaner Button Styling */
.the-btn {
  font-family: var(--the-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  border-width: 1.5px;
  border-style: solid;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

/* Fix existing buttons and bordered elements */
.tte-hero-btn {
  border-width: 1.5px !important;
}

.tte-hero-btn.outline {
  border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
}

.tte-hero-btn.outline:hover {
  border-color: var(--the-white) !important;
  border-width: 1.5px !important;
}

/* Projects Gallery Layouts */
.the-gallery-grid {
  display: grid;
  gap: var(--gap, 16px);
}

.the-gallery-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.the-gallery-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.the-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.the-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.the-gallery-item:hover img {
  transform: scale(1.06);
}

.the-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.75);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  z-index: 2;
}

.the-gallery-item:hover .the-gallery-overlay {
  opacity: 1;
}

/* Featured layout: 1 large left (spans 2 rows & 2 cols) + 4 smaller right */
.the-gallery-grid.featured-layout {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
}

.the-gallery-grid.featured-layout .the-gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

/* Masonry columns layout */
.the-gallery-grid.masonry-layout {
  display: block;
  column-count: var(--columns, 3);
  column-gap: var(--gap, 16px);
}

.the-gallery-grid.masonry-layout .the-gallery-item {
  display: inline-block;
  width: 100%;
  margin-bottom: var(--gap, 16px);
  break-inside: avoid;
}

/* Responsive styles for Gallery */
@media(max-width:768px) {

  .the-gallery-grid.cols-3,
  .the-gallery-grid.cols-2 {
    grid-template-columns: 1fr 1fr;
  }

  .the-gallery-grid.featured-layout {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }

  .the-gallery-grid.featured-layout .the-gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media(max-width:480px) {

  .the-gallery-grid,
  .the-gallery-grid.cols-3,
  .the-gallery-grid.cols-2,
  .the-gallery-grid.featured-layout {
    grid-template-columns: 1fr !important;
  }

  .the-gallery-grid.featured-layout .the-gallery-item:first-child {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
}

/* Split Hero Layout styles */
.tte-product-hero-container {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.tte-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.tte-hero-overlay-solid {
  background-color: rgba(0, 0, 0, 0.55);
}

.tte-hero-overlay-gradient_dark {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.15) 100%);
}

.tte-hero-overlay-gradient_red {
  background: linear-gradient(to right, rgba(179, 32, 37, 0.85) 0%, rgba(26, 26, 26, 0.6) 60%, rgba(0, 0, 0, 0.8) 100%);
}

.tte-hero-split-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.tte-hero-layout-split .tte-hero-content-inner {
  width: 55%;
  text-align: left;
}

.tte-hero-layout-split .tte-hero-media-inner {
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tte-hero-media-card {
  position: relative;
  width: 100%;
  max-width: 450px;
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
}

.tte-hero-media-card:hover {
  transform: rotate(0deg) scale(1.02);
}

.tte-hero-media-card img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.tte-hero-media-card.tte-has-shadow img {
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.tte-hero-accent-bar {
  position: absolute;
  left: -6px;
  top: 15%;
  bottom: 15%;
  width: 6px;
  background-color: #B32025;
  /* Brand Red */
  z-index: 3;
}

.tte-title-shadow {
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}

.tte-hero-trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  align-items: center;
}

.tte-trust-divider {
  font-size: 16px;
  line-height: 1;
}

.tte-trust-item {
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Mobile Responsive rules for split hero */
@media (max-width: 991px) {
  .tte-hero-split-wrap {
    flex-direction: column;
    gap: 30px;
  }

  .tte-hero-layout-split .tte-hero-content-inner,
  .tte-hero-layout-split .tte-hero-media-inner {
    width: 100%;
    text-align: center;
  }

  .tte-hero-layout-split .tte-hero-buttons {
    justify-content: center;
  }

  .tte-hero-layout-split .tte-hero-trust-indicators {
    justify-content: center;
  }
}

/* Side by Side Video layout rules */
.tte-video-side-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.tte-video-col-left {
  width: 60%;
}

.tte-video-col-right {
  width: 40%;
  text-align: left;
}

.tte-side-heading {
  font-family: var(--the-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--the-dark);
  margin: 10px 0 20px;
  line-height: 1.25;
}

.tte-side-desc {
  font-family: var(--the-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--the-dark-gray);
  margin-bottom: 24px;
}

.tte-side-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.tte-side-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.tte-bullet-icon {
  background-color: var(--the-brand-red);
  color: var(--the-white);
  font-size: 11px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 3px;
}

.tte-bullet-text {
  font-family: var(--the-body);
  font-size: 15px;
  color: var(--the-dark);
  font-weight: 500;
  line-height: 1.4;
}

.tte-video-cta-wrap {
  margin-top: 24px;
}

/* Mobile Responsive rules for side-by-side video */
@media (max-width: 991px) {
  .tte-video-side-wrap {
    flex-direction: column;
    gap: 30px;
  }

  .tte-video-col-left,
  .tte-video-col-right {
    width: 100%;
  }

  .tte-video-col-right {
    text-align: center;
  }

  .tte-side-bullets li {
    text-align: left;
  }

  .tte-side-bullets {
    display: inline-block;
    text-align: left;
  }
}

/* Step Media Zoom on Hover */
.tte-step-item:hover .tte-step-img {
  transform: scale(1.05);
}