/* style.css - Updated and Optimized */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  /* Color Variables */
  --primary-light: #f97316;
  --primary: #ea580c;
  --primary-dark: #c2410c;
  --dark-light: #1e293b;
  --dark: #0f172a;
  --dark-dark: #020617;
  --accent: #fbbf24;
  --success: #4ade80;
  --gray-300: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-700: #334155;
}

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

.animate-marquee {
  animation: marquee 30s linear infinite;
}

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

/* Base Styles */
body {
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
  background-color: var(--dark-dark);
  color: var(--gray-300);
}

/* Color Utilities */
.text-primary {
  color: var(--primary);
}
.text-primary-light {
  color: var(--primary-light);
}
.text-primary-dark {
  color: var(--primary-dark);
}
.text-accent {
  color: var(--accent);
}
.text-success {
  color: var(--success);
}

.bg-dark {
  background-color: var(--dark);
}
.bg-dark-light {
  background-color: var(--dark-light);
}
.bg-dark-dark {
  background-color: var(--dark-dark);
}
.bg-primary {
  background-color: var(--primary);
}
.bg-primary-light {
  background-color: var(--primary-light);
}
.bg-primary-dark {
  background-color: var(--primary-dark);
}

.border-dark {
  border-color: var(--dark);
}
.border-dark-light {
  border-color: var(--dark-light);
}
.border-primary {
  border-color: var(--primary);
}
.border-primary-light {
  border-color: var(--primary-light);
}

/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 80px; /* Height of header */
  left: 0;
  right: 0;
  background-color: white;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 40;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu-nav {
  padding: 1rem 0;
}

.mobile-menu-nav a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #374151;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid #f3f4f6;
}

.mobile-menu-nav a:hover {
  background-color: #f9fafb;
  color: var(--primary-light);
  padding-left: 2rem;
}

.mobile-menu-nav a.active {
  color: var(--primary-light);
  background-color: #fef3c7;
  border-left: 3px solid var(--primary-light);
}

/* Mobile Dropdown Menu */
.mobile-dropdown {
  position: relative;
}

.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.75rem 1.5rem;
  color: #374151;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid #f3f4f6;
}

.mobile-dropdown-toggle:hover {
  background-color: #f9fafb;
  color: var(--primary-light);
}

.mobile-dropdown-toggle.active {
  color: var(--primary-light);
  background-color: #fef3c7;
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  background-color: #f9fafb;
}

.mobile-dropdown-menu.active {
  max-height: 100vh;
}

.mobile-dropdown-menu a {
  padding: 0.5rem 1.5rem 0.5rem 3rem;
  font-size: 0.9rem;
  border-bottom: 1px solid #e5e7eb;
}

.mobile-dropdown-menu a:hover {
  background-color: #f3f4f6;
  color: var(--primary-light);
}

/* Hamburger Menu Animation */
.hamburger {
  width: 24px;
  height: 24px;
  position: relative;
  cursor: pointer;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #374151;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
  top: 6px;
}

.hamburger span:nth-child(2) {
  top: 12px;
}

.hamburger span:nth-child(3) {
  top: 18px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 12px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 12px;
}

/* Hero Sections */
.hero-gradient {
  background: radial-gradient(
    circle at 70% 30%,
    rgba(234, 88, 12, 0.15) 0%,
    rgba(15, 23, 42, 0) 70%
  );
}
.colocation-hero {
  background: linear-gradient(rgba(15, 23, 42, 0.5), rgba(15, 23, 42, 0.8)),
    url("../images/Hero_1.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
  color: #ffffff;
  position: relative;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease-in-out;
}

/* Cards */
.feature-card,
.testimonial-card,
.blog-card,
.pricing-tier {
  transition: all 0.3s ease;
  background-color: var(--dark-light);
  border: 1px solid var(--dark);
}

.feature-card:hover,
.testimonial-card:hover,
.blog-card:hover,
.pricing-tier:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(234, 88, 12, 0.3);
  border-color: var(--primary-light);
}

/* Pricing Tier Specific */
.pricing-tier.popular {
  border: 2px solid var(--primary-light);
}
.pricing-tier.popular .popular-badge {
  display: block;
  background-color: var(--primary-light);
  color: var(--dark-dark);
}

/* Client Logos */
.client-logo {
  filter: grayscale(100%) brightness(2);
  transition: all 0.3s ease;
}
.client-logo:hover {
  filter: grayscale(0) brightness(1);
}

/* Glow Effect */
.glow {
  box-shadow: 0 0 15px rgba(234, 88, 12, 0.5);
}
.glow:hover {
  box-shadow: 0 0 20px rgba(234, 88, 12, 0.7);
}

/* Section Headers */
.section-header {
  position: relative;
  margin-bottom: 4rem;
}
.section-header::after {
  content: "";
  display: block;
  width: 5rem;
  height: 2px;
  background-color: var(--primary);
  margin: 1rem auto 0;
}

/* Security Features */
.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.security-feature {
  background-color: var(--dark-light);
  border-left: 3px solid var(--primary-light);
}

/* FAQ Accordion */
.faq-item {
  border-bottom: 1px solid var(--dark-light);
}
.faq-question {
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: var(--dark-light);
}
.faq-question:hover {
  color: var(--primary-light);
}
/* .faq-answer {
  max-height: auto;
  overflow: hidden;
  transition: max-height 0.3s ease;
} */
.faq-answer {
  transition: max-height 0.4s ease;
  overflow: hidden;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* Network Elements */
.network-node {
  width: 12px;
  height: 12px;
  background-color: var(--primary-light);
  border-radius: 50%;
  position: relative;
}
.network-node::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  top: 2px;
  left: 2px;
}

.rack-unit {
  height: 20px;
  background: linear-gradient(to right, var(--dark-light), var(--gray-700));
  border: 1px solid var(--gray-700);
  position: relative;
}
.rack-unit::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--success);
  border-radius: 50%;
}

/* CTA Sections */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary-light) 100%
  );
}

/* Utility Classes */
.popular-badge {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: bold;
  border-bottom-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-content {
    text-align: center;
  }
  .section-header::after {
    margin: 1rem auto;
  }
  .pricing-tiers,
  .security-grid {
    grid-template-columns: 1fr;
  }
  .rack-visualization {
    flex-direction: column;
  }

  /* Mobile Typography */
  h1 {
    font-size: 2rem !important;
    line-height: 1.2 !important;
  }

  h2 {
    font-size: 1.5rem !important;
    line-height: 1.3 !important;
  }

  h3 {
    font-size: 1.25rem !important;
    line-height: 1.4 !important;
  }

  /* Mobile Spacing */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

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

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

  /* Mobile Grid Adjustments */
  .grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .md\\:grid-cols-2 {
    grid-template-columns: 1fr !important;
  }

  .md\\:grid-cols-3 {
    grid-template-columns: 1fr !important;
  }

  .lg\\:grid-cols-4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Mobile Button Adjustments */
  .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .btn-group {
    flex-direction: column;
  }

  /* Mobile Navigation Adjustments */
  .nav-link {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e5e7eb;
  }

  /* Mobile Card Adjustments */
  .card {
    margin-bottom: 1rem;
  }

  /* Mobile Table Adjustments */
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Mobile Form Adjustments */
  .form-group {
    margin-bottom: 1rem;
  }

  .form-control {
    font-size: 16px; /* Prevents zoom on iOS */
  }

  /* Home Page Specific Mobile Styles */

  /* Hero Section Mobile */
  .hero-section {
    padding-top: 6rem !important;
    padding-bottom: 2rem !important;
  }

  .hero-section h1 {
    font-size: 2.5rem !important;
    line-height: 1.1 !important;
    margin-bottom: 1rem !important;
  }

  .hero-section p {
    font-size: 1rem !important;
    margin-bottom: 1.5rem !important;
  }

  .hero-section .flex {
    flex-direction: column !important;
    gap: 1rem !important;
  }

  .hero-section a {
    width: 100% !important;
    text-align: center !important;
    padding: 0.75rem 1rem !important;
  }

  /* Features Section Mobile */
  .feature-card {
    padding: 1.5rem !important;
    text-align: center !important;
  }

  .feature-card .w-14 {
    width: 3rem !important;
    height: 3rem !important;
    margin: 0 auto 1rem !important;
  }

  .feature-card h3 {
    font-size: 1.125rem !important;
    margin-bottom: 0.75rem !important;
  }

  /* Credentials Section Mobile */
  .credentials-section {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .credentials-section .grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    margin-top: 1rem !important;
  }

  /* Credentials Grid Mobile */
  .credentials-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    width: 100% !important;
  }

  /* Credentials Card Mobile Layout - Static Design */
  .credentials-card {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%) !important;
    border: 2px solid #f97316 !important;
    border-radius: 1rem !important;
    padding: 1.5rem !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    min-height: 250px !important;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.15) !important;
    position: relative !important;
    overflow: hidden !important;
    margin-bottom: 1.5rem !important;
  }

  /* Credentials Card Header */
  .credentials-card .text-center {
    margin-bottom: 1.5rem !important;
  }

  /* Credentials Card Icon */
  .credentials-card .w-20.h-20 {
    width: 4rem !important;
    height: 4rem !important;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 1rem auto !important;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3) !important;
  }

  /* Credentials Card Icon SVG */
  .credentials-card .w-20.h-20 svg {
    width: 2rem !important;
    height: 2rem !important;
    color: white !important;
  }

  /* Credentials Card Heading */
  .credentials-card h3 {
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    color: #f97316 !important;
    text-align: center !important;
    margin-bottom: 1.5rem !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    line-height: 1.2 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
  }

  /* Credentials Static Content */
  .credentials-card .credentials-marquee {
    display: block !important;
    animation: none !important;
    overflow: visible !important;
    min-height: auto !important;
  }

  .credentials-card .animate-marquee {
    animation: none !important;
    display: block !important;
  }

  .credentials-card .animate-marquee .flex {
    display: block !important;
    animation: none !important;
  }

  .credentials-card .animate-marquee .flex > div {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 0.75rem !important;
    padding: 0.75rem !important;
    background: rgba(249, 115, 22, 0.1) !important;
    border-radius: 0.5rem !important;
    border-left: 3px solid #f97316 !important;
    animation: none !important;
    white-space: normal !important;
    font-size: 0.875rem !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.2s ease !important;
  }

  /* Text Content Specific Styling */
  .credentials-card .animate-marquee .flex > div:not(:has(img)) {
    background: linear-gradient(
      135deg,
      rgba(249, 115, 22, 0.1) 0%,
      rgba(249, 115, 22, 0.05) 100%
    ) !important;
    border-left: 3px solid #f97316 !important;
  }

  /* Certification and Press Recognition Items */
  .credentials-card .animate-marquee .flex > div:has(svg) {
    background: linear-gradient(
      135deg,
      rgba(249, 115, 22, 0.15) 0%,
      rgba(249, 115, 22, 0.05) 100%
    ) !important;
    border-left: 4px solid #f97316 !important;
    font-weight: 500 !important;
  }

  .credentials-card .animate-marquee .flex > div:last-child {
    margin-bottom: 0 !important;
  }

  .credentials-card .animate-marquee .flex > div svg {
    width: 1.25rem !important;
    height: 1.25rem !important;
    color: #f97316 !important;
    margin-right: 0.75rem !important;
    flex-shrink: 0 !important;
  }

  .credentials-card .animate-marquee .flex > div span {
    color: #e5e7eb !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    display: block !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    max-width: none !important;
  }

  /* Partner Images Static Display */
  .credentials-card .client-logo {
    height: 3rem !important;
    width: auto !important;
    object-fit: contain !important;
    background: white !important;
    border-radius: 0.5rem !important;
    padding: 0.5rem !important;
    margin: 0.5rem !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid #e5e7eb !important;
    display: inline-block !important;
    vertical-align: middle !important;
  }

  /* Partner Images Container */
  .credentials-card .animate-marquee .flex {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 1rem !important;
    padding: 1rem !important;
    background: rgba(249, 115, 22, 0.05) !important;
    border-radius: 0.75rem !important;
    border: 1px solid rgba(249, 115, 22, 0.2) !important;
  }

  /* Partner Images Grid Layout */
  .credentials-card .animate-marquee .flex img {
    flex: 0 0 auto !important;
    margin: 0 !important;
    animation: none !important;
  }

  /* Ensure Card Content is Visible */
  .credentials-card > * {
    position: relative !important;
    z-index: 5 !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Credentials Header Mobile */
  .credentials-header {
    margin-bottom: 2rem !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .credentials-header .w-16 {
    width: 3rem !important;
    height: 3rem !important;
  }

  .credentials-header .h-8 {
    width: 1.5rem !important;
    height: 1.5rem !important;
  }

  .credentials-header h2 {
    font-size: 1.75rem !important;
    line-height: 1.2 !important;
    margin-bottom: 0.75rem !important;
    color: #f97316 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .credentials-header p {
    font-size: 0.875rem !important;
    line-height: 1.5 !important;
    margin-bottom: 1rem !important;
    padding: 0 1rem !important;
    color: #9ca3af !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .credentials-header .w-20 {
    width: 3rem !important;
    height: 0.125rem !important;
  }

  .credentials-header .space-x-2 > div {
    width: 0.375rem !important;
    height: 0.375rem !important;
  }

  /* Credentials Header Mobile Animations */
  .credentials-header .w-16 {
    animation: none !important;
  }

  /* Credentials Header Mobile Glow Effect */
  .credentials-header .w-16 {
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.3) !important;
  }

  /* Credentials Header Mobile Text Shadow */
  .credentials-header h2 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
  }

  /* Credentials Header Mobile Gradient Text */
  .credentials-header h2 span {
    background: linear-gradient(
      45deg,
      var(--primary-light),
      var(--primary-dark)
    ) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
  }

  /* Credentials Section Mobile Background */
  .credentials-section {
    background: linear-gradient(
      135deg,
      var(--dark-dark) 0%,
      var(--dark) 100%
    ) !important;
  }

  /* Credentials Cards Mobile Hover Effect - Static Design */
  .credentials-card {
    transition: all 0.3s ease !important;
    position: relative !important;
  }

  .credentials-card::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(
      135deg,
      rgba(249, 115, 22, 0.1) 0%,
      rgba(234, 88, 12, 0.05) 100%
    ) !important;
    border-radius: inherit !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
    pointer-events: none !important;
  }

  .credentials-card:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.25) !important;
    border-color: #ea580c !important;
  }

  .credentials-card:hover::before {
    opacity: 1 !important;
  }

  /* Credentials Card Content Hover Effects */
  .credentials-card .animate-marquee .flex > div:hover {
    background: rgba(249, 115, 22, 0.2) !important;
    transform: translateX(5px) !important;
    transition: all 0.2s ease !important;
  }

  /* Partner Images Hover Effects */
  .credentials-card .client-logo:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3) !important;
    transition: all 0.2s ease !important;
  }

  /* Partner Images Container Enhancement */
  .credentials-card .animate-marquee .flex:has(img) {
    background: linear-gradient(
      135deg,
      rgba(249, 115, 22, 0.08) 0%,
      rgba(249, 115, 22, 0.02) 100%
    ) !important;
    border: 1px solid rgba(249, 115, 22, 0.15) !important;
    min-height: 80px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Text Content Container Enhancement */
  .credentials-card .animate-marquee .flex:not(:has(img)) {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    gap: 0 !important;
  }

  /* Credentials Mobile Touch Feedback - Static Design */
  .credentials-card:active {
    transform: scale(0.98) !important;
  }

  /* Credentials Card Badge */
  .credentials-card::after {
    content: "✓" !important;
    position: absolute !important;
    top: 1rem !important;
    right: 1rem !important;
    width: 1.5rem !important;
    height: 1.5rem !important;
    background: #f97316 !important;
    color: white !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.75rem !important;
    font-weight: bold !important;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3) !important;
  }

  /* Credentials Section Background Enhancement */
  .credentials-section {
    background: linear-gradient(
      135deg,
      #111827 0%,
      #1f2937 50%,
      #374151 100%
    ) !important;
    position: relative !important;
  }

  .credentials-section::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: radial-gradient(
        circle at 20% 80%,
        rgba(249, 115, 22, 0.1) 0%,
        transparent 50%
      ),
      radial-gradient(
        circle at 80% 20%,
        rgba(249, 115, 22, 0.05) 0%,
        transparent 50%
      ) !important;
    pointer-events: none !important;
  }

  /* Credentials Mobile Responsive Improvements */
  .credentials-section .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .credentials-section .max-w-7xl {
    max-width: 100% !important;
  }

  /* Credentials Mobile Text Overflow */
  .credentials-section .animate-marquee .flex > div span {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 200px !important;
  }

  /* Credentials Mobile Icon Spacing */
  .credentials-section .animate-marquee .flex > div {
    margin-right: 1rem !important;
    flex-shrink: 0 !important;
  }

  /* Force Credentials Headings Visibility */
  .credentials-section
    article
    h3.text-xl.font-bold.text-gray-200.mb-4.text-center {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: #e5e7eb !important;
    text-align: center !important;
    margin-bottom: 1rem !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    line-height: 1.3 !important;
    position: relative !important;
    z-index: 10 !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    width: 100% !important;
    height: auto !important;
    overflow: visible !important;
  }

  /* Credentials Mobile Micro-interactions */
  .credentials-header .w-16:hover {
    animation: wiggle 0.5s ease-in-out !important;
  }

  @keyframes wiggle {
    0%,
    100% {
      transform: rotate(0deg);
    }
    25% {
      transform: rotate(-5deg);
    }
    75% {
      transform: rotate(5deg);
    }
  }

  /* Credentials Mobile Pulse Animation */
  .credentials-header .space-x-2 > div {
    animation: none !important;
  }

  /* Credentials Mobile Card Entrance Animation */
  .credentials-card {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .credentials-section article {
    padding: 1.5rem !important;
    min-height: 200px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Credentials Card Headings Mobile */
  .credentials-section article h3,
  .credentials-section .credentials-card h3,
  .credentials-section article .text-xl.font-bold.text-gray-200 {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: #e5e7eb !important;
    text-align: center !important;
    margin-bottom: 1rem !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    line-height: 1.3 !important;
    position: relative !important;
    z-index: 10 !important;
  }

  /* Credentials Card Icons Mobile */
  .credentials-section article .w-20 {
    width: 3rem !important;
    height: 3rem !important;
  }

  .credentials-section article .h-10 {
    width: 1.5rem !important;
    height: 1.5rem !important;
  }

  /* Credentials Card Content Mobile */
  .credentials-section article .text-center {
    margin-bottom: 1rem !important;
  }

  /* Credentials Marquee Mobile */
  .credentials-section .credentials-marquee {
    min-height: 80px !important;
    display: flex !important;
    align-items: center !important;
  }

  .credentials-section .w-20 {
    width: 4rem !important;
    height: 4rem !important;
  }

  .credentials-section h3 {
    font-size: 1.125rem !important;
    margin-bottom: 1rem !important;
  }

  /* Marquee Animations Mobile */
  .animate-marquee {
    animation-duration: 20s !important;
  }

  .animate-marquee .flex {
    gap: 1rem !important;
  }

  .animate-marquee .flex > div {
    min-width: auto !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    font-size: 0.875rem !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Credentials Marquee Text Mobile */
  .credentials-section .animate-marquee .flex > div {
    padding: 0.5rem 0 !important;
    display: flex !important;
    align-items: center !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .credentials-section .animate-marquee .flex > div span {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
    color: #9ca3af !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .credentials-section .animate-marquee .flex > div svg {
    width: 1rem !important;
    height: 1rem !important;
    color: #f97316 !important;
    flex-shrink: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .credentials-section .animate-marquee .flex > div span {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
  }

  /* Credentials Partner Logos Mobile */
  .credentials-section .client-logo {
    height: 2.5rem !important;
    margin: 0 0.5rem !important;
  }

  /* Credentials Overflow Fix */
  .credentials-section .overflow-hidden {
    max-height: 120px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Credentials Card Mobile */
  .credentials-card {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
  }

  .credentials-marquee {
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
  }

  /* Credentials Text Wrapping */
  .credentials-section .animate-marquee .flex > div {
    flex-shrink: 0 !important;
    margin-right: 1rem !important;
  }

  /* Credentials Icon Sizing */
  .credentials-section .animate-marquee .flex > div svg {
    width: 1rem !important;
    height: 1rem !important;
    flex-shrink: 0 !important;
  }

  /* Credentials Animation Pause on Mobile */
  .credentials-section .animate-marquee:hover {
    animation-play-state: paused !important;
  }

  /* Credentials Text Overflow */
  .credentials-section .animate-marquee .flex > div span {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    max-width: 200px !important;
  }

  /* Credentials Partner Logos Container */
  .credentials-section .animate-marquee .flex {
    align-items: center !important;
    justify-content: flex-start !important;
  }

  /* About Section Mobile */
  .about-section .grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .about-section figure {
    order: -1 !important;
  }

  .about-section .absolute {
    position: relative !important;
    margin-top: 1rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: fit-content !important;
  }

  /* Why Choose Us Section Mobile */
  .why-choose-section .grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .why-choose-section article {
    padding: 1.5rem !important;
  }

  /* Happy Clients Section Mobile */
  .clients-section .flex-none {
    flex: none !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 0.5rem !important;
  }

  .clients-section .w-64 {
    width: 100% !important;
    max-width: 300px !important;
  }

  .clients-section .h-40 {
    height: 120px !important;
  }

  /* Testimonials Mobile */
  .testimonials-section .flex-none {
    flex: none !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 0.5rem !important;
  }

  .testimonials-section article {
    padding: 1.5rem !important;
  }

  .testimonials-section blockquote {
    font-size: 0.875rem !important;
    line-height: 1.5 !important;
  }

  /* CTA Section Mobile */
  .cta-section {
    padding: 2rem 1rem !important;
  }

  .cta-section h2 {
    font-size: 1.75rem !important;
    margin-bottom: 1rem !important;
  }

  .cta-section .flex {
    flex-direction: column !important;
    gap: 1rem !important;
  }

  .cta-section a {
    width: 100% !important;
    text-align: center !important;
  }

  /* Footer Mobile */
  .footer-content {
    text-align: center !important;
  }

  .footer-links {
    flex-direction: column !important;
    gap: 1rem !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  /* Newsletter Section Mobile */
  .newsletter-section {
    padding: 2rem 1rem !important;
  }

  .newsletter-section .flex {
    flex-direction: column !important;
    gap: 1rem !important;
  }

  .newsletter-section input,
  .newsletter-section button {
    width: 100% !important;
  }

  /* Additional Home Page Mobile Optimizations */

  /* Hero Section Button Stack */
  .hero-section .flex.flex-wrap {
    flex-direction: column !important;
    align-items: center !important;
  }

  .hero-section .flex.flex-wrap a {
    width: 100% !important;
    max-width: 300px !important;
    margin-bottom: 0.75rem !important;
  }

  /* Features Grid Mobile */
  .grid.md\\:grid-cols-2.lg\\:grid-cols-4 {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  /* Credentials Grid Mobile */
  .grid.md\\:grid-cols-3 {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  /* About Section Image Mobile */
  .about-section figure img {
    width: 100% !important;
    height: auto !important;
  }

  /* Why Choose Us Grid Mobile */
  .grid.md\\:grid-cols-2.lg\\:grid-cols-3 {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  /* Client Carousel Mobile */
  .overflow-hidden .flex.animate-marquee {
    gap: 1rem !important;
  }

  .flex-none.w-64.h-40 {
    width: 280px !important;
    height: 120px !important;
    margin: 0 0.5rem !important;
  }

  /* Testimonials Mobile */
  .flex-none.w-full.max-w-md.md\\:max-w-lg.lg\\:max-w-xl {
    width: 280px !important;
    max-width: none !important;
    margin: 0 0.5rem !important;
  }

  /* Marquee Text Mobile */
  .animate-marquee .flex > div {
    white-space: nowrap !important;
    font-size: 0.875rem !important;
  }

  /* Section Headers Mobile */
  header.text-center h2 {
    font-size: 1.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  header.text-center p {
    font-size: 0.875rem !important;
    margin-bottom: 1rem !important;
  }

  /* Absolute Positioning Mobile */
  .absolute.-bottom-6.-right-6 {
    position: relative !important;
    bottom: auto !important;
    right: auto !important;
    margin: 1rem auto 0 !important;
    width: fit-content !important;
  }
}

@media (max-width: 480px) {
  /* Extra Small Mobile Adjustments */
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  h1 {
    font-size: 1.75rem !important;
  }

  h2 {
    font-size: 1.25rem !important;
  }

  .lg\\:grid-cols-4 {
    grid-template-columns: 1fr !important;
  }

  /* Mobile Hero Adjustments */
  .hero-section {
    padding-top: 6rem;
    padding-bottom: 2rem;
  }

  .hero-section h1 {
    font-size: 2rem !important;
  }

  /* Mobile Footer Adjustments */
  .footer-content {
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  /* Extra Small Mobile Specific */
  .hero-section .pt-32 {
    padding-top: 5rem !important;
  }

  .hero-section .pb-24 {
    padding-bottom: 1.5rem !important;
  }

  .feature-card,
  .credentials-section article,
  .why-choose-section article {
    padding: 1rem !important;
  }

  .clients-section .h-40 {
    height: 100px !important;
  }

  .testimonials-section article {
    padding: 1rem !important;
  }

  .testimonials-section blockquote {
    font-size: 0.8rem !important;
  }

  .testimonials-section .w-12 {
    width: 2.5rem !important;
    height: 2.5rem !important;
  }

  /* Extra Small Mobile Home Page Optimizations */

  /* Hero Section Extra Small */
  .hero-section h1 {
    font-size: 1.875rem !important;
    line-height: 1.1 !important;
  }

  .hero-section p {
    font-size: 0.875rem !important;
  }

  /* Features Extra Small */
  .feature-card {
    padding: 1rem !important;
  }

  .feature-card h3 {
    font-size: 1rem !important;
  }

  /* Credentials Extra Small */
  .credentials-section article {
    padding: 1rem !important;
    min-height: 180px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Credentials Card Headings Extra Small Mobile */
  .credentials-section article h3,
  .credentials-section .credentials-card h3,
  .credentials-section article .text-xl.font-bold.text-gray-200 {
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    color: #e5e7eb !important;
    text-align: center !important;
    margin-bottom: 0.75rem !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    line-height: 1.2 !important;
    position: relative !important;
    z-index: 10 !important;
  }

  /* Credentials Card Icons Extra Small Mobile */
  .credentials-section article .w-20 {
    width: 2.5rem !important;
    height: 2.5rem !important;
  }

  .credentials-section article .h-10 {
    width: 1.25rem !important;
    height: 1.25rem !important;
  }

  /* Credentials Marquee Extra Small Mobile */
  .credentials-section .credentials-marquee {
    min-height: 60px !important;
  }

  /* Credentials Header Extra Small */
  .credentials-header {
    margin-bottom: 1.5rem !important;
  }

  .credentials-header .w-16 {
    width: 2.5rem !important;
    height: 2.5rem !important;
  }

  .credentials-header .h-8 {
    width: 1.25rem !important;
    height: 1.25rem !important;
  }

  .credentials-header h2 {
    font-size: 1.5rem !important;
    line-height: 1.1 !important;
    margin-bottom: 0.5rem !important;
    color: #f97316 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .credentials-header p {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
    margin-bottom: 0.75rem !important;
    padding: 0 0.5rem !important;
    color: #9ca3af !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .credentials-header .w-20 {
    width: 2.5rem !important;
    height: 0.125rem !important;
  }

  .credentials-header .space-x-2 > div {
    width: 0.25rem !important;
    height: 0.25rem !important;
  }

  .credentials-section .w-20 {
    width: 3rem !important;
    height: 3rem !important;
  }

  .credentials-section h3 {
    font-size: 1rem !important;
    margin-bottom: 0.75rem !important;
  }

  .credentials-section .animate-marquee .flex > div span {
    font-size: 0.75rem !important;
    line-height: 1.3 !important;
    color: #9ca3af !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .credentials-section .animate-marquee .flex > div svg {
    width: 0.875rem !important;
    height: 0.875rem !important;
    color: #f97316 !important;
    flex-shrink: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Force Credentials Headings Visibility Extra Small */
  .credentials-section
    article
    h3.text-xl.font-bold.text-gray-200.mb-4.text-center {
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    color: #e5e7eb !important;
    text-align: center !important;
    margin-bottom: 0.75rem !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    line-height: 1.2 !important;
    position: relative !important;
    z-index: 10 !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    width: 100% !important;
    height: auto !important;
    overflow: visible !important;
  }

  .credentials-section .client-logo {
    height: 2rem !important;
    margin: 0 0.25rem !important;
  }

  .credentials-section .overflow-hidden {
    max-height: 100px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Credentials Grid Extra Small Mobile */
  .credentials-grid {
    gap: 1rem !important;
  }

  /* Credentials Card Extra Small Mobile - Static Design */
  .credentials-card {
    padding: 1rem !important;
    min-height: 220px !important;
    border-radius: 0.75rem !important;
  }

  /* Credentials Card Icon Extra Small */
  .credentials-card .w-20.h-20 {
    width: 3rem !important;
    height: 3rem !important;
  }

  .credentials-card .w-20.h-20 svg {
    width: 1.5rem !important;
    height: 1.5rem !important;
  }

  /* Credentials Card Heading Extra Small */
  .credentials-card h3 {
    font-size: 1.25rem !important;
    margin-bottom: 1rem !important;
  }

  /* Credentials Static Content Extra Small */
  .credentials-card .animate-marquee .flex > div {
    padding: 0.375rem !important;
    margin-bottom: 0.5rem !important;
    font-size: 0.8rem !important;
  }

  .credentials-card .animate-marquee .flex > div svg {
    width: 1rem !important;
    height: 1rem !important;
    margin-right: 0.5rem !important;
  }

  /* Partner Images Extra Small Mobile */
  .credentials-card .client-logo {
    height: 2.5rem !important;
    padding: 0.375rem !important;
    margin: 0.25rem !important;
  }

  /* Partner Images Container Extra Small */
  .credentials-card .animate-marquee .flex {
    gap: 0.75rem !important;
    padding: 0.75rem !important;
  }

  /* Text Content Extra Small Mobile */
  .credentials-card .animate-marquee .flex > div {
    padding: 0.5rem !important;
    margin-bottom: 0.5rem !important;
    font-size: 0.8rem !important;
  }

  .credentials-card .animate-marquee .flex > div svg {
    width: 0.875rem !important;
    height: 0.875rem !important;
    margin-right: 0.375rem !important;
  }

  /* Credentials Card Extra Small */
  .credentials-card {
    min-height: 160px !important;
  }

  .credentials-section .animate-marquee .flex > div svg {
    width: 0.875rem !important;
    height: 0.875rem !important;
  }

  .credentials-section .animate-marquee .flex > div {
    margin-right: 0.75rem !important;
  }

  /* About Section Extra Small */
  .about-section h2 {
    font-size: 1.5rem !important;
  }

  .about-section p {
    font-size: 0.875rem !important;
  }

  /* Why Choose Us Extra Small */
  .why-choose-section article {
    padding: 1rem !important;
  }

  .why-choose-section h3 {
    font-size: 1rem !important;
  }

  /* Clients Extra Small */
  .flex-none.w-64.h-40 {
    width: 240px !important;
    height: 100px !important;
  }

  /* Testimonials Extra Small */
  .flex-none.w-full.max-w-md.md\\:max-w-lg.lg\\:max-w-xl {
    width: 240px !important;
  }

  .testimonials-section article {
    padding: 1rem !important;
  }

  .testimonials-section blockquote {
    font-size: 0.75rem !important;
  }

  /* Section Headers Extra Small */
  header.text-center h2 {
    font-size: 1.5rem !important;
  }

  header.text-center p {
    font-size: 0.8rem !important;
  }
}

/* ===== VPS Hosting Page Styles ===== */
/* Add this to your existing style.css file */

/* VPS Hero Section */
.vps-hero {
  background: linear-gradient(rgba(15, 23, 42, 0.5), rgba(15, 23, 42, 0.8)),
    url("../images/Hero_2.webp");
  background-size: cover; /* This will make the image fit the container */
  background-position: center; /* This will center the image */
  background-attachment: fixed; /* Parallax effect */
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
  color: #ffffff;
  position: relative;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease-in-out;
}

/* Floating + Glow Animation */
.vps-hero-img {
  transition: transform 0.6s ease-in-out, box-shadow 0.6s ease-in-out;
  animation: float 6s ease-in-out infinite;
}

/* On hover: zoom, glow, and tilt slightly */
.vps-hero-img:hover {
  transform: scale(1.07) rotate(-1deg);
  box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3),
    0 0 30px rgba(0, 150, 255, 0.4);
}

/* Smooth floating effect */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.vps-hero-content {
  position: relative;
  z-index: 10;
}

/* Performance Metrics */
.vps-metrics {
  background: linear-gradient(to right, var(--dark), var(--dark-light));
  border: 1px solid var(--dark-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.vps-metric-item {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.vps-metric-item:last-child {
  border-right: none;
}

/* VPS Plans */
.vps-plan {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--dark-light);
  background: linear-gradient(to bottom, var(--dark), var(--dark-dark));
}
.vps-plan:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(234, 88, 12, 0.15);
  border-color: var(--primary-light);
}
.vps-plan.recommended {
  border: 2px solid var(--primary-light);
  position: relative;
  overflow: hidden;
}
.vps-plan.recommended::before {
  content: "RECOMMENDED";
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary-light);
  color: var(--dark-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-bottom-left-radius: 0.5rem;
}

/* Resource Bars */
.vps-resource-bar {
  height: 8px;
  background-color: var(--dark-light);
  border-radius: 4px;
  overflow: hidden;
}
.vps-resource-fill {
  height: 100%;
  background: linear-gradient(
    to right,
    var(--primary-dark),
    var(--primary-light)
  );
  border-radius: 4px;
}

/* Feature Comparison */
.vps-feature-table {
  border-collapse: separate;
  border-spacing: 0;
}
.vps-feature-table th {
  background-color: var(--dark-light);
  position: sticky;
  top: 0;
}
.vps-feature-table tr:nth-child(even) {
  background-color: rgba(30, 41, 59, 0.5);
}
.vps-feature-table td,
.vps-feature-table th {
  border-bottom: 1px solid var(--dark-light);
}
.vps-feature-table .feature-available {
  color: var(--success);
}
.vps-feature-table .feature-unavailable {
  color: #f87171; /* Red for unavailable */
}

/* Test Environment */
.vps-test-environment {
  background: linear-gradient(135deg, var(--dark-light) 0%, var(--dark) 100%);
  border: 1px solid var(--dark-light);
}

/* Data Center Locations */
.vps-location-card {
  border: 1px solid var(--dark-light);
  transition: all 0.3s ease;
}
.vps-location-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-3px);
}
.vps-location-pin {
  width: 12px;
  height: 12px;
  background-color: var(--primary-light);
  border-radius: 50%;
  position: relative;
}
.vps-location-pin::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
  top: 2px;
  left: 2px;
}

/* SEO Optimized Content Section */
.vps-seo-content {
  background: linear-gradient(to bottom, var(--dark-dark), var(--dark));
}
.vps-seo-content h2,
.vps-seo-content h3 {
  position: relative;
}
.vps-seo-content h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-light);
  margin: 1rem 0;
}
.vps-seo-content ul li {
  position: relative;
  padding-left: 1.5rem;
}
.vps-seo-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  background-color: var(--primary-light);
  border-radius: 50%;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .vps-metric-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .vps-feature-table {
    display: block;
    overflow-x: auto;
  }
}

@media (max-width: 768px) {
  .vps-hero {
    min-height: 70vh;
    background-position: center 40%;
  }
  .vps-plan.recommended::before {
    font-size: 0.65rem;
    padding: 0.2rem 0.8rem;
  }
}
/* ===== Dedicated Server Page Styles ===== */
/* Hero Section */
.dedicated-hero {
  background: linear-gradient(rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.9)),
    url("../images/servers_2.webp");
  background-size: cover; /* This will make the image fit the container */
  background-position: center; /* This will center the image */
  background-attachment: fixed; /* Parallax effect */
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
  color: #ffffff;
  position: relative;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease-in-out;
}

/* Performance Metrics */
.dedicated-metrics {
  background: linear-gradient(to right, var(--dark), var(--dark-light));
  border: 1px solid var(--dark-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dedicated-metric-item {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.dedicated-metric-item:last-child {
  border-right: none;
}

/* Server Plans */
.dedicated-server {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--dark-light);
  background: linear-gradient(to bottom, var(--dark), var(--dark-dark));
}
.dedicated-server:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(234, 88, 12, 0.15);
  border-color: var(--primary-light);
}
.dedicated-server.recommended {
  border: 2px solid var(--primary-light);
  position: relative;
  overflow: hidden;
}
.dedicated-server.recommended::before {
  content: "RECOMMENDED";
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary-light);
  color: var(--dark-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-bottom-left-radius: 0.5rem;
}

/* Management Options */
.dedicated-management {
  border: 1px solid var(--dark-light);
  transition: all 0.3s ease;
}
.dedicated-management:hover {
  transform: translateY(-5px);
  border-color: var(--primary-light);
}
.dedicated-management.recommended {
  border: 2px solid var(--primary-light);
}

/* Use Cases */
.dedicated-usecase {
  background-color: var(--dark);
  border: 1px solid var(--dark-light);
  transition: all 0.3s ease;
}
.dedicated-usecase:hover {
  transform: translateY(-5px);
  border-color: var(--primary-light);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .dedicated-metric-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 768px) {
  .dedicated-hero {
    min-height: 70vh;
    background-position: center 40%;
  }
  .dedicated-server.recommended::before {
    font-size: 0.65rem;
    padding: 0.2rem 0.8rem;
  }
}
/* Infinite scroll animation */
@keyframes infinite-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.animate-infinite-scroll {
  animation: infinite-scroll 30s linear infinite;
  display: flex;
  width: 200%;
}

.animate-infinite-scroll:hover {
  animation-play-state: paused;
}

/* Enhancements to existing classes */
.feature-card {
  transition: all 0.3s ease;
  background-color: var(--dark-light);
  border: 1px solid var(--dark);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(234, 88, 12, 0.3);
  border-color: var(--primary-light);
}

.client-logo {
  filter: grayscale(100%) brightness(2);
  transition: all 0.3s ease;
  opacity: 0.7;
}

.client-logo:hover {
  filter: grayscale(0) brightness(1);
  opacity: 1;
}

.glow {
  box-shadow: 0 0 15px rgba(234, 88, 12, 0.5);
}
/* Additional CSS specific to contact page */
.contact-map {
  height: 100%;
  min-height: 300px;
  border-radius: 0.75rem;
  border: 1px solid var(--dark);
}

.contact-form input,
.contact-form textarea {
  background-color: var(--dark-light);
  border: 1px solid var(--dark);
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.2);
}

.contact-info-card {
  transition: all 0.3s ease;
  border-left: 3px solid var(--primary-light);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  border-left-color: var(--accent);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
/* Additional CSS for legal pages */
.legal-content {
  counter-reset: section;
}

.legal-section {
  counter-increment: section;
  margin-bottom: 2.5rem;
}

.legal-section h2:before {
  content: counter(section) ". ";
}

.legal-subsection {
  counter-increment: subsection;
  margin-bottom: 1.5rem;
}

.legal-subsection h3:before {
  content: counter(section) "." counter(subsection) " ";
}

.legal-content ol {
  list-style-type: none;
  counter-reset: item;
  padding-left: 1.5rem;
}

.legal-content ol > li {
  counter-increment: item;
  margin-bottom: 0.75rem;
  position: relative;
}

.legal-content ol > li:before {
  content: counters(item, ".") ". ";
  position: absolute;
  left: -1.5rem;
  font-weight: 600;
  color: var(--primary-light);
}

.legal-content ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  margin-bottom: 0.5rem;
}

.legal-highlight {
  background-color: var(--dark-light);
  border-left: 3px solid var(--primary-light);
  padding: 1rem;
  margin: 1.5rem 0;
  border-radius: 0 0.375rem 0.375rem 0;
}

@media (max-width: 768px) {
  .legal-content ol {
    padding-left: 1rem;
  }

  .legal-content ol > li:before {
    left: -1rem;
  }
}
/* /////////////////////// */
.hero-badge {
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.9),
    rgba(15, 23, 42, 0.4)
  );
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 0 0 1rem 1rem; /* matches rounded corners of hero image */
  transition: background 0.4s ease-in-out;
}
.hero-card:hover .hero-badge {
  background: linear-gradient(
    to top,
    rgba(255, 165, 0, 0.15),
    rgba(15, 23, 42, 0.4)
  );
}

.icon-wrap {
  background: linear-gradient(to right, #f97316, #facc15);
  padding: 0.5rem;
  border-radius: 9999px;
  box-shadow: 0 0 10px rgba(249, 115, 22, 0.5);
  animation: pulse 2.5s infinite ease-in-out;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.4);
  }
  50% {
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.8);
  }
}

.badge-text {
  color: #ffffff;
  letter-spacing: 0.3px;
  transition: color 0.3s ease-in-out;
}
.hero-card:hover .badge-text {
  color: #facc15;
}
.hero-badge-floating {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  transition: all 0.4s ease-in-out;
}
.hero-badge-floating:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
  background: rgba(15, 23, 42, 0.95);
}

.icon-wrap {
  background: radial-gradient(circle at top left, #f97316, #facc15);
  padding: 0.5rem;
  border-radius: 9999px;
  box-shadow: 0 0 12px rgba(250, 204, 21, 0.6);
}

.badge-text {
  color: #fff;
  letter-spacing: 0.5px;
}
.hero-badge-floating:hover .badge-text {
  color: #facc15;
}
