/* ==========================================================================
   Arch Plastics Custom Unified Theme & Responsive Mega Menu Stylesheet
   ========================================================================== */

:root {
  /* Premium Palette */
  --pbmit-global-color: #2F7FC2 !important;      /* Primary Blue */
  --pbmit-secondary-color: #333366 !important;   /* Contrast Deep Violet/Blue */
  --pbmit-accent-red: #DB251D !important;        /* Accent Red */
  --pbmit-blackish-color: #020223 !important;    /* Deep Footers/Overlays (black shade) */
  --pbmit-light-color: #f6f9fc !important;       /* Light Neutrals (grey shade) */
  --pbmit-link-color-hover: #2F7FC2 !important;  /* Active State Blue */
  --pbmit-heading-color: #333366 !important;     /* Heading Contrast */
  --pbmit-white-color: #ffffff !important;       /* Defined globally for consistency across all subpages */
  --pbmit-btn-bg-hover: #333366 !important;
}

/* Base Adjustments & Color Alignment overrides */
h1, h2, h3, h4, h5, h6, .pbmit-title {
  color: var(--pbmit-heading-color) !important;
}

/* Ensure headings inside text-white, bg-dark, section-lgx (dark testimonials), and footer containers correctly override to white */
.text-white h1, .text-white h2, .text-white h3, .text-white h4, .text-white h5, .text-white h6,
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4, .bg-dark h5, .bg-dark h6,
.section-lgx h1, .section-lgx h2, .section-lgx h3, .section-lgx h4, .section-lgx h5, .section-lgx h6, .section-lgx .pbmit-title, .section-lgx .pbmit-subtitle,
.site-footer h1, .site-footer h2, .site-footer h3, .site-footer h4, .site-footer h5, .site-footer h6,
.site-footer .widget-title, .site-footer .pbmit-footer-big-area h3,
.pbmit-footer-big-area-wrapper h1, .pbmit-footer-big-area-wrapper h2, .pbmit-footer-big-area-wrapper h3,
.pbmit-bg-color-blackish h1, .pbmit-bg-color-blackish h2, .pbmit-bg-color-blackish h3,
.position-relative[style*="background"] h2, .position-relative[style*="background"] h3 {
  color: #ffffff !important;
}


a:hover {
  color: var(--pbmit-global-color) !important;
}

.text-primary, .text-warning {
  color: var(--pbmit-global-color) !important;
}

/* Button overrides for styling coherence */
.pbmit-btn, .btn-primary, .btn-warning {
  background-color: var(--pbmit-global-color) !important;
  border-color: var(--pbmit-global-color) !important;
  color: #fff !important;
  transition: all 0.3s ease-in-out;
  border-radius: 8px !important;
}

.pbmit-btn:hover, .btn-primary:hover, .btn-warning:hover {
  background-color: var(--pbmit-secondary-color) !important;
  border-color: var(--pbmit-secondary-color) !important;
  color: #fff !important;
}

.btn-outline-primary {
  border-color: var(--pbmit-global-color) !important;
  color: var(--pbmit-global-color) !important;
  border-radius: 8px !important;
}

.btn-outline-primary:hover {
  background-color: var(--pbmit-global-color) !important;
  color: #fff !important;
}

/* Custom Nav & Megamenu positioning */
.site-header-menu {
  position: relative;
}

.site-navigation ul.navigation > li.megamenu {
  position: static !important; /* Forces the absolute child to span header menu container width */
}

/* Megamenu Content layout */
.megamenu-content {
  position: absolute;
  top: 100%;
  left: 15px;
  right: 15px;
  width: calc(100% - 30px);
  background-color: #ffffff;
  border-top: 3px solid var(--pbmit-global-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  padding: 35px 40px;
  z-index: 1000;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 0 0 10px 10px;
}

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

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

/* Columns styling */
.megamenu-col {
  display: flex;
  flex-direction: column;
}

.megamenu-title {
  font-family: var(--pbmit-heading-typography-font-family), sans-serif;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  color: var(--pbmit-secondary-color) !important;
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 8px;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.megamenu-title i {
  color: var(--pbmit-global-color);
  margin-right: 8px;
  font-size: 14px;
}

.megamenu-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.megamenu-list li {
  padding: 0 !important;
  margin-bottom: 10px !important;
}

.megamenu-list li a {
  font-family: var(--pbmit-body-typography-font-family), sans-serif;
  font-size: 14px !important;
  color: #555555 !important;
  line-height: 20px !important;
  transition: all 0.2s ease-in-out;
  display: block;
  font-weight: 400 !important;
  text-transform: none !important;
}

.megamenu-list li a:hover {
  color: var(--pbmit-global-color) !important;
  padding-left: 5px;
}

/* Desktop Hover behavior */
@media (min-width: 1200px) {
  .site-navigation ul.navigation > li.megamenu:hover > .megamenu-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* Mobile Viewport adaptations (< 1200px) */
@media (max-width: 1199px) {
  /* Force sitemenu to relative for layout alignment */
  .site-header-menu {
    position: static;
  }
  
  .megamenu-content {
    display: none;
    position: static !important;
    width: 100% !important;
    padding: 15px 20px !important;
    box-shadow: none !important;
    border-top: none !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    background-color: #fafafa !important;
    border-radius: 0;
  }
  
  .megamenu-content.open {
    display: block !important;
  }
  
  .megamenu-col {
    margin-bottom: 15px;
  }
  
  .megamenu-title {
    font-size: 14px !important;
    margin-bottom: 10px;
  }
  
  .megamenu-list li a {
    padding: 5px 0 !important;
  }
  
  /* Overrides for responsive alignment of site branding and mobile menus */
  .logo-img {
    max-height: 45px !important;
  }
  
  .site-header-menu.activee {
    background-color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
  }
}

/* ==========================================================================
   Decent & Premium Footer Overrides
   ========================================================================== */
.site-footer {
  background-color: #0b1e36 !important; /* Unified solid decent Navy background */
  color: rgba(255, 255, 255, 0.75) !important;
  font-family: var(--pbmit-body-typography-font-family), sans-serif;
}

.site-footer h1, 
.site-footer h2, 
.site-footer h3, 
.site-footer h4, 
.site-footer h5, 
.site-footer h6,
.site-footer .pbmit-title,
.site-footer .widget-title {
  color: #ffffff !important; /* Force footer headings to white */
  font-family: var(--pbmit-heading-typography-font-family), sans-serif;
}

.site-footer .widget-title {
  font-size: 18px !important;
  font-weight: 700 !important;
  border-bottom: 2px solid var(--pbmit-global-color) !important;
  padding-bottom: 8px !important;
  margin-bottom: 20px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.75) !important;
  transition: all 0.2s ease-in-out !important;
}

.site-footer a:hover {
  color: var(--pbmit-global-color) !important; /* Hover blue */
  padding-left: 3px !important;
}

.site-footer .pbmit-footer-big-area-wrapper {
  background-color: #081424 !important; /* Slightly darker navy banner */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.site-footer .pbmit-footer-big-area h3 {
  color: #ffffff !important;
  font-size: 24px !important;
  font-weight: 600 !important;
}

.site-footer .pbmit-consulting-footer-newsletter {
  position: relative;
  margin-top: 15px;
}

.site-footer .pbmit-consulting-footer-newsletter input {
  background-color: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
  padding: 12px 50px 12px 15px !important;
  border-radius: 8px !important;
  width: 100% !important;
}

.site-footer .pbmit-consulting-footer-newsletter button {
  background-color: var(--pbmit-global-color) !important;
  color: #ffffff !important;
  border-radius: 0 8px 8px 0 !important;
  height: 100% !important;
  position: absolute;
  right: 0;
  top: 0;
  width: 45px;
  border: none !important;
  transition: background-color 0.2s ease;
}

.site-footer .pbmit-consulting-footer-newsletter button:hover {
  background-color: #ffffff !important;
  color: var(--pbmit-secondary-color) !important;
}

.site-footer .pbmit-contact-widget-lines {
  color: rgba(255, 255, 255, 0.8) !important;
}

.site-footer .pbmit-footer-text-area {
  background-color: #050e18 !important; /* Deepest dark background for copyrights area */
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  padding: 20px 0 !important;
}

.site-footer .pbmit-footer-copyright-text-area {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 14px !important;
}

.site-footer .pbmit-footer-icon h2 {
  color: var(--pbmit-secondary-color) !important; /* Force navy blue for 14+ on the white circle */
  font-weight: 700 !important;
}

.site-footer .pbmit-footer-right-svg svg text,
.site-footer .pbmit-footer-right-svg svg textpath,
.site-footer .pbmit-footer-right-svg textpath {
  fill: #ffffff !important; /* Force white for rotating text path */
}

/* ==========================================================================
   Homepage "Quality That Protects" (Service Style 4) Section Overrides
   ========================================================================== */
.pbmit-element-service-style-4 .swiper-hover-slide-nav {
  background-color: #020223 !important; /* Deep solid blackish background */
  padding: 70px 0 !important;
}

.pbmit-element-service-style-4 .pbmit-heading-subheading h4.pbmit-subtitle {
  color: var(--pbmit-global-color) !important; /* Primary blue for subtitle */
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
}

.pbmit-element-service-style-4 .pbmit-heading-subheading h2.pbmit-title {
  color: #ffffff !important; /* White title */
  font-weight: 700 !important;
}

.pbmit-element-service-style-4 .swiper-hover-slide-nav ul li h3 a {
  color: #ffffff !important; /* White service titles */
  font-weight: 600 !important;
}

.pbmit-element-service-style-4 .swiper-hover-slide-nav ul li:hover h3 a {
  color: var(--pbmit-global-color) !important; /* Hover blue */
}

.pbmit-element-service-style-4 .pbmit-serv-cat a {
  color: var(--pbmit-global-color) !important; /* Category link */
  font-weight: 500 !important;
}

.pbmit-element-service-style-4 .pbmit-short-description {
  color: rgba(255, 255, 255, 0.75) !important; /* Legible description text */
  font-weight: 400 !important;
}

.pbmit-element-service-style-4 .pbmit-title-box-wrap svg line {
  stroke: rgba(255, 255, 255, 0.5) !important;
}

.pbmit-element-service-style-4 .swiper-hover-slide-nav li:hover .pbmit-title-box-wrap svg line {
  stroke: var(--pbmit-global-color) !important;
}

/* ==========================================================================
   Decent & Premium Breadcrumbs & Title Bar overrides
   ========================================================================== */
.pbmit-title-bar-wrapper {
  background-color: var(--pbmit-secondary-color) !important; /* Deep Navy background */
  background-image: none !important; /* Clean solid look */
  padding: 60px 0 !important;
  border-bottom: 3px solid var(--pbmit-global-color) !important;
  position: relative !important;
}

.pbmit-title-bar-content {
  padding: 0 !important;
  min-height: auto !important;
  display: block !important;
}

.pbmit-title-bar-content-inner {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 15px !important;
}

.pbmit-title-bar-wrapper .pbmit-tbar-title {
  color: #ffffff !important; /* White Page Title */
  font-size: 30px !important;
  line-height: 40px !important;
  margin: 0 !important;
  font-weight: 700 !important;
}

.pbmit-title-bar-wrapper .pbmit-breadcrumb-inner {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.pbmit-title-bar-wrapper .pbmit-breadcrumb-inner span,
.pbmit-title-bar-wrapper .pbmit-breadcrumb-inner a,
.pbmit-title-bar-wrapper .pbmit-breadcrumb-inner .sep {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
}

.pbmit-title-bar-wrapper .pbmit-breadcrumb-inner a:hover {
  color: var(--pbmit-global-color) !important;
  text-decoration: none !important;
}

.pbmit-title-bar-wrapper .pbmit-breadcrumb-inner i {
  color: var(--pbmit-global-color) !important;
  font-size: 12px !important;
}

/* ==========================================================================
   Homepage "Leader in Plastic Packaging" (restaurant-iconbox-section) Visibility
   ========================================================================== */
.restaurant-iconbox-section {
  background-color: #020223 !important; /* Force solid blackish background */
}

.restaurant-iconbox-section .pbmit-title {
  color: #ffffff !important; /* Force white color for title */
  font-weight: 700 !important;
}

.restaurant-iconbox-section .pbmit-heading-desc {
  color: rgba(255, 255, 255, 0.75) !important; /* Light white description */
  font-size: 16px !important;
  line-height: 26px !important;
}

.restaurant-iconbox-section .pbmit-number-rotate {
  color: var(--pbmit-global-color) !important; /* Primary blue for numbers */
  font-weight: 700 !important;
}

.restaurant-iconbox-section .pbmit-fid-sub, 
.restaurant-iconbox-section .pbmit-fid-sub span,
.restaurant-iconbox-section .pbmit-fid-sub sup {
  color: var(--pbmit-global-color) !important;
}

.restaurant-iconbox-section .pbmit-fid-title,
.restaurant-iconbox-section .pbmit-fid-title span {
  color: #ffffff !important; /* White labels for numbers */
  font-size: 15px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

/* ==========================================================================
   Inner Pages Solid White Header Overrides (Ensures logo & menus are visible)
   ========================================================================== */
body.inner-page .site-header.header-style-11 {
  background-color: #ffffff !important;
  position: relative !important;
  width: 100% !important;
}

body.inner-page .site-header.header-style-11 .pbmit-header-overlay {
  background-color: #ffffff !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05) !important;
  position: relative !important;
  top: 0 !important;
}

body.inner-page .site-header.header-style-11 .site-header-menu {
  position: relative !important;
  background-color: #ffffff !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

body.inner-page .site-header.header-style-11 .site-navigation ul.navigation > li > a {
  color: var(--pbmit-secondary-color) !important; /* Force dark navy text for links */
}

body.inner-page .site-header.header-style-11 .site-navigation ul.navigation > li > a:hover,
body.inner-page .site-header.header-style-11 .site-navigation ul.navigation > li.active > a {
  color: var(--pbmit-global-color) !important; /* Primary blue for active/hover links */
}

/* ==========================================================================
   Global Mobile Responsiveness and Viewport Constraints Fix
   ========================================================================== */
html, body, .page-wrapper {
  overflow-x: hidden !important;
  width: 100% !important;
  position: relative !important;
  box-sizing: border-box !important;
}

*, *:before, *:after {
  box-sizing: inherit !important;
}

/* Force offscreen elements to clip cleanly */
.pbmit-slider-area, rs-module-wrap, rs-module, .footer {
  overflow: hidden !important;
}

/* Tailwind JIT Simulators for static CDNs */
.bg-\[\#333366\] { background-color: #333366 !important; }
.hover\:bg-\[\#2F7FC2\]:hover { background-color: #2F7FC2 !important; color: #ffffff !important; }
.bg-\[\#333366\]:hover,
.form-submit:hover,
a.text-white:hover,
button.text-white:hover {
  color: #ffffff !important;
}
.text-\[\#2F7FC2\] { color: #2F7FC2 !important; }
.text-\[\#DB251D\] { color: #DB251D !important; }
.text-\[\#333366\] { color: #333366 !important; }
.text-\[\#f9fafb\] { color: #f9fafb !important; }
.bg-\[\#333366\]\/10 { background-color: rgba(51, 51, 102, 0.1) !important; }
.bg-\[\#DB251D\]\/10 { background-color: rgba(219, 37, 29, 0.1) !important; }
.bg-\[\#2F7FC2\]\/10 { background-color: rgba(47, 127, 194, 0.1) !important; }
.border-\[\#333366\]\/30 { border-color: rgba(51, 51, 102, 0.3) !important; }
.border-\[\#2F7FC2\]\/20 { border-color: rgba(47, 127, 194, 0.2) !important; }
.shadow-\[\#333366\]\/30 { box-shadow: 0 10px 15px -3px rgba(51, 51, 102, 0.3) !important; }
.shadow-\[\#333366\]\/20 { box-shadow: 0 4px 6px -1px rgba(51, 51, 102, 0.2) !important; }
.focus\:border-\[\#2F7FC2\]:focus { border-color: #2F7FC2 !important; }

/* Gradient backgrounds simulating arbitrary dark gradients */
.from-\[\#090b16\] {
  --tw-gradient-from: #090b16 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(9, 11, 22, 0)) !important;
}
.via-\[\#0e1227\] {
  --tw-gradient-stops: var(--tw-gradient-from), #0e1227, var(--tw-gradient-to, rgba(14, 18, 39, 0)) !important;
}
.to-\[\#090b16\] {
  --tw-gradient-to: #090b16 !important;
}
.from-\[\#333366\]\/10 {
  --tw-gradient-from: rgba(51, 51, 102, 0.10) !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 51, 102, 0)) !important;
}
.to-\[\#DB251D\]\/10 {
  --tw-gradient-to: rgba(219, 37, 29, 0.10) !important;
}

/* Opacity utilities for Tailwind CDN */
.bg-white\/5 { background-color: rgba(255, 255, 255, 0.05) !important; }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.10) !important; }
.bg-white\/20 { background-color: rgba(255, 255, 255, 0.20) !important; }
.hover\:bg-white\/10:hover { background-color: rgba(255, 255, 255, 0.10) !important; }
.border-white\/5 { border-color: rgba(255, 255, 255, 0.05) !important; }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.10) !important; }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.2) !important; }

/* ==========================================================================
   Sticky Header Custom Styles
   ========================================================================== */
.site-header.sticky-active,
body.inner-page .site-header.header-style-11.sticky-active {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
  animation: pbmit-slide-down 0.4s ease-out forwards;
}

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

/* Ensure smooth transition for key header elements */
.site-header .site-header-menu,
.site-header .pbmit-header-overlay,
.site-header .site-navigation ul.navigation > li > a,
.site-header .site-branding img,
.site-header .pbmit-right-box .pbmit-header-search-btn a i {
  transition: all 0.3s ease-in-out !important;
}

/* Force solid white background when sticky is active */
body.inner-page .site-header.header-style-11.sticky-active .site-header-menu,
body.inner-page .site-header.header-style-11.sticky-active .pbmit-header-overlay,
.site-header.sticky-active .site-header-menu,
.site-header.sticky-active .pbmit-header-overlay {
  background-color: #ffffff !important;
  position: relative !important;
  top: 0 !important;
  box-shadow: none !important;
}

/* Make link text dark navy and reduce link height to look compact when sticky */
body.inner-page .site-header.header-style-11.sticky-active .site-navigation ul.navigation > li > a,
.site-header.sticky-active .site-navigation ul.navigation > li > a {
  color: #333366 !important;
  height: 80px !important;
  line-height: 80px !important;
}

body.inner-page .site-header.header-style-11.sticky-active .site-navigation ul.navigation > li > a:hover,
body.inner-page .site-header.header-style-11.sticky-active .site-navigation ul.navigation > li.active > a,
.site-header.sticky-active .site-navigation ul.navigation > li > a:hover,
.site-header.sticky-active .site-navigation ul.navigation > li.active > a {
  color: #2F7FC2 !important;
}

/* Sticky logo size restriction */
body.inner-page .site-header.header-style-11.sticky-active .site-branding img,
.site-header.sticky-active .site-branding img {
  max-height: 50px !important;
}

/* Sticky search icon and hamburger color correction */
body.inner-page .site-header.header-style-11.sticky-active .pbmit-right-box .pbmit-header-search-btn a i,
body.inner-page .site-header.header-style-11.sticky-active .navbar-toggler i,
.site-header.sticky-active .pbmit-right-box .pbmit-header-search-btn a i,
.site-header.sticky-active .navbar-toggler i {
  color: #333366 !important;
}

/* ==========================================================================
   Tailwind JIT Simulator Overrides (Auto-Generated)
   ========================================================================== */
.bg-\[\#2F7FC2\] { background-color: #2F7FC2 !important; }
.bg-\[\#2F7FC2\]\/10 { background-color: rgba(47, 127, 194, 0.1) !important; }
.bg-\[\#2F7FC2\]\/20 { background-color: rgba(47, 127, 194, 0.2) !important; }
.bg-\[\#2F7FC2\]\/5 { background-color: rgba(47, 127, 194, 0.05) !important; }
.bg-\[\#333366\] { background-color: #333366 !important; }
.bg-\[\#333366\]\/10 { background-color: rgba(51, 51, 102, 0.1) !important; }
.bg-\[\#333366\]\/5 { background-color: rgba(51, 51, 102, 0.05) !important; }
.bg-\[\#DB251D\]\/10 { background-color: rgba(219, 37, 29, 0.1) !important; }
.bg-\[\#DB251D\]\/5 { background-color: rgba(219, 37, 29, 0.05) !important; }
.bg-\[\#f8fafc\] { background-color: #f8fafc !important; }
.bg-\[\#ffffff\] { background-color: #ffffff !important; }
.border-\[\#2F7FC2\]\/20 { border-color: rgba(47, 127, 194, 0.2) !important; }
.border-\[\#333366\]\/20 { border-color: rgba(51, 51, 102, 0.2) !important; }
.border-\[\#333366\]\/30 { border-color: rgba(51, 51, 102, 0.3) !important; }
.focus\:border-\[\#2F7FC2\]:focus { border-color: #2F7FC2 !important; }
.from-\[\#0e0f1a\] { --tw-gradient-from: #0e0f1a !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(14, 15, 26, 0)) !important; }
.from-\[\#333366\] { --tw-gradient-from: #333366 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 51, 102, 0)) !important; }
.from-\[\#333366\]\/10 { --tw-gradient-from: rgba(51, 51, 102, 0.1) !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 51, 102, 0)) !important; }
.hover\:bg-\[\#2F7FC2\]:hover { background-color: #2F7FC2 !important; }
.hover\:bg-\[\#333366\]:hover { background-color: #333366 !important; }
.shadow-\[\#333366\]\/20 { box-shadow: 0 10px 15px -3px rgba(51, 51, 102, 0.2), 0 4px 6px -4px rgba(51, 51, 102, 0.2) !important; }
.shadow-\[\#333366\]\/30 { box-shadow: 0 10px 15px -3px rgba(51, 51, 102, 0.3), 0 4px 6px -4px rgba(51, 51, 102, 0.3) !important; }
.text-\[\#2F7FC2\] { color: #2F7FC2 !important; }
.text-\[\#2F7FC2\]\/20 { color: rgba(47, 127, 194, 0.2) !important; }
.text-\[\#333366\] { color: #333366 !important; }
.text-\[\#333366\]\/20 { color: rgba(51, 51, 102, 0.2) !important; }
.text-\[\#DB251D\] { color: #DB251D !important; }
.text-\[\#DB251D\]\/20 { color: rgba(219, 37, 29, 0.2) !important; }
.text-\[\#f9fafb\] { color: #f9fafb !important; }
.to-\[\#0e0f1a\] { --tw-gradient-to: #0e0f1a !important; }
.to-\[\#1e2238\] { --tw-gradient-to: #1e2238 !important; }
.to-\[\#DB251D\]\/10 { --tw-gradient-to: rgba(219, 37, 29, 0.1) !important; }

/* Custom Form Submit Button styling overrides for high contrast and readability */
.form-submit-btn,
button.form-submit,
.form-submit {
  background-color: #333366 !important;
  color: #ffffff !important;
  border: none !important;
  transition: all 0.2s ease !important;
}

.form-submit-btn:hover,
button.form-submit:hover,
.form-submit:hover {
  background-color: #2F7FC2 !important;
  color: #ffffff !important;
}

