/* Custom Tailwind CSS Equivalents with tw- prefix */

/* Root variables for consistency */
:root {
  --bg-blue: #182B50;
  --bg-blue-light: #2D4379;
  --text-dark: #333333;
  --text-darker: #111111;
  --text-grey: #444444;
  --text-light-grey: #888888;
  --border-color-dark: #444444;
}

/* Layout */
.tw-overflow-x-hidden {
  overflow-x: hidden;
}

.tw-fixed {
  position: fixed;
}

.tw-absolute {
  position: absolute;
}

.tw-relative {
  position: relative;
}

.tw-block {
  display: block;
}

.tw-hidden {
  display: none;
}

.tw-active {
  display: block;
}

.tw-flex {
  display: flex;
}

.tw-flex-shrink-0 {
  flex-shrink: 0;
}

.tw-items-center {
  align-items: center;
}

.tw-justify-between {
  justify-content: space-between;
}

.tw-justify-left {
  justify-content: left;
}

.tw-justify-evenly {
  justify-content: space-evenly;
}

.tw-gap-1 {
  gap: 0.25rem;
}

.tw-gap-2 {
  gap: 0.5rem;
}

.tw-gap-4 {
  gap: 1rem;
}

.tw-space-x-8 > * + * {
  margin-left: 2rem;
}

.tw-space-y-1 > * + * {
  margin-top: 0.25rem;
}

.tw-overflow-hidden {
  overflow: hidden;
}

.tw-flex-col {
  flex-direction: column;
}

.tw-flex-wrap {
  flex-wrap: wrap;
}

.tw-inline-flex {
  display: inline-flex;
}

.tw-grid {
  display: grid;
}

.tw-grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.tw-grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tw-order-1 {
  order: 1;
}

.tw-order-2 {
  order: 2;
}

.tw-inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.tw-justify-center {
  justify-content: center;
}

.tw-justify-end {
  justify-content: flex-end;
}

.tw-flex-grow {
  flex-grow: 1;
}

.tw-gap-6 {
  gap: 1.5rem;
}

.tw-gap-8 {
  gap: 2rem;
}

.tw-gap-12 {
  gap: 3rem;
}

.tw-space-y-2 > * + * {
  margin-top: 0.5rem;
}

.tw-space-y-6 > * + * {
  margin-top: 1.5rem;
}

/* Sizing */
.tw-h-16 {
  height: 4rem;
}

.tw-w-auto {
  width: auto;
}

.tw-w-full {
  width: 100%;
}

.tw-w-48 {
  width: 12rem;
}

.tw-max-w-7xl {
  max-width: 80rem;
}

.tw-w-20 {
  width: 5rem;
}

.tw-w-42 {
  width: 10.5rem;
}

.tw-h-1 {
  height: 0.25rem;
}

.tw-h-2 {
  height: 0.5rem;
}

.tw-h-42 {
  height: 10.5rem;
}

.tw-h-auto {
  height: auto;
}

.tw-min-h-\[80vh\] {
  min-height: 80vh;
}

.tw-min-h-\[90vh\] {
  min-height: 90vh;
}

.tw-max-w-2xl {
  max-width: 42rem;
}

.tw-max-w-3xl {
  max-width: 48rem;
}

.tw-max-w-6xl {
  max-width: 72rem;
}

.tw-object-cover {
  object-fit: cover;
}

.tw-object-contain {
  object-fit: contain;
}

/* Spacing */
.tw-mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.tw-mt-2 {
  margin-top: 0.5rem;
}

.tw-px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.tw-px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.tw-px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.tw-py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.tw-py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.tw-pt-2 {
  padding-top: 0.5rem;
}

.tw-pb-3 {
  padding-bottom: 0.75rem;
}

.tw-pl-4 {
  padding-left: 1rem;
}

.tw-p-1 {
  padding: 0.25rem;
}

.tw-m-1 {
  margin: 0.25rem;
}

.tw-mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.tw-mb-2 {
  margin-bottom: 0.5rem;
}

.tw-mb-4 {
  margin-bottom: 1rem;
}

.tw-mb-6 {
  margin-bottom: 1.5rem;
}

.tw-mb-8 {
  margin-bottom: 2rem;
}

.tw-mb-12 {
  margin-bottom: 3rem;
}

.tw-mt-1 {
  margin-top: 0.25rem;
}

.tw-mt-6 {
  margin-top: 1.5rem;
}

.tw-mt-12 {
  margin-top: 3rem;
}

.tw-mt-16 {
  margin-top: 4rem;
}

.tw-mt-24 {
  margin-top: 6rem;
}

.tw--mt-52 {
  margin-top: -13rem;
}

.tw--bottom-6 {
  bottom: -1.5rem;
}

.tw--right-6 {
  right: -1.5rem;
}

.tw--translate-y-1\/2 {
  transform: translateY(-50%);
}

.tw--translate-y-full {
  transform: translateY(-100%);
}

.tw-p-2 {
  padding: 0.5rem;
}

.tw-p-4 {
  padding: 1rem;
}

.tw-p-5 {
  padding: 1.25rem;
}

.tw-p-6 {
  padding: 1.5rem;
}

.tw-p-8 {
  padding: 2rem;
}

.tw-px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.tw-px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.tw-py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.tw-py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.tw-py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.tw-py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.tw-pt-0 {
  padding-top: 0;
}

.tw-pt-6 {
  padding-top: 1.5rem;
}

.tw-pt-16 {
  padding-top: 4rem;
}

.tw-pt-\[5px\] {
  padding-top: 5px;
}

.tw-pb-6 {
  padding-bottom: 1.5rem;
}

/* Typography */
.tw-text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.tw-text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.tw-text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.tw-text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.tw-font-medium {
  font-weight: 500;
}

.tw-text-left {
  text-align: left;
}

.tw-text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.tw-text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.tw-text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.tw-text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.tw-font-bold {
  font-weight: 700;
}

.tw-font-semibold {
  font-weight: 600;
}

.tw-leading-tight {
  line-height: 1.25;
}

.tw-text-center {
  text-align: center;
}

/* Colors */
.tw-text-gray-700 {
  color: #374151;
}

.tw-text-blue-900 {
  color: #1e3a8a;
}

.tw-bg-white {
  background-color: #ffffff;
}

.tw-bg-gray-50, .hover\:tw-bg-gray-50:hover {
  background-color: #f9fafb;
}

.tw-bg-gray-100, .hover\:tw-bg-gray-100:hover {
  background-color: #f3f4f6;
}

.tw-bg-white\/95 {
  background-color: rgba(255, 255, 255, 0.95);
}

.tw-text-white {
  color: #ffffff;
}

.tw-text-gray-100 {
  color: #f3f4f6;
}

.tw-text-gray-200 {
  color: #e5e7eb;
}

.tw-text-gray-300, .hover\:tw-text-gray-300:hover {
  color: #d1d5db;
}

.tw-text-gray-400 {
  color: #9ca3af;
}

.tw-text-gray-500 {
  color: #6b7280;
}

.tw-text-gray-600 {
  color: #4b5563;
}

.tw-text-gray-800 {
  color: #1f2937;
}

.tw-text-gray-900 {
  color: #111827;
}

.tw-text-blue-400 {
  color: #60a5fa;
}

.tw-text-blue-500 {
  color: #3b82f6;
}

.tw-text-blue-700, .hover\:tw-text-blue-700:hover {
  color: #1d4ed8;
}

.tw-text-blue-800, .hover\:tw-text-blue-800:hover {
  color: #1e40af;
}

.tw-bg-blue-800, .hover\:tw-bg-blue-800:hover {
  background-color: #1e40af;
}

.tw-bg-blue-900 {
  background-color: #1e3a8a;
}

.tw-bg-gray-300 {
  background-color: #d1d5db;
}

.tw-bg-gray-800 {
  background-color: #1f2937;
}

.tw-bg-gray-900 {
  background-color: #111827;
}

.tw-bg-white\/10 {
  background-color: rgba(255, 255, 255, 0.1);
}

.tw-opacity-10 {
  opacity: 0.1;
}

.tw-bg-red-900 {
  background-color: rgb(185, 28, 28);
}

.tw-text-red-900 {
  color: rgb(185, 28, 28);
}

.tw-border-red-900 {
  border-color: rgb(185, 28, 28);
}

.tw-to-red-50 {
  --tw-gradient-to: rgb(254, 242, 242);
}

/* Borders */
.tw-rounded-md {
  border-radius: 0.375rem;
}

.tw-border-t {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #e5e7eb;
}

.tw-ring-1 {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.tw-ring-black {
  --tw-ring-color: #000;
}

.tw-ring-opacity-5 {
  --tw-ring-opacity: 0.05;
}

.tw-rounded-lg {
  border-radius: 0.5rem;
}

.tw-rounded-full {
  border-radius: 9999px;
}

.tw-border {
  border-width: 1px;
}

.tw-border-2 {
  border-width: 2px;
}

.tw-border-4 {
  border-width: 4px;
}

.tw-border-gray-100 {
  border-color: #f3f4f6;
}

.tw-border-gray-200 {
  border-color: #e5e7eb;
}

.tw-border-gray-300 {
  border-color: #d1d5db;
}

.tw-border-gray-800 {
  border-color: #1f2937;
}

.tw-border-blue-900 {
  border-color: #1e3a8a;
}

.hover\:tw-border-blue-900:hover {
  border-color: #1e3a8a;
}

/* Effects */
.tw-shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.tw-shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.tw-shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.tw-shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.tw-backdrop-blur-sm {
  backdrop-filter: blur(4px);
}

/* Transitions */
.tw-transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.tw-duration-300 {
  transition-duration: 300ms;
}

.tw-transition-transform {
  transition-property: transform;
}

.tw-transition-colors {
  transition-property: color, background-color, border-color;
}

.tw-duration-200 {
  transition-duration: 200ms;
}

.tw-duration-500 {
  transition-duration: 500ms;
}

.tw-ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Z-index */
.tw-z-50 {
  z-index: 50;
}

.tw-z-10 {
  z-index: 10;
}

/* Interactive */
.hover\:tw-text-blue-900:hover {
  color: #1e3a8a;
}

.hover\:tw-bg-gray-50:hover {
  background-color: #f9fafb;
}

.hover\:tw-bg-gray-100:hover {
  background-color: #f3f4f6;
}

.group:hover .group-hover\:tw-translate-x-1 {
  transform: translateX(0.25rem);
}

/* Responsive Breakpoints */

/* Small (sm) */
@media (min-width: 640px) {
  .sm\:tw-min-w-\[auto\] {
    min-width: auto;
  }

  
.tw-px-4 {
  padding-left: .5rem;
  padding-right: .5rem;
}

  .sm\:tw-px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  /* Standard Tailwind sm breakpoint classes */
  .sm\:tw-block {
    display: block;
  }
  
  .sm\:tw-hidden {
    display: none;
  }
  
  .sm\:tw-flex {
    display: flex;
  }
  
  .sm\:tw-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .sm\:tw-w-auto {
    width: auto;
  }
  
  .sm\:tw-w-1\/2 {
    width: 50%;
  }
}

/* Medium (md) */
@media (min-width: 768px) {
  .md\:tw-justify-evenly {
    justify-content: space-evenly;
  }

  .md\:tw-min-w-\[auto\] {
    min-width: auto;
  }

  .md\:tw-flex {
    display: flex;
  }
  
  .md\:tw-hidden {
    display: none;
  }

@media (max-width: 767px) {
  .rwrp-mobile-menu {
    display: block;
  }
}
@media (min-width: 768px) {
  .rwrp-mobile-menu {
    display: none;
  }
}
.rwrp-mobile-menu {
  display: none;
}
@media (max-width: 767px) {
  .rwrp-mobile-menu {
    display: block;
  }
}

  /* .rwrp-mobile-menu.md\:tw-hidden {
    display: none !important;
  } */
  
  .md\:tw-col-span-2 {
    grid-column: span 2 / span 2;
  }
  
  .md\:tw-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .md\:tw-grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .md\:tw-grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  
  .md\:tw-w-1\/2 {
    width: 50%;
  }
  
  .md\:tw-min-h-\[80vh\] {
    min-height: 80vh;
  }
  
  .md\:tw-text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  
  .md\:tw-text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  
  .md\:tw-space-x-4 > * + * {
    margin-left: 1rem;
  }
  
  .md\:tw-space-y-0 > * + * {
    margin-top: 0;
  }
  
  .md\:tw-gap-4 {
    gap: 1rem;
  }
  
  .md\:tw-p-6 {
    padding: 1.5rem;
  }
  
  .md\:tw-px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  .md\:tw-py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

/* Large (lg) */
@media (min-width: 1024px) {
  .lg\:tw-min-w-\[auto\] {
    min-width: auto;
  }

  .lg\:tw-order-1 {
    order: 1;
  }
  
  .lg\:tw-order-2 {
    order: 2;
  }
  
  .lg\:tw-block {
    display: block;
  }
  
  .lg\:tw-flex {
    display: flex;
  }
  
  .lg\:tw-hidden {
    display: none;
  }
  
  .lg\:tw-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .lg\:tw-grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .lg\:tw-grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  
  .lg\:tw-w-1\/3 {
    width: 33.333333%;
  }
  
  .lg\:tw-w-1\/2 {
    width: 50%;
  }
  
  .lg\:tw-w-2\/3 {
    width: 66.666667%;
  }
  
  .lg\:tw-px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  
  .lg\:tw-pl-12 {
    padding-left: 3rem;
  }
  
  .lg\:tw-text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  
  .lg\:tw-text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  
  .lg\:tw-text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  
  .lg\:tw-space-x-8 > * + * {
    margin-left: 2rem;
  }
  
  .lg\:tw-gap-8 {
    gap: 2rem;
  }
  
  .lg\:tw-p-8 {
    padding: 2rem;
  }
}

/* Extra Large (xl) */
@media (min-width: 1280px) {
  .xl\:tw-space-x-8 > * + * {
    margin-left: 2rem;
  }
  
  .xl\:tw-min-w-\[auto\] {
    min-width: auto;
  }
 
  .xl\:tw-text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
  
  .xl\:tw-text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  
  .xl\:tw-text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  
  .xl\:tw-w-1\/4 {
    width: 25%;
  }
  
  .xl\:tw-w-3\/4 {
    width: 75%;
  }
  
  .xl\:tw-grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  
  .xl\:tw-px-0 {
    padding-left: 0;
    padding-right: 0;
  }
  
  .xl\:tw-px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  
  .xl\:tw-gap-12 {
    gap: 3rem;
  }
}

/* Additional Tailwind Classes */
.tw-min-w-\[max-content\] {
  min-width: max-content;
}

.tw-min-w-\[auto\] {
  min-width: auto;
}

.tw-space-x-6 > * + * {
  margin-left: 1.5rem;
}

.tw-left-0 {
  left: 0;
}

.tw-right-0 {
  right: 0;
}

.tw-bottom-0 {
  bottom: 0;
}

.tw-top-0 {
  top: 0;
}

.tw-text-left {
  text-align: left;
}

.tw-w-full {
  width: 100%;
}

/* Background and color classes */
.tw-bg-white\/95 {
  background-color: rgba(255, 255, 255, 0.95);
}

/* Hover effects */
.hover\:tw-bg-gray-100:hover {
  background-color: #f3f4f6;
}

.hover\:tw-bg-gray-50:hover {
  background-color: #f9fafb;
}

.hover\:tw-text-blue-900:hover {
  color: #1e3a8a;
}

.hover\:tw-text-gray-300:hover {
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}

/* Header-specific styles */
.rwrp-dropdown-menu {
  display: none;
  z-index: 50;
}

.rwrp-dropdown-container:hover .rwrp-dropdown-menu {
  display: block;
}

.rwrp-mobile-menu {
  transition: all 0.3s ease;
  border-top: 1px solid rgba(229, 231, 235, 0.5);
}

.rwrp-mobile-menu.hidden {
  display: none;
}

.rwrp-mobile-submenu button {
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.rwrp-mobile-submenu button:hover,
.rwrp-mobile-submenu button:focus,
.rwrp-mobile-submenu button:active {
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.rwrp-mobile-submenu button span {
  transition: transform 0.3s ease;
}

.rwrp-mobile-submenu.active button span {
  transform: rotate(180deg);
}

.rwrp-mobile-submenu .hidden {
  display: none;
}

.rwrp-mobile-submenu.active .hidden {
  display: block;
}

.mobile-menu-button {
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.mobile-menu-button:hover, 
.mobile-menu-button:focus, 
.mobile-menu-button:active {
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Dropdown menu fixes */
.rwrp-dropdown-container {
  position: relative;
}

.rwrp-dropdown-menu {
  z-index: 50;
  transition: opacity 0.15s ease-in-out;
}

.rwrp-dropdown-container:hover .rwrp-dropdown-menu {
  display: block !important;
}

.rwrp-dropdown-menu:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  transform: translateY(-100%);
}

/* Animation for the header */
@keyframes rwrp-shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
  20%, 40%, 60%, 80% { transform: translateX(2px); }
}

.rwrp-shake-animation {
  animation: rwrp-shake 0.5s ease-in-out infinite;
  animation-play-state: paused;
}

/* Header scroll effect */
.rwrp-header-scroll {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  background-color: rgba(255, 255, 255, 0.98);
}

.rwrp-header-scroll .tw-h-16 {
  height: 3.5rem; /* Slightly smaller logo when scrolled */
  transition: height 0.3s ease;
}

/* Section Backgrounds */
.rwrp-section-bg-blue {
  background-color: var(--bg-blue);
  color: white;
}

.rwrp-landing-hero-bg {
  position: relative;
}

.rwrp-landing-hero-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}

/***************************************************************/
/* Custom Components - Header and Footer */
/***************************************************************/
.rwrp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(to bottom, var(--bg-blue), var(--bg-blue-light));
  color: white;
  font-weight: 600;
  padding: 0.75rem 0.75rem;
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 0.175rem solid var(--border-color-dark);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.5);
  font-size: 1rem;
}

.rwrp-btn-primary:hover {
  background: linear-gradient(to bottom, white, white);
  color: var(--bg-blue);
}

.rwrp-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: transparent;
  border: 2px solid var(--bg-blue);
  color: var(--bg-blue);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.25rem;
  text-align: center;
  transition: all 0.3s ease;
}

.rwrp-btn-secondary:hover {
  background-color: var(--bg-blue);
  color: white;
}

.rwrp-military-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: var(--bg-blue);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 0.175rem solid var(--border-color-dark);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.5);
}

.rwrp-military-btn:hover {
  background: linear-gradient(to bottom, var(--bg-blue-light), var(--bg-blue));
  border: 0.175rem solid white;
  color: white;
  transform: translateY(-2px);
}

.rwrp-footer-link {
  color: inherit;
  transition: color 0.2s ease;
  display: inline-block;
}

.rwrp-footer-heading {
  position: relative;
  margin-bottom: 1.25rem;
}

.rwrp-footer-heading:after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 3rem;
  height: 2px;
  background-color: #3b82f6;
}

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

footer li {
  margin-bottom: 0.5rem;
}

.rwrp-service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rwrp-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.rwrp-shake-animation {
  animation: rwrp-shake 1s ease forwards;
  animation-play-state: paused;
}

@keyframes rwrp-shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
  20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* Animations for testimonial carousel */
.rwrp-dot.active {
  transform: scale(1.5);
  transition: transform 0.3s ease;
}

/* Fix for Roofing dropdown button */
.rwrp-dropdown-container button {
  background: transparent;
  border: none;
  box-shadow: none;
  font-weight: normal;
  padding: 0;
  cursor: pointer;
}

.rwrp-dropdown-container button:hover {
  background: transparent;
}

/* Font family */
.tw-font-montserrat {
  font-family: 'Montserrat', sans-serif;
}

.tw-font-poppins {
  font-family: 'Poppins', 'Montserrat', sans-serif;
}

/* Header */
.rwrp-header {
  padding: 0.5rem 0;
  /* transition: all 0.3s ease;
  top: -100px;
  transform: translateY(100px); */
}

.rwrp-logo {
  width: 150px;
  height: auto;
}
@media (max-width: 768px) {
  .rwrp-logo {
    width: 23vw;
    max-width: 150px;
  }
}

/* Footer styles */
.rwrp-footer-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .rwrp-footer-column {
    align-items: flex-start;
    text-align: left;
  }
}

.rwrp-footer-logo {
  display: flex;
  justify-content: center;
  background-color: white;
  padding: 0.5rem;
  border-radius: 0.5rem;
  display: inline-block;
}

@media (min-width: 768px) {
  .rwrp-footer-logo {
    justify-content: flex-start;
  }
}

.rwrp-footer-logo img {
  height: 120px;
  /* width: auto; */
  max-width: 100%;
}

.rwrp-footer-heading {
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  margin-top: -0.5rem;
}

.rwrp-footer-heading:after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 2px;
  width: 50%;
  background-color: rgb(209 213 219 / 0.3);
}

@media (min-width: 768px) {
  .rwrp-footer-heading:after {
    margin: 0;
  }
}

.tw-opacity-13 {
  opacity: 0.13;
}
