@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
    font-family: 'Inter', sans-serif;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.animate-float { animation: float 4s ease-in-out infinite; }
.animate-float-slow { animation: float-slow 6s ease-in-out infinite; }
  
/* Custom border width */
.border-3 { 
  border-width: 3px; 
}

.reviews {
  margin:0 -10px;
}
.reviews-item {
  margin-right:10px;
  margin-left:10px;
  height: inherit !important;
}
.reviews .slick-track {
  padding: 30px 0;
  display: flex !important;
}
.active-link {
  color: #e7000b;
  font-weight: 600;
  border-left: 3px solid #e7000b;
  padding-left: 0.5rem;
}
.perspective {
  perspective: 1000px;
}
.transform-style-preserve-3d {
  transform-style: preserve-3d;
}
.backface-hidden {
  backface-visibility: hidden;
}
.rotate-y-180 {
  transform: rotateY(180deg);
}

/* Typography Styles */
/* Headings */
.main-hero-content h1{
  font-size: 3.5rem;
}
h1, h2, h3, h4, h5, h6{
  color: #09090b;
}
h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 1rem 0;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.875rem 0;
}

h3 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 0.75rem 0;
}

h4 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 0.75rem 0;
}

h5 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 0.625rem 0;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 0.5rem 0;
}

/* Paragraph */
p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Links */
a {
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Text Formatting */
strong, b {
  font-weight: 700;
  color: #1a1a1a;
}

em, i {
  font-style: italic;
}

u {
  text-decoration: underline;
}

s, strike, del {
  text-decoration: line-through;
}

mark {
  background-color: #ffeb3b;
  padding: 0.125rem 0.25rem;
}

small {
  font-size: 0.875rem;
}

sub, sup {
  font-size: 0.75em;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Blockquote */
blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  border-left: 4px solid #e7000b;
  background-color: #f5f5f5;
  font-style: italic;
  color: #555;
}

blockquote p {
  margin: 0 0 0.5rem 0;
}

blockquote p:last-child {
  margin-bottom: 0;
}

/* Code */
code {
  background-color: #f4f4f4;
  padding: 0.125rem 0.375rem;
  border-radius: 3px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.9em;
  color: #e7000b;
}

pre {
  background-color: #f4f4f4;
  padding: 1rem;
  border-radius: 4px;
  overflow-x: auto;
  margin: 1rem 0;
}

pre code {
  background-color: transparent;
  padding: 0;
  color: #333;
}

/* Content lists (bullets / numbers) – do not apply to nav menus */
ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin: 0 0 1rem 0;
}
ol {
  list-style-type: decimal;
  padding-left: 1.5rem;
  margin: 0 0 1rem 0;
}
ul li,
ol li {
  margin-bottom: 0.25rem;
}

/* Keep navigation and utility lists unstyled (no bullets) */
.primary-nav ul,
.primary-nav .primary-menu,
.primary-nav .sub-menu,
nav ul,
.nav-menu-wrapper ul,
ul.list-none {
  list-style: none !important;
  padding-left: 0;
  margin: 0;
}
.primary-nav li,
nav li,
.nav-menu-wrapper li,
ul.list-none li {
  margin-bottom: 0;
}

/* Horizontal Rule */
hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 2rem 0;
}

/* Address */
address {
  font-style: normal;
  line-height: 1.6;
  margin: 0 0 1rem 0;
}

/* Abbreviation */
abbr[title] {
  border-bottom: 1px dotted #666;
  cursor: help;
}

/* Definition */
dfn {
  font-style: italic;
}

/* Keyboard */
kbd {
  background-color: #f4f4f4;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 0.125rem 0.375rem;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.9em;
}

/* Sample Output */
samp {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.9em;
}

/* Variable */
var {
  font-style: italic;
}

/* Time */
time {
  color: #666;
}

/* Pricing block: toggle and cards */
.pricing-toggle .pricing-period-btn {
  outline: none;
}
.pricing-toggle .pricing-period-btn:focus-visible {
  outline: 2px solid #b91c1c;
  outline-offset: 2px;
}

/* Sticky Header Styles */
header.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* ============================================
   Navbar & Primary Menu (Desktop)
   ============================================ */
.primary-nav {
  display: flex;
  align-items: center;
}

.primary-nav .primary-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav .primary-menu > li {
  position: relative;
}

.primary-nav .primary-menu > li > a {
  display: block;
  padding: 0 0.5rem;
  color: #374151;
  font-weight: 500;
  transition: color 0.2s ease;
}

.primary-nav .primary-menu > li > a:hover,
.primary-nav .primary-menu > li.current-menu-item > a {
  color: #b91c1c;
}

/* Down arrow for top-level items that have a submenu */
.primary-nav .primary-menu > li.menu-item-has-children > a {
  position: relative;
  padding-right: 1.5rem;
}

.primary-nav .primary-menu > li.menu-item-has-children > a::after {
  content: "\25BC";
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.5rem;
  line-height: 1;
  opacity: 0.8;
  pointer-events: none;
}

/* Submenu (dropdown) - Desktop */
.primary-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  margin: 0;
  list-style: none;
  background: #fff;
  border-radius: 0.375rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 50;
}

.primary-nav .primary-menu > li:hover > .sub-menu,
.primary-nav .primary-menu > li.menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.primary-nav .sub-menu li {
  margin: 0;
}

.primary-nav .sub-menu a {
  display: block;
  padding: 0.5rem 1rem;
  color: #374151;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.primary-nav .sub-menu a:hover {
  background: #f9fafb;
  color: #b91c1c;
}

/* Nested submenus (2nd level) - optional */
.primary-nav .sub-menu .sub-menu {
  top: 0;
  left: 100%;
  margin-left: 0.25rem;
}

.primary-nav .sub-menu .menu-item-has-children > a::after {
  content: "›";
  float: right;
  font-size: 1.125rem;
  line-height: 1;
}

/* ============================================
   Mobile Menu (responsive)
   ============================================ */
.mobile-menu-toggle {
  z-index: 60;
  transition: background 0.2s ease;
}

/* Overlay when mobile menu is open */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 40;
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.mobile-menu-open .mobile-menu-overlay {
  display: block;
  opacity: 1;
}

/* ===== Comparison table (Pricing) – modern creative design ===== */
.comparison-table-wrapper {
  background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
  border-radius: 1.25rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 10px 20px -4px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.comparison-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  min-width: 640px;
  border-collapse: separate;
  border-spacing: 0;
}

.comparison-th {
  padding: 1rem 1.25rem;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #374151;
  background: linear-gradient(180deg, #f9fafb 0%, #f3f4f6 100%);
  border-bottom: 2px solid #e5e7eb;
  white-space: nowrap;
}

.comparison-th-feature {
  text-align: left;
  padding-left: 1.5rem;
  min-width: 200px;
  border-right: 1px solid #e5e7eb;
}

.comparison-th-kandor {
  background: linear-gradient(180deg, rgba(185, 28, 28, 0.08) 0%, rgba(185, 28, 28, 0.03) 100%);
  border-bottom: 2px solid rgba(185, 28, 28, 0.35);
  position: relative;
  min-width: 140px;
}

.comparison-badge {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b91c1c;
  background: rgba(254, 226, 226, 0.9);
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  margin-bottom: 0.35rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 1px 2px rgba(185, 28, 28, 0.1);
}

.comparison-th-title {
  color: #b91c1c;
  font-size: 0.9375rem;
}

.comparison-th-other {
  min-width: 120px;
}

.comparison-tr {
  transition: background-color 0.2s ease;
}

.comparison-tr:nth-child(even) {
  background: rgba(249, 250, 251, 0.6);
}

.comparison-tr:hover {
  background: rgba(254, 242, 242, 0.4);
}

.comparison-td {
  padding: 1rem 1.25rem;
  text-align: center;
  font-size: 0.9375rem;
  color: #1f2937;
  border-bottom: 1px solid #f3f4f6;
  vertical-align: middle;
}

.comparison-td-feature {
  text-align: left;
  padding-left: 1.5rem;
  font-weight: 500;
  color: #111827;
  border-right: 1px solid #f3f4f6;
  background: rgba(255, 255, 255, 0.5);
}

.comparison-td-kandor {
  background: linear-gradient(90deg, rgba(254, 242, 242, 0.5) 0%, rgba(255, 255, 255, 0.2) 100%);
  border-left: 2px solid rgba(185, 28, 28, 0.2);
}

/* Status dots – check / cross / partial / N/A */
.comparison-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.comparison-tr:hover .comparison-dot {
  transform: scale(1.08);
}

.comparison-dot-yes {
  background: linear-gradient(145deg, #dcfce7 0%, #bbf7d0 100%);
  color: #15803d;
  box-shadow: 0 2px 4px rgba(34, 197, 94, 0.2);
}

.comparison-dot-yes::before {
  content: "✓";
  font-size: 1rem;
  line-height: 1;
}

.comparison-dot-no {
  background: linear-gradient(145deg, #fee2e2 0%, #fecaca 100%);
  color: #b91c1c;
  box-shadow: 0 2px 4px rgba(220, 38, 38, 0.15);
}

.comparison-dot-no::before {
  content: "×";
  font-size: 1.125rem;
  line-height: 1;
}

.comparison-dot-partial {
  background: linear-gradient(145deg, #fef3c7 0%, #fde68a 100%);
  color: #b45309;
  box-shadow: 0 2px 4px rgba(245, 158, 11, 0.2);
}

.comparison-dot-partial::before {
  content: "!";
  font-size: 0.875rem;
  line-height: 1;
}

.comparison-dot-na {
  background: linear-gradient(145deg, #f3f4f6 0%, #e5e7eb 100%);
  color: #6b7280;
  font-size: 0.625rem;
  font-weight: 600;
  width: auto;
  min-width: 2rem;
  padding: 0 0.5rem;
  border-radius: 9999px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.comparison-dot-na::before {
  content: none;
}

/* Comparison table – mobile-friendly card layout (reference style) */
.comparison-mobile-header {
  display: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
  background: linear-gradient(180deg, #f3f4f6 0%, #e5e7eb 100%);
  margin: 0;
  padding: 0.75rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
}

/* FAQ accordion – modern single-open design */
.faq-accordion { --faq-accent: linear-gradient(135deg, #b91c1c 0%, #dc2626 50%, #b91c1c 100%); }

.faq-accordion .faq-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
  border: 1px solid #e5e7eb;
}
.faq-accordion .faq-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.faq-accordion .faq-card.is-open {
  box-shadow: 0 8px 24px rgba(185, 28, 28, 0.12);
  border-color: rgba(185, 28, 28, 0.25);
}

.faq-accordion .faq-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  padding: 1rem 1.25rem;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  transition: background 0.2s ease, color 0.2s ease;
}
.faq-accordion .faq-title:hover {
  background: #fef2f2;
}
.faq-accordion .faq-card.is-open .faq-title {
  background: #fef2f2;
  color: #b91c1c;
}

.faq-accordion .faq-title-text {
  flex: 1;
  line-height: 1.4;
}

.faq-accordion .faq-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #b91c1c;
  color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, background 0.2s ease, color 0.2s ease;
}
.faq-accordion .faq-card.is-open .faq-icon {
  transform: rotate(180deg);
  background: #b91c1c;
  color: #fff;
}

.faq-accordion .faq-chevron {
  display: block;
}

/* Left accent bar */
.faq-accordion .faq-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #b91c1c;
  transition: background 0.25s ease;
}
.faq-accordion .faq-card.is-open::before {
  background: var(--faq-accent);
}

.faq-accordion .faq-answer {
  overflow: hidden;
  transition: height 0.3s ease;
}
.faq-accordion .faq-answer.hidden {
  display: none;
}
.faq-accordion .faq-answer:not(.hidden) {
  display: block;
}

.faq-accordion .faq-answer-inner {
  padding: 1rem 1.25rem;
  color: #4b5563;
  line-height: 1.6;
  font-size: 0.9375rem;
}

/* ===== Agent popup ===== */
.agent-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.agent-popup-open .agent-popup-overlay {
  display: block;
  opacity: 1;
}

.agent-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow-y: auto;
  padding: 2rem 1rem 4rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

body.agent-popup-open .agent-popup {
  display: block;
  opacity: 1;
  visibility: visible;
}

.agent-popup .inner-block {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 2.5rem;
  max-width: 60rem;
  margin: 2rem auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
}

.agent-popup-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  color: #374151;
  transition: background 0.2s ease, color 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 10000;
}

.agent-popup-close:hover {
  background: #fef2f2;
  color: #b91c1c;
  border-color: rgba(185, 28, 28, 0.3);
}

/* Logos section */
.logos h2, .works-stats-header h2, .works-stats-header p, .footer-column h5, .card-back h5{
  color: #fff;
}


/* why choose */
.why-choose h5{
  margin: 0 0 0.125rem 0;
}