/* ==========================================================================
   Trustfox Solutions - Enterprise Modern Design System
   Color Palette:
   Primary: #C8102E (Trustfox Red)
   Primary Hover: #900B20
   Dark Accent: #1E293B
   Light Background: #F8FAFC
   Light Footer / Surface: #F1F5F9
   Border: #E2E8F0
   Text Dark: #1E293B
   Text Muted: #64748B
   ========================================================================== */

:root {
  --tf-primary: #C8102E;
  --tf-primary-hover: #900B20;
  --tf-primary-light: rgba(200, 16, 46, 0.08);
  --tf-dark: #1E293B;
  --tf-dark-surface: #0F172A;
  --tf-bg: #F8FAFC;
  --tf-surface-light: #F1F5F9;
  --tf-white: #FFFFFF;
  --tf-border: #E2E8F0;
  --tf-text: #334155;
  --tf-text-dark: #0F172A;
  --tf-text-muted: #64748B;
  --tf-accent-blue: #2563EB;
  --tf-radius-sm: 8px;
  --tf-radius-md: 12px;
  --tf-radius-lg: 16px;
  --tf-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
  --tf-shadow-md: 0 6px 16px rgba(0, 0, 0, 0.06);
  --tf-shadow-lg: 0 12px 28px rgba(0, 0, 0, 0.1);
  --tf-shadow-hover: 0 16px 32px rgba(200, 16, 46, 0.14);
  --tf-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset & Base Styles */
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--tf-bg);
  color: var(--tf-text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--tf-text-dark);
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  transition: var(--tf-transition);
}

/* --------------------------------------------------------------------------
   Top Bar Header (Clean Light Design - No Black)
   -------------------------------------------------------------------------- */
.top-bar {
  background-color: var(--tf-white);
  color: var(--tf-text);
  font-size: 0.875rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--tf-border);
}

.top-bar a {
  color: var(--tf-text-dark);
  font-weight: 500;
}

.top-bar a:hover {
  color: var(--tf-primary);
}

.top-bar .top-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-bar i {
  color: var(--tf-primary);
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   Sticky Enterprise Navbar & Prominent Logo
   -------------------------------------------------------------------------- */
.navbar-trustfox {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-top: 4px solid var(--tf-primary);
  border-bottom: 1px solid var(--tf-border);
  padding: 14px 0;
  transition: var(--tf-transition);
  box-shadow: var(--tf-shadow-sm);
}

.navbar-trustfox.scrolled {
  box-shadow: var(--tf-shadow-md);
  padding: 10px 0;
}

/* Prominent Logo & Brand Name Highlight */
.navbar-brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-brand img {
  height: 85px; /* Prominent header logo */
  width: auto;
  object-fit: contain;
  transition: var(--tf-transition);
}

.brand-text-highlight {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text-main {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--tf-primary);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.brand-text-sub {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--tf-text-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navbar-trustfox .nav-link {
  color: var(--tf-text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 18px !important;
  border-radius: var(--tf-radius-sm);
  transition: var(--tf-transition);
}

.navbar-trustfox .nav-link:hover,
.navbar-trustfox .nav-link.active {
  color: var(--tf-primary);
  background-color: var(--tf-primary-light);
}

/* Dropdown Menu */
.navbar-trustfox .dropdown-menu {
  border: 1px solid var(--tf-border);
  border-radius: var(--tf-radius-md);
  box-shadow: var(--tf-shadow-lg);
  padding: 12px;
  margin-top: 10px;
  background-color: var(--tf-white);
}

.navbar-trustfox .dropdown-header-custom {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--tf-primary);
  padding: 6px 12px;
}

.navbar-trustfox .dropdown-item {
  color: var(--tf-text-dark);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 9px 14px;
  border-radius: 6px;
  transition: var(--tf-transition);
}

.navbar-trustfox .dropdown-item:hover {
  background-color: var(--tf-primary-light);
  color: var(--tf-primary);
  transform: translateX(4px);
}

/* Buttons */
/* Upright Phone Icon Fix */
.fa-phone, .fa-phone-alt {
  display: inline-block;
  transform: rotate(0deg) scaleX(1);
}

.btn-tf-primary {
  background-color: var(--tf-primary);
  color: var(--tf-white);
  font-weight: 600;
  padding: 10px 24px;
  border-radius: var(--tf-radius-sm);
  border: 2px solid var(--tf-primary);
  transition: var(--tf-transition);
  box-shadow: 0 4px 10px rgba(200, 16, 46, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-tf-primary:hover {
  background-color: var(--tf-primary-hover);
  border-color: var(--tf-primary-hover);
  color: var(--tf-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(200, 16, 46, 0.35);
}

.btn-tf-secondary {
  background-color: var(--tf-white);
  color: var(--tf-primary);
  font-weight: 700;
  padding: 10px 24px;
  border-radius: var(--tf-radius-sm);
  border: 2px solid var(--tf-white);
  transition: var(--tf-transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--tf-shadow-md);
}

.btn-tf-secondary:hover {
  background-color: var(--tf-primary-light);
  color: var(--tf-primary);
  border-color: var(--tf-primary);
  transform: translateY(-2px);
}

.btn-tf-outline {
  background-color: transparent;
  color: var(--tf-text-dark);
  font-weight: 600;
  padding: 10px 24px;
  border-radius: var(--tf-radius-sm);
  border: 2px solid var(--tf-border);
  transition: var(--tf-transition);
}

.btn-tf-outline:hover {
  border-color: var(--tf-primary);
  color: var(--tf-primary);
  background-color: var(--tf-primary-light);
}

.btn-tf-whatsapp {
  background-color: #25D366;
  color: white;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: var(--tf-radius-sm);
  border: 2px solid #25D366;
  transition: var(--tf-transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-tf-whatsapp:hover {
  background-color: #1EBE5D;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  background-color: #0F172A;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slider .carousel-item {
  height: 540px;
}

.hero-slider img {
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
}

.hero-overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.65) 60%, rgba(15, 23, 42, 0.3) 100%);
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(200, 16, 46, 0.2);
  border: 1px solid var(--tf-primary);
  color: #FECDD3;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  color: var(--tf-white);
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-subtitle {
  color: #E2E8F0;
  font-size: 1.15rem;
  max-width: 650px;
  margin-bottom: 30px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 35px;
}

.hero-pill {
  background-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  color: var(--tf-white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* --------------------------------------------------------------------------
   Stats Counter Bar (Real Verified Data)
   -------------------------------------------------------------------------- */
.stats-bar {
  background-color: var(--tf-white);
  border: 1px solid var(--tf-border);
  border-top: 4px solid var(--tf-primary);
  margin-top: -40px;
  position: relative;
  z-index: 10;
  border-radius: var(--tf-radius-md);
  box-shadow: var(--tf-shadow-lg);
  padding: 25px;
}

.stat-card {
  text-align: center;
  padding: 15px 10px;
}

.stat-icon {
  width: 52px;
  height: 52px;
  background-color: var(--tf-primary-light);
  color: var(--tf-primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--tf-text-dark);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--tf-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* --------------------------------------------------------------------------
   Section Headers
   -------------------------------------------------------------------------- */
.section-title-wrap {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px auto;
}

.sub-title {
  color: var(--tf-primary);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  display: block;
}

.main-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--tf-text-dark);
}

.section-desc {
  color: var(--tf-text-muted);
  font-size: 1.05rem;
  margin-top: 12px;
}

/* --------------------------------------------------------------------------
   Cards (Services, Why Choose Us, Solutions, Projects)
   -------------------------------------------------------------------------- */
.tf-card {
  background: var(--tf-white);
  border-radius: var(--tf-radius-md);
  border: 1px solid var(--tf-border);
  box-shadow: var(--tf-shadow-sm);
  transition: var(--tf-transition);
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.tf-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--tf-shadow-hover);
  border-color: rgba(200, 16, 46, 0.35);
}

.tf-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.tf-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--tf-transition);
}

.tf-card:hover .tf-card-img-wrap img {
  transform: scale(1.05);
}

.tf-card-icon-badge {
  position: absolute;
  bottom: -20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--tf-primary);
  color: var(--tf-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 2;
}

.tf-card-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.tf-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--tf-text-dark);
}

.tf-card-text {
  color: var(--tf-text-muted);
  font-size: 0.95rem;
  margin-bottom: 0px;
  flex-grow: 1;
}

.tf-card-body button {
  display: none !important;
}

.tf-card-footer {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid var(--tf-border);
}

/* Why Choose Us Feature Cards */
.feature-card {
  background-color: var(--tf-white);
  border-radius: var(--tf-radius-md);
  padding: 28px 22px;
  border: 1px solid var(--tf-border);
  box-shadow: var(--tf-shadow-sm);
  transition: var(--tf-transition);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--tf-shadow-hover);
  border-color: rgba(200, 16, 46, 0.35);
}

.feature-icon {
  width: 54px;
  height: 54px;
  background-color: var(--tf-primary-light);
  color: var(--tf-primary);
  border-radius: var(--tf-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  transition: var(--tf-transition);
}

.feature-card:hover .feature-icon {
  background-color: var(--tf-primary);
  color: var(--tf-white);
}

/* --------------------------------------------------------------------------
   Brands / Clients Grayscale Grid
   -------------------------------------------------------------------------- */
.brand-logo-card {
  background: var(--tf-white);
  border-radius: var(--tf-radius-sm);
  border: 1px solid var(--tf-border);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 95px;
  transition: var(--tf-transition);
}

.brand-logo-card img {
  max-height: 52px;
  max-width: 85%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: var(--tf-transition);
}

.brand-logo-card:hover {
  box-shadow: var(--tf-shadow-md);
  border-color: var(--tf-primary);
}

.brand-logo-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.testimonial-card {
  background: var(--tf-white);
  border-radius: var(--tf-radius-md);
  border: 1px solid var(--tf-border);
  padding: 28px;
  box-shadow: var(--tf-shadow-sm);
  transition: var(--tf-transition);
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--tf-shadow-md);
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--tf-text);
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--tf-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tf-primary);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   Redesigned Call To Action Banner ("Get Quote Card" - No Black)
   -------------------------------------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--tf-primary) 0%, #80081B 100%);
  color: var(--tf-white);
  border-radius: var(--tf-radius-lg);
  padding: 45px 35px;
  box-shadow: 0 14px 30px rgba(200, 16, 46, 0.25);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   Contact Section
   -------------------------------------------------------------------------- */
.contact-card {
  background: var(--tf-white);
  border-radius: var(--tf-radius-md);
  border: 1px solid var(--tf-border);
  padding: 35px;
  box-shadow: var(--tf-shadow-md);
}

.contact-info-item {
  display: flex;
  gap: 18px;
  margin-bottom: 25px;
}

.contact-info-icon {
  width: 46px;
  height: 46px;
  background-color: var(--tf-primary-light);
  color: var(--tf-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

/* Form Styling */
.form-control, .form-select {
  padding: 12px 16px;
  border-radius: var(--tf-radius-sm);
  border: 1px solid var(--tf-border);
  font-size: 0.95rem;
}

.form-control:focus, .form-select:focus {
  border-color: var(--tf-primary);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.15);
}

/* --------------------------------------------------------------------------
   Redesigned Corporate Footer (Clean Light Corporate Surface - No Black)
   -------------------------------------------------------------------------- */
.footer-enterprise {
  background-color: var(--tf-surface-light);
  color: var(--tf-text);
  padding-top: 65px;
  padding-bottom: 25px;
  border-top: 4px solid var(--tf-primary);
}

.footer-enterprise img {
  max-height: 85px !important;
  height: auto;
}

.footer-enterprise h4, .footer-enterprise h5 {
  color: var(--tf-text-dark);
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-enterprise ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-enterprise ul li {
  margin-bottom: 10px;
}

.footer-enterprise ul li a {
  color: var(--tf-text);
  font-size: 0.925rem;
  font-weight: 500;
  transition: var(--tf-transition);
}

.footer-enterprise ul li a:hover {
  color: var(--tf-primary);
  padding-left: 5px;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  background-color: var(--tf-white);
  border: 1px solid var(--tf-border);
  color: var(--tf-primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  transition: var(--tf-transition);
  box-shadow: var(--tf-shadow-sm);
}

.footer-social-icon:hover {
  background-color: var(--tf-primary);
  border-color: var(--tf-primary);
  color: var(--tf-white);
  transform: translateY(-3px);
  box-shadow: var(--tf-shadow-md);
}

.footer-bottom {
  border-top: 1px solid var(--tf-border);
  margin-top: 45px;
  padding-top: 25px;
  font-size: 0.875rem;
  color: var(--tf-text-muted);
}

/* --------------------------------------------------------------------------
   Floating Back To Top & WhatsApp
   -------------------------------------------------------------------------- */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.btn-float {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: var(--tf-transition);
}

.btn-float:hover {
  transform: scale(1.1);
  color: white;
}

.btn-float-whatsapp {
  background-color: #25D366;
}

.btn-float-backtop {
  background-color: var(--tf-primary);
  opacity: 0;
  visibility: hidden;
}

.btn-float-backtop.show {
  opacity: 1;
  visibility: visible;
}

/* Subpage Hero */
.subpage-hero {
  background: linear-gradient(135deg, var(--tf-text-dark) 0%, #1E293B 100%);
  color: var(--tf-white);
  padding: 55px 0;
  position: relative;
}

.subpage-hero h1 {
  color: var(--tf-white);
  font-size: 2.35rem;
  font-weight: 800;
}

.breadcrumb-custom .breadcrumb-item a {
  color: #CBD5E1;
}

.breadcrumb-custom .breadcrumb-item.active {
  color: #FECDD3;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.15rem;
  }
  .navbar-brand img {
    height: 52px;
  }
  .brand-text-main {
    font-size: 1.25rem;
  }
  .stats-bar {
    margin-top: 20px;
  }
  .cta-banner {
    padding: 35px 25px;
  }
}

@media (max-width: 575.98px) {
  .top-bar {
    display: none;
  }
  .hero-title {
    font-size: 1.7rem;
  }
}

/* Modal Header Title Color Fix */
.modal-header .modal-title {
  color: #ffffff !important;
}

/* Footer Office Text Color Fix - Force all text & links inside footer contact office column to pure black */
.footer-office-col,
.footer-office-col *,
.footer-office-black,
.footer-office-black *,
.footer-enterprise .footer-office-col *,
.footer-enterprise .footer-office-black * {
  color: #000000 !important;
}

/* Right-aligned Read More button in About section */
.about-readmore-right {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

/* Continuous Marquee Ticker Styles for OEMs */
.marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 12px 0;
  background: #ffffff;
  border: 1px solid var(--tf-border);
  border-radius: var(--tf-radius-md);
  box-shadow: var(--tf-shadow-sm);
}

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

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

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

.marquee-content:hover {
  animation-play-state: paused;
}

.marquee-content-reverse {
  animation: marquee-slide-reverse 24s linear infinite;
}

.marquee-content-reverse:hover {
  animation-play-state: paused;
}

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

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

.oem-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background-color: var(--tf-surface-light);
  border: 1px solid var(--tf-border);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--tf-text-dark);
  white-space: nowrap;
  transition: var(--tf-transition);
}

.oem-badge-item:hover {
  background-color: var(--tf-primary);
  color: #ffffff;
  border-color: var(--tf-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.25);
}

.oem-badge-office {
  background-color: #F0F4F8;
  border-color: #CBD5E1;
  color: #0F172A;
}

.oem-badge-office:hover {
  background-color: #2563EB;
  color: #ffffff;
  border-color: #2563EB;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}



