.elementor-kit-6{--e-global-color-primary:#8D1914;--e-global-color-secondary:#7E041F;--e-global-color-text:#111827;--e-global-color-accent:#D4AF37;--e-global-color-4c7088b:#B02220;--e-global-color-4cfade7:#F9FAFB;--e-global-color-94564c0:#E5E7EB;--e-global-color-c21fd2f:#FFFFFF;--e-global-typography-primary-font-family:"Montserrat";--e-global-typography-primary-font-weight:700;--e-global-typography-secondary-font-family:"Poppins";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Poppins";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Montserrat";--e-global-typography-accent-font-weight:800;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS *//* ==========================================================================
   Ruby Solutions — Elementor Custom CSS
   Production-ready styles for components Elementor can't handle natively.
   ========================================================================== */


/* ==========================================================================
   1. Navbar: Transparent → Sticky Transition
   ========================================================================== */

/* Default transparent state */
.navbar-transparent .logo-color { display: none; }
.navbar-transparent .logo-white { display: block; }

/* When Elementor sticky kicks in */
.elementor-sticky--active .navbar-transparent {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.elementor-sticky--active .navbar-transparent .nav-link {
  color: #6b7280 !important;
}

.elementor-sticky--active .navbar-transparent .nav-link:hover {
  color: #111827 !important;
}

.elementor-sticky--active .navbar-transparent .nav-link.active {
  color: #8d1914 !important;
}

.elementor-sticky--active .logo-white { display: none !important; }
.elementor-sticky--active .logo-color { display: block !important; }


/* ==========================================================================
   2. Partners Marquee — Infinite Scroll
   ========================================================================== */

.marquee-wrapper {
  overflow: hidden;
  position: relative;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 96px;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.marquee-track {
  display: flex;
  gap: 16px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  flex-shrink: 0;
  padding: 14px 28px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  color: #9ca3af;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  min-width: 150px;
  text-align: center;
  transition: all 0.3s;
}

.marquee-item:hover {
  border-color: rgba(141, 25, 20, 0.25);
  background: rgba(141, 25, 20, 0.03);
  color: #8d1914;
}


/* ==========================================================================
   3. Section Tag — Uppercase Label Above H2
   ========================================================================== */

.section-tag {
  display: inline-block;
  color: #8d1914;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 12px;
}


/* ==========================================================================
   4. Hero Badge Pill
   ========================================================================== */

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 1);
  background: transparent;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.hero-badge .pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8d1914;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.5; }
}


/* ==========================================================================
   5. Card Hover Effects
   ========================================================================== */

.ruby-card {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: white;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  overflow: hidden;
}

.ruby-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  border-color: rgba(141, 25, 20, 0.2);
}


/* ==========================================================================
   6. Button Ruby Style
   ========================================================================== */

.btn-ruby {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: #7e041f;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-ruby:hover {
  background: #b02220;
  box-shadow: 0 25px 50px -12px rgba(141, 25, 20, 0.4);
  transform: translateY(-2px);
  color: white;
}

.btn-ruby-lg {
  padding: 20px 40px;
  font-size: 18px;
  border-radius: 16px;
}

.btn-ruby-lg:hover {
  transform: translateY(-6px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
  color: white;
}


/* ==========================================================================
   7. Stats Counter Style
   ========================================================================== */

.stat-counter .elementor-counter-number-wrapper {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #8d1914;
}

.stat-counter .elementor-counter-title {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7280;
}


/* ==========================================================================
   8. Testimonial Card
   ========================================================================== */

.testimonial-card {
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: all 0.4s;
}

.testimonial-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  border-color: rgba(141, 25, 20, 0.2);
}

.testimonial-card .stat-banner {
  background: #8d1914;
  padding: 12px 20px;
}

.testimonial-card .stat-banner p {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}


/* ==========================================================================
   9. FAQ Accordion Custom Styling
   ========================================================================== */

.ruby-faq .elementor-accordion-item {
  border: 1px solid #e5e7eb !important;
  border-radius: 16px !important;
  overflow: hidden;
  margin-bottom: 12px;
  background: white;
}

.ruby-faq .elementor-tab-title {
  padding: 20px 24px !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  color: #1f2937 !important;
}

.ruby-faq .elementor-tab-title:hover {
  background: #f9fafb;
}

.ruby-faq .elementor-tab-content {
  padding: 0 24px 20px !important;
  border-top: 1px solid #f3f4f6;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.625;
}

.ruby-faq .elementor-accordion-icon {
  color: #9ca3af !important;
}


/* ==========================================================================
   10. General Utility Classes
   ========================================================================== */

/* Text opacity helpers for dark backgrounds */
.text-white-75 { color: rgba(255, 255, 255, 0.75) !important; }
.text-white-65 { color: rgba(255, 255, 255, 0.65) !important; }
.text-white-60 { color: rgba(255, 255, 255, 0.60) !important; }
.text-white-55 { color: rgba(255, 255, 255, 0.55) !important; }
.text-white-40 { color: rgba(255, 255, 255, 0.40) !important; }
.text-white-30 { color: rgba(255, 255, 255, 0.30) !important; }
.text-white-25 { color: rgba(255, 255, 255, 0.25) !important; }

/* Ruby accent color for inline spans */
.text-ruby { color: #8d1914 !important; }

/* Avatars stacked */
.avatar-stack {
  display: flex;
}

.avatar-stack img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #111827;
  margin-left: -12px;
}

.avatar-stack img:first-child {
  margin-left: 0;
}/* End custom CSS */