:root { font-family: 'Inter', sans-serif; }
@supports (font-variation-settings: normal) {
:root { font-family: 'Inter var', sans-serif; }
}
body{
    font-family: 'Inter', sans-serif;
}
.pt-16 {
    padding-top: 6rem !important;
}
.pt-17 {
  padding-top: 7rem !important;
}
/* Hero Section with Background */
.gradient-bg {
  width: 100%;
  height: 500px;
  background-image: url('/assets/images/hero_background.svg');
  background-size: cover;
  background-position: bottom;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
.sub-gradient-bg {
  width: 100%;
  height: 300px;
  background-image: url('/assets/images/hero_background.svg');
  background-size: cover;
  background-position: bottom;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
#cookie-consent-banner {
  display: var(--cookie-banner-display, none);
}

.gradient-bg-short {
    width: 100%;
    height: 250px;
    background-image: url('/assets/images/hero_background.svg');
    background-size: cover;
    background-position: bottom;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

    .feature-card:hover .feature-icon {
        transform: scale(1.1);
    }

    .feature-icon {
        transition: transform 0.3s ease;
    }

    .checkout-container {
        min-height: 600px; /* Adjust as needed for your iframe */
    }

.timeline-container {
    padding-left: 20px;
    border-left: 2px solid #3B82F6;
    margin-left: 20px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-dot {
    position: absolute;
    left: -28px;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #3B82F6;
}

.network-diagram {
    background-image: url('/api/placeholder/1200/600');
    background-size: cover;
    background-position: center;
    min-height: 400px;
    border-radius: 0.5rem;
}

/* .network-point {
    position: relative;
    background-color: rgba(37, 99, 235, 0.8);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-block;
    border: 3px solid white;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.3);
    animation: pulse 2s infinite;
} */


.table-row-alt:nth-child(odd) {
    background-color: rgba(243, 244, 246, 1);
}
/* Promotional banner styling */
.promo-banner {
  position: fixed;  /* Could also be absolute */
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;  /* Ensure it's above other content */
}

@keyframes scale-in {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.animate-scale-in {
  animation: scale-in 0.3s ease-out forwards;
}

/* Toast animation styles */
#promo-toast {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, opacity 0.3s ease;
  will-change: transform, opacity;
}

/* Toast hover effects */
#promo-toast:hover {
  transform: translateY(0) scale(1.02);
}


#promo-toast svg {
  animation: gentle-pulse 2s infinite;
}

/* Add smooth fade-in effect for when modal is closed and toast is shown */
.toast-enter {
  opacity: 0;
  transform: translateY(100%);
}

.toast-enter-active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 300ms, transform 300ms;
}

.toast-exit {
  opacity: 1;
}

.toast-exit-active {
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 300ms, transform 300ms;
}

/* Carousel styles */
.carousel-slide {
  transition: opacity 0.5s ease-in-out;
}

.carousel-dot {
  transition: background-color 0.3s ease;
}

.carousel-dot.active {
  transform: scale(1.2);
}

.carousel-prev, .carousel-next {
  transition: all 0.2s ease;
  opacity: 0.7;
}

.carousel-prev:hover, .carousel-next:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

@media (max-width: 640px) {
  .carousel-prev, .carousel-next {
    top: auto;
    bottom: -50px;
    transform: none;
  }

  .carousel-prev {
    left: 40%;
  }

  .carousel-next {
    right: 40%;
  }

  .carousel-prev:hover, .carousel-next:hover {
    transform: scale(1.1);
  }
}
/* Animation styles for server configuration preview */
.animate-preview {
  transition: all 0.3s ease;
}

.animate-preview:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Selection highlighting effects */
.processor-option, .storage-option {
  cursor: default;
  transition: all 0.2s ease;
}

.processor-option.selected, .storage-option.selected {
  border-left: 3px solid #2563eb;
}

/* Pulsing animation for the 24 Hour Delivery indicator */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.flag {
  font-size: 1.25rem;
}

/* Animated element highlighting */
@keyframes highlight {
  0% {
    background-color: rgba(219, 234, 254, 0.7);
  }
  50% {
    background-color: rgba(191, 219, 254, 0.9);
  }
  100% {
    background-color: rgba(219, 234, 254, 0.7);
  }
}

.highlight-element {
  animation: highlight 2s infinite;
}

/* RAID checkbox animation */
@keyframes checkPulse {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.raid-checkbox.showing {
  display: block;
  animation: checkPulse 0.5s forwards;
}

/* Blog Post Styling */
.blog-content {
  max-width: 800px;
  margin: 0 auto;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #333;
}

/* Headings */
.blog-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #1e3a8a; /* dark blue */
  line-height: 1.2;
}

.blog-content h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  color: #1e3a8a; /* dark blue */
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 0.5rem;
}

.blog-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #1f2937; /* dark gray */
}

/* Paragraphs */
.blog-content p {
  margin-bottom: 1.25rem;
}

/* Lists */
.blog-content ul,
.blog-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2.5rem;
}

.blog-content li {
  margin-bottom: 0.75rem;
}

.blog-content ul {
  list-style-type: disc;
}

.blog-content ol {
  list-style-type: decimal;
}

/* Strong/bold text */
.blog-content strong {
  font-weight: 700;
  color: #111827; /* darker than normal text */
}

/* Horizontal rules */
.blog-content hr {
  margin: 2rem 0;
  border: 0;
  height: 1px;
  background-color: #e5e7eb;
}

/* Links */
.blog-content a {
  color: #2563eb; /* blue */
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.blog-content a:hover {
  border-bottom-color: #2563eb;
}

/* Blockquotes */
.blog-content blockquote {
  border-left: 4px solid #3b82f6; /* blue */
  padding-left: 1rem;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 1.5rem;
  font-style: italic;
  color: #4b5563; /* gray */
}

/* Code blocks */
.blog-content pre {
  background-color: #f3f4f6;
  padding: 1rem;
  border-radius: 0.375rem;
  overflow-x: auto;
  margin-bottom: 1.5rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.875rem;
}

.blog-content code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.875em;
  background-color: #f3f4f6;
  padding: 0.2em 0.4em;
  border-radius: 0.25rem;
}

/* Images */
.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.375rem;
  margin-bottom: 1.5rem;
}

/* Pro tips and callouts */
.blog-tip {
  background-color: #f0f9ff; /* light blue */
  border-left: 4px solid #3b82f6; /* blue */
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 0 0.375rem 0.375rem 0;
}

.blog-tip h4 {
  margin-top: 0;
  font-weight: 600;
  color: #1e3a8a;
}

/* Responsive design */
@media (max-width: 768px) {
  .blog-content {
    padding: 1rem;
    font-size: 1rem;
  }

  .blog-content h1 {
    font-size: 2rem;
  }

  .blog-content h2 {
    font-size: 1.5rem;
  }

  .blog-content h3 {
    font-size: 1.25rem;
  }
}
/* Add these styles to your CSS file or inline in the header */
#cookie-consent-banner {
    /* Use the highest possible z-index to ensure it stays on top */
    z-index: 2147483647 !important;
    /* Ensure the banner is positioned above all other elements */
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;

    /* Additional styles to make it visually prominent */
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1), 0 -2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}

#cookie-settings-modal {
    z-index: 2147483647 !important;
}

/* This helps ensure LiveChat widget remains below our cookie banner */
#chat-widget-container {
    z-index: 2147483646 !important; /* One less than our cookie banner */
}

/* Additional override for any LiveChat elements */
[data-testid="chat-widget-minimized"],
[data-testid="chat-widget-container"] {
    z-index: 2147483646 !important;
}

/* Modern Navigation Dropdown Styles */

/* Base styling for dropdown containers */
.group:hover .absolute {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

/* Dropdown menu styling */
.group .absolute {
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: none;
  overflow: hidden;
  background: linear-gradient(to bottom, #ffffff, #f9fafb);
}

/* Add a subtle divider between dropdown items */
.group .absolute a:not(:last-child) {
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}

/* Style for dropdown menu items */
.group .absolute a {
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 16px;
}

.group .absolute a:hover {
  background-color: #f0f9ff;
  border-left: 3px solid #3b82f6;
  padding-left: calc(16px - 3px);
  color: #2563eb;
}

/* Add subtle enter animation for dropdown items */
.group .absolute a {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.2s ease, color 0.2s ease, border-left 0.2s ease;
  transition-delay: calc(var(--item-index, 0) * 0.05s);
}

.group:hover .absolute a {
  opacity: 1;
  transform: translateY(0);
}

/* Dropdown indicator animation */
.group button svg {
  transition: transform 0.3s ease, color 0.3s ease;
}

.group:hover button svg {
  transform: rotate(180deg);
  color: #3b82f6;
}

/* Add subtle hover effect to dropdown toggle buttons */
.group button {
  position: relative;
}

.group button::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #3b82f6;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.group:hover button::after {
  width: 80%;
}


/* Mobile dropdown indicator rotation */
.mobile-dropdown-button svg {
  transition: transform 0.3s ease;
}

.mobile-dropdown-button.open svg {
  transform: rotate(180deg);
}

/* Enhanced dropdown styles */
.group .absolute .w-8 {
  transition: all 0.3s ease;
}

.group .absolute a:hover .w-8 {
  background-color: #dbeafe;
  transform: scale(1.1);
}

/* Dropdown arrow indicator */
.absolute .rotate-45 {
  transition: all 0.3s ease;
}

.group:hover .absolute .rotate-45 {
  animation: pulse-light 2s infinite;
}

@keyframes pulse-light {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.2);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
  }
}

/* Smooth transitions for buttons */
.inline-flex {
  transition: all 0.2s ease-in-out;
}

/* Focus styles for keyboard navigation */
.group button:focus-visible,
.group .absolute a:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Animation for menu toggle button */
#mobile-menu-button svg {
  transition: all 0.3s ease;
}
/* Add these styles to your CSS file */

/* Add a transparent buffer area between the nav button and dropdown */
.group .absolute {
  margin-top: -10px; /* Creates negative margin to pull the dropdown up */
  padding-top: 10px; /* Adds padding to maintain visual position */
}

/* Dropdown transitions */
.group .absolute {
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  transform: translateY(10px);
  visibility: hidden;
  opacity: 0;
}

.group:hover .absolute {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

/* Fix for dropdown animations */
.group .absolute a {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  transition-delay: calc(0.05s * var(--item-index, 0));
}

.group:hover .absolute a {
  opacity: 1;
  transform: translateY(0);
}

/* Ensure submenu items stay visible on hover */
.mobile-dropdown button.open + div {
  display: block !important;
}
.server-option {
  font-size: 15px;
}
/* Ensure tooltips appear above other elements */
.group:hover .group-hover\:opacity-100 {
  z-index: 50;
}
.wp-features span {
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
/* Add these styles to your style.css file to enhance mobile navigation */
