/* 
    --background: #0d1119;
    --background-secondary: #151924;
    --background-dark: #000000;
    --text-color: #fff;    
    --offwhite: #b1b0b0;
 
    --accent-primary: #f05401; 
    --accent-primary-2: #ff8800;
    --accent-secondary: rgba(227, 110, 0, .4); 
*/

/* Base Styles */
:root {
    --background: #0d1119;
    --background-secondary: #151924;
    --background-dark: #000000;
    --text-color: #fff;    
    --offwhite: #b1b0b0;
   --lightgrey: #222835;
  --lightgreyhover: #222835;
  --lightergrey: #2c3342;
    --accent-primary: #da01f0; 
    --accent-secondary: rgb(218, 1, 240, 0.4); 
  --success: #28a745;
  --gradient: linear-gradient(135deg, #da01f0 0%, #ae00ff 100%);
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-strong: 0 10px 25px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --font-family: "Inter", sans-serif;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--text-color);
  background-color: var(--background);
  line-height: 1.6;
  transition: var(--transition);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
a {
  text-decoration: none;
  color: var(--text-color);
  transition: 0.3s ease-in-out;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1rem;
  color: var(--gray);
}



ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

section {
  padding: 80px 0;
}
/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}
@media screen and (max-width: 819px) {
  .section-header {
		width: 90%;
    margin: 0 auto;
    text-align: center;
	}
}

@media screen and (max-width: 867px) {
  .section-header {
		width: 90%;
    margin: 0 auto;
    text-align: center;
	}
}
/* Section Tags */
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(232, 1, 240, 0.2);
  background: rgba(240, 1, 208, 0.2);
  color: var(--accent-primary);
}
.section-header {
  text-align: center;
  margin-bottom: 20px;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: var(--gradient);
  color: var(--text-color);
  box-shadow: 0 4px 15px rgba(180, 41, 249, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(180, 41, 249, 0.4);
  color: var(--text-color);
}

.btn-outline {
  background: transparent;
  color: var(--text-color);
  border: 2px solid var(--accent-primary);
}

.btn-outline:hover {
  color: var(--text-color);
  transform: translateY(-3px);
 box-shadow: 0 6px 20px rgba(180, 41, 249, 0.4);
}

    /* Top Bar */
.topbar {
  background-color: var(--background-secondary);
  color: var(--text-color);
  padding: 10px 0;
  font-size: 0.9rem;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.announcement {
  display: flex;
  align-items: center;
  gap: 10px;
  color: gray;
}
.announcement strong, .announcement i {
  color: var(--text-color)
}
.announcement i, .docs-kb i {
  font-size: 1.25rem;
}
.docs-kb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: gray;
  text-decoration: none;
  font-weight: 900;
}

.docs-kb-dot {
  width: 17px;
  height: 17px;
  background-color: var(--success); /* Default green */
  border-radius: 50%;
  display: inline-block;
  position: relative;
  animation: pulse 1.5s infinite;
}
.docs-kb i {
  color: var(--accent-primary)
}
/* @keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 255, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 0, 0);
  }
} */

.docs-kb-dot.red {
  background-color: #ff3b3b;
  animation: pulse-red 1.5s infinite;
}

/* @keyframes pulse-red {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
  }
} */

.docs-kb-dot.orange {
  background-color: #ff9900;
  animation: pulse-orange 1.5s infinite;
}

/* @keyframes pulse-orange {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 153, 0, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 153, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 153, 0, 0);
  }
} */



    /* Navbar */
    .navbar {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: var(--background);
      backdrop-filter: blur(6px);
      padding: 20px 30px;
      border-bottom: 3px solid var(--background-secondary);
      box-shadow: var(--shadow);
    }

    .navbar .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .logo img {
      max-height: 54px;
      width: auto;
    }

    .logo h3 {
      font-size: 20px;
      font-weight: 900;
      text-transform: uppercase;
      color: var(--text-color);
    }

    .logo h3 span {
      color: var(--accent-primary);
    }
    .nav-btn {
      padding: 10px 20px;
      background: var(--accent-primary);
      color: var(--text-color);
      border: none;
      border-radius: 10px;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
      transition: 0.3s ease-in-out;
      text-decoration: none;
       text-transform: uppercase;
    }
    .nav-links {
      display: flex;
      gap: 24px;
      text-transform: capitalize;
      align-items: center;
    }

    .nav-link {
      font-size: 18px;
      font-weight: 600;
      color: var(--text-color);
      text-decoration: none;
      transition: 0.3s ease-in-out;
    }

    .nav-link:hover,
    .nav-link.active, .dropdown-button:hover {
      color: var(--accent-primary);
    }

    /* Dropdown */
    .dropdown {
      position: relative;
    }

    .dropdown-button {
      cursor: pointer;
      display: flex;
      align-items: center;
      font-size: 18px;
      font-weight: 600;
      transition: 0.3s ease-in-out;
    }
    .dropdown-button i {
      transition: transform 0.3s ease-in-out;
    }
/* When the dropdown is active, rotate the chevron 180 degrees */
.dropdown-button.active i {
  transform: rotate(90deg);
  /* transition: transform 0.3s ease-in-out; */
}
    .dropdown-menu {
      display: none;
      flex-direction: column;
      background: var(--background);
      border: 3px solid var(--background-secondary);
      padding: 10px;
      border-radius: 5px;
      position: absolute;
      top: 130%;
      right: 0;
      box-shadow: var(--shadow);
      z-index: 1000;
      min-width: 220px;
      text-transform: uppercase;
    }

    .dropdown-button.active + .dropdown-menu {
      display: flex;
    }

    .dropdown-item {
      padding: 8px;
      border-radius: 5px;
      color: var(--text-color);
      transition: 0.3s ease-in-out;

    }

    .dropdown-item:hover {
      background: var(--background-secondary);
    }

    .dropdown-description h4 {
      margin: 0;
      font-size: 14px;
    }

    .dropdown-description p {
      margin: 4px 0 0;
      font-size: 12px;
      color: gray;
    }

    /* Mobile Menu */
    .mobile-menu-btn {
      display: none;
      font-size: 22px;
      cursor: pointer;
      color: var(--text-color);
    }

    .mobile-active .nav-links {
      display: flex !important;
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
      margin-top: 15px;
      gap: 15px;
    }

@media (max-width: 867px) {
  /* Hide topbar */
  .topbar {
    display: none;
  }

  /* Adjust container to prevent side scroll */
  .container {
    padding: 0 12px;
    box-sizing: border-box;
    width: 100%;
    overflow-x: hidden;
  }

  /* Navbar spacing */
  .navbar {
    padding: 10px 0;
  }

  /* .navbar .container {
    flex-direction: column;
    align-items: flex-start;
  } */

  /* Make logo bigger and scale better */
  .logo img {
    height: 37px; /* Increase from 30px */
    width: auto;
  }

  .logo h3 {
    font-size: 22px;
  }

  /* Hide nav links by default on mobile */
  .nav-links {
    display: none;
    width: 100%;
  }

  /* Show mobile menu button */
  .mobile-menu-btn {
    display: block;
    font-size: 26px;
    cursor: pointer;
    color: var(--text-color);
    margin-left: auto;
  }

  /* Mobile nav when active */
  .mobile-active .nav-links {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 12px;
    margin-top: 12px;
    padding: 0;
  }

  /* Dropdowns in mobile */
  .dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 6px;
    border: 2px solid var(--background-secondary);
    background: var(--background);
    box-shadow: none;
    box-sizing: border-box;
  }
}


.cursor {
  display: inline-block;
  width: 3px;
  animation: blink 1s infinite;
  margin-left: 5px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Hero Section */
.hero {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  animation: fadeInLeft 1s ease;
}

.hero-content h1 {
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-image {
  position: relative;
  animation: fadeInRight 1s ease;
}

.server-illustration {
  position: relative;
  z-index: 1;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0.7;
  filter: blur(20px);
  animation: float 6s infinite ease-in-out;
}

.e1 {
  width: 100px;
  height: 100px;
  top: -30px;
  right: 20px;
  animation-delay: 0s;
}

.e2 {
  width: 70px;
  height: 70px;
  bottom: 40px;
  left: 0;
  animation-delay: 2s;
}

.e3 {
  width: 50px;
  height: 50px;
  bottom: -20px;
  right: 100px;
  animation-delay: 4s;
}

.animated-text {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards 0.5s;
}
.header-section {
  padding: 20px;
  background-color: #141820; /* or your preferred background color */
  background: url(/assets/images/data-center-operation-with-highperformance-networking-gear.jpg);
  background-size: cover;
  background-position: center;
}
.header-section .container {
text-align: center;
  height: 35vh;
  display: flex;
  justify-content: center; /* Center content horizontally */
  align-items: center;     /* Center content vertically */
  color: var(--text-color);
  /* backdrop-filter: blur(10px); */
  border-radius: 10px;
}

.header-section .container .text-content h1 {
  font-size: 2.9rem;
  margin: 0;
}

.header-section .container .text-content p {
  font-size: 1.4rem;
  margin-top: 10px;
}
.header-section .container .text-content p.legal-date {
  font-size: 1.3rem;
  margin-top: 10px;
  color: var(--offwhite);
}
/* Services Section */
.service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--background-secondary);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;

  display: flex; /* makes children align vertically */
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient);
  z-index: -1;
} */

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 10%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 20px;
  color: var(--text-color);
}

/* Optional content wrapper (if used in HTML) */
.card-content {
  flex-grow: 1;
}

/* Ensure link is pushed to the bottom */
.card-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  margin-top: auto; /* THIS makes it sit at the bottom */
  color: var(--accent-primary);
  /* background-color: var(--background-dark); */
  padding: 10px;
  border-radius: 6px;
}

.card-link i {
  transition: var(--transition);
}

.card-link:hover i {
  transform: translateX(5px);
}


/* Features Section */
.features {
  background-color: var(--background-gray);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.feature-item {
  background-color: var(--background-secondary);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 10%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--text-color);
}

/* Info Sections */
.info-section {
  padding: 100px 0;
}

.info-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.info-list {
  margin: 30px 0;
}

.info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-weight: 500;
}

.info-list i {
  color: var(--accent-primary);
}

.info-image img {
  border-radius: var(--border-radius-lg);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.infrastructure-section {
  background-color: var(--background-gray);
}

/* Pricing Section */
/* .pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.pricing-card {
  background-color: var(--background-secondary);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.pricing-card.featured {
  border: 2px solid transparent;
  background: linear-gradient(var(--background-secondary), var(--background-secondary)) padding-box, var(--gradient) border-box;
  transform: scale(1.05);
}

.pricing-header {
  padding: 30px;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.location {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
}

.amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-primary);
}

.period {
  color: var(--gray);
}

.pricing-body {
  padding: 30px;
}

.description {
  margin-bottom: 20px;
  text-align: center;
} */

.features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.features-list i {
  color: var(--accent-primary);
}

.pricing-footer {
  padding: 20px 30px 30px;
  text-align: center;
}

/* CTA Section */
.cta {
  background: var(--gradient);
  color: var(--text-color);
  padding: 80px 0;
  text-align: center;
}

.cta h2 {
  color: var(--text-color);
  margin-bottom: 20px;
}

.cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cta .btn-primary {
  background: white;
  color: var(--accent-primary);
}

.cta .btn-outline {
  border-color: var(--text-color);
  color: var(--text-color);
}

.cta .btn-outline:hover {
  background: white;
  color: var(--accent-primary);
}

/* Footer */
.footer {
  background-color: var(--background-secondary);
  color: var(--text-color);
  padding: 80px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 50px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 15%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--accent-primary);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: .98rem;
  margin-bottom: 25px;
  position: relative;
  font-weight: 900;
  text-transform: uppercase;
  
}

/* .footer-col h4::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 4px;
  background: var(--gradient);
  border-radius: 40px;
} */

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
 color: var(--offwhite);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent-primary);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  transition: var(--transition);
}

.footer-bottom p {
  color: rgba(var(--text-color), 0.7);
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: rgba(var(--text-color), 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-primary);
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero .container,
  .info-section .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .info-list {
    display: inline-block;
    text-align: left;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  .hero {
    padding: 60px 0;
   /* height: 900px; */
  }
.hero-content h1 {
  margin-bottom: 12px;
}

.hero-content p {
  font-size: 0.79rem;
  margin-bottom: 30px;
}
  .hero-buttons {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .header-section .container {
    height: 600px;
  }
}

@media (max-width: 576px) {
  section {
    padding: 60px 0;
  }

  .pricing-card.featured {
    transform: scale(1);
  }
}

/* Redesign server plans section to match the image
.server-plans {
  padding: 80px 0;
 
}

.server-plan {
  display: flex;
  align-items: center;
  background-color: var(--background-secondary);
  border-radius: var(--border-radius-lg);
  padding: 20px 30px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.server-plan:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.server-model {
  width: 15%;
  font-weight: 700;
  font-size: 1.2rem;
}

.server-specs {
  display: flex;
  width: 50%;
}

.spec-item {
  width: 100%;
  padding: 0 10px;
}

.spec-title {
  color: gray;
  font-size: 0.8rem;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.spec-value {
  font-weight: 600;
}

.server-price {
  width: 15%;
  text-align: right;
  color: var(--accent-primary);
  font-weight: 700;
  font-size: 1.2rem;
}

.server-action {
  width: 15%;
  text-align: right;
}

.server-action .btn {
  padding: 10px 20px;
  white-space: nowrap;
}

@media (max-width: 992px) {
  .server-plan {
    flex-wrap: wrap;
  }

  .server-model {
    width: 100%;
    margin-bottom: 15px;
  }

  .server-specs {
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 15px;
  }

  .spec-item {
    width: 50%;
    margin-bottom: 10px;
  }

  .server-price {
    width: 50%;
    text-align: left;
  }

  .server-action {
    width: 50%;
  }
}

@media (max-width: 576px) {
  .server-specs {
    flex-direction: column;
  }

  .spec-item {
    width: 100%;
  }

  .server-price {
    width: 100%;
    text-align: left;
    margin-bottom: 15px;
  }

  .server-action {
    width: 100%;
    text-align: center;
  }
} */
/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  .service-cards {
    grid-template-columns: 1fr 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Phone (≤768px) */
@media (max-width: 768px) {
  .service-cards {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}



    .stats-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr ;
      gap: 1.5rem;
      padding: 2rem;
      max-width: 1200px;
      margin: auto;
    }

    .stat-card {
      background: var(--background-secondary);
      border-radius: 10px;
      padding: 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      transition: 0.3s ease-in-out;
      
    }

    .stat-card:hover {
      transform: translateY(-5px);
    }

    .stat-text {
      display: flex;
      flex-direction: column;
    }

    .stat-title {
      font-size: 1.1rem;
      color: gray;
      text-transform: uppercase;
    }

    .stat-number {
      font-size: 1.7rem;
      font-weight: 900;
      color: var(--accent-primary);
    }

    .stat-icon {
      font-size: 3rem;
      color: var(--accent-primary);
        transform: rotate(40deg);
        transition: 0.3s ease-in-out;
    }

        .stat-card:hover .stat-icon {
    transform: rotate(0deg);
  }



  /* Mobile Responsive */
  @media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr; /* 1 per row on mobile */
  }
}


/* Giant Section for Mission, Story, and DEI */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Individual Card Styling */
.about-card {
  border-radius: 8px;
  padding: 20px;
  color: var(--text-color);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 400px;
}

/* Different Background Colors */
.mission-card,
.story-card,
.dei-card {
  background: var(--background-secondary);
}

/* Headings */
.about-card h1 {
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 900;
}

/* Founder Info Section */
.mission-statement-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.mission-statement img {
  height: auto;
  max-width: 600px;
  border-radius: 10px;
}

.mission-statement h2 {
  font-size: 19px;
  color: var(--text-color);
}

.mission-statement h2, .mission-statement h3, .mission-statement h4, .mission-statement h5, .mission-statement p{
  font-size: 15px;
  color: var(--text-color);
}

/* .founder-name {
  font-family: "Mrs Saint Delafield", serif;
} */

.company-roles {
  font-weight: bold;
  text-transform: uppercase;
}

/* Staff Team Section */
.staff-team-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.staff-team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.leadership-team-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.leadership-team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.staff-team-member {
  background: var(--background-secondary);
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.leadership-team-member {
  background: var(--background-secondary);
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.staff-team-image {
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
}
.leadership-team-image {
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
}

.team-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.team-member-name {
  font-size: 23px;
  /* margin-bottom: 2px; */
  font-weight: bold;
}
.team-member-about {
  color: gray;
}
.team-member-role {
  font-size: 16px;
  color: lightgray;
  font-weight: bold;
}

/* Responsive Design */
@media only screen and (max-width: 768px) {
  .about-section {
    grid-template-columns: 1fr;
  }

  .mission-statement-section {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 10px;
  }

  .mission-statement img {
    height: auto;
    max-width: 100%;
  }

  .mission-statement {
    font-size: 90%;
  }

  .about-card {
    height: 450px;
  }
  .staff-team-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 10px;
  }
  .leadership-team-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 10px;
  }
}


 .support-wrapper {
      max-width: 1200px;
      margin: auto;
    }

 .support-wrapper     h1 {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 10px;
    }

  .support-wrapper    p {
      color: #ccc;
      font-size: 1rem;
      margin-bottom: 40px;
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      
    }

    .support-card {
      background-color: var(--background-secondary);
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.3);
      transition: transform 0.3s;
    }
.support-card.recommended {
  border: 2px solid var(--accent-primary);
  position: relative;
}

.support-card.recommended .badge {
  position: absolute;
  top: -10px;
  right: 10px;
  background-color: var(--accent-primary);
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 12px;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
}
    .support-card:hover {
      transform: translateY(-5px);
    }

    .support-card i {
      font-size: 2rem;
      color: var(--accent-primary);
      margin-bottom: 15px;
    }

    .support-card h3 {
      margin: 0 0 10px;
      font-size: 1.2rem;
    }

    .support-card p {
      font-size: 0.95rem;
      margin-bottom: 15px;
      color: #aaa;
    }

    .support-card a {
  background: var(--gradient);
  color: var(--text-color);
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
  width: 100%;
}

    /* Mobile responsive styles */
    @media (max-width: 600px) {
.cards-grid {
  width: 90%;
  margin: 0 auto;
}
      .support-card {
        padding: 20px;
      }

      .support-card h3 {
        font-size: 1.1rem;
      }

      .support-card p {
        font-size: 0.9rem;
      }

      .support-card a {
        padding: 10px 16px;
        font-size: 0.9rem;
      }

      .cards-grid {
        grid-template-columns: 1fr;
      }
    }


    /********************* Network *********************/
.network-section {
  padding: 4rem 1rem;
  background: var(--bg-secondary);
  text-align: center;
}

.network-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.8rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.network-info-card {
  background: var(--background-secondary);
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.network-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.icon-container {
  font-size: 2.5rem;
  color: var(--accent-primary);
  margin-bottom: 1rem;
}

.text-container h1 {
  font-size: 1.8rem;
  color: var(--text-color);
  margin: 0.5rem 0;
}

.text-container p {
  font-size: 0.9rem;
  color: var(--text-color);
  opacity: 0.8;
}

.enterprise-network-section {
  
  padding: 5rem 1rem;
  color: var(--text-color);
  /* max-width: var(--max-width);
  margin: 0 auto; */
}

.enterprise-network-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.enterprise-network-section .section-tag {
  /* color: var(--accent-primary); */
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.enterprise-content {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  align-items: flex-start;
  justify-content: space-between;
}

.network-details {
  flex: 1;
  min-width: 300px;
}

.detail-item {
  margin-bottom: 2rem;
}

.detail-item h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--accent-primary);
}

.detail-item p {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.85;
}

.datacenter-carousel {
  position: relative;
  max-width: 600px;
  margin: auto;
}

.carousel-images {
  position: relative;
}

.carousel-item {
  display: none;
  position: relative;
}

.carousel-item.active {
  display: block;
}

.carousel-item img {
  width: 100%;
  max-height: 300px;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.datacenter-address {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.9rem;
  pointer-events: none;
}

.carousel-buttons {
  margin-top: 10px;
  text-align: center;
}

.carousel-buttons button {
  margin: 0 5px;
  padding: 6px 10px;
  background: var(--lightgrey);
  color: var(--text-color);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.carousel-buttons button:hover {
  background: var(--lightergrey);
}

.trusted-brands-section {
  padding: 4rem 1rem;
  /* background: var(--background-secondary); */
  color: var(--text-color);
  text-align: center;
  /* max-width: var(--max-width);
  margin: 0 auto; */
}

.trusted-brands-section .section-header {
  margin-bottom: 2rem;
}

.trusted-brands-logos {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

.trusted-brand-logo img {
  max-width: 130px;
  height: auto;
}
/* Mobile and smaller screen adjustments */
@media (max-width: 900px) {
  .trusted-brands-logos {
      grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .trusted-brands-logos {
      grid-template-columns: 1fr 1fr;
  }
  .network-info-cards {
    grid-template-columns: 1fr;
  }
}




/* .loc-cards-section {
  padding: 2rem;
  color: var(--text-color);
} */

.loc-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .loc-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .loc-cards {
    grid-template-columns: 1fr;
  }
}

.loc-card {
  background-color: var(--background-secondary);
  /* border: 2px solid var(--lightergrey); */
  border-radius: var(--border-radius);
  padding: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}
.loc-card .note {
  font-size: 11px;
  font-style: italic;
  color: var(--offwhite);
}
.loc-card:hover {
  transform: translateY(-5px);
}

.card-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}

/* Style for flag emojis */
.card-header span.flag {
  font-size: 1.5rem;
  line-height: 1;
}

/* Still supports flag images if needed */
.card-header img {
  width: 24px;
  height: auto;
  border-radius: 4px;
}


.card-ping {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.95rem;
  padding-top: 0.5rem;
  
}

.card-ping span {
  display: flex;
  justify-content: space-between;
  background-color: var(--lightgrey);
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  
}
.loc-card hr.divider {
  margin: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
}
.card-ping span::before {
  font-weight: 500;
  color: var(--text-color);
  min-width: 80px;
  content: attr(data-label);
}

/* Dallas */
#US-DALL-currentPing::before { content: "Current: "; }
#US-DALL-minPing::before { content: "Min: "; }
#US-DALL-avgPing::before { content: "Avg: "; }
#US-DALL-maxPing::before { content: "Max: "; }
#US-DALL-jitter::before { content: "Jitter: "; }

/* Chicago */
#US-CHIC-currentPing::before { content: "Current: "; }
#US-CHIC-minPing::before { content: "Min: "; }
#US-CHIC-avgPing::before { content: "Avg: "; }
#US-CHIC-maxPing::before { content: "Max: "; }
#US-CHIC-jitter::before { content: "Jitter: "; }

/* London */
#UK-LON-currentPing::before { content: "Current: "; }
#UK-LON-minPing::before { content: "Min: "; }
#UK-LON-avgPing::before { content: "Avg: "; }
#UK-LON-maxPing::before { content: "Max: "; }
#UK-LON-jitter::before { content: "Jitter: "; }




.careers-section {
  /* background-color: var(--background-secondary); */
  /* padding: 2rem; */
  /* border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4); */
  display: flex;
  flex-direction: column;
  gap: 3rem;
}


.career {
  background-color: var(--background-secondary); /* or a slightly lighter/darker shade */
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

    .career-header h2 {
      margin-top: 0;
      font-size: 1.8rem;
    }

    .career-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      font-size: 0.95rem;
      color: #aaa;
      margin-bottom: 1.5rem;
    }

    .career-description h3 {
      margin-top: 1.5rem;
      color: var(--accent-primary);
    }

    .career-description ul {
      padding-left: 1.2rem;
    }

    .career-description li {
      margin-bottom: 0.5rem;
    }

    .apply-button {
      display: inline-block;
      margin-top: 2rem;
      padding: 0.75rem 1.5rem;
      background: var(--gradient);
      color: var(--text-color);
      border: none;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }




    /********************* Legal *********************/








.legal-text h1 {
color: var(--accent-primary);
font-size: 32px; /* Slightly smaller for mobile */
font-weight: 900;
/* padding-top: 40px;
padding-bottom: 20px; */
text-transform: uppercase;
margin: 0;
line-height: 1.2;
text-align: center;
}

.legal-text p {
color: var(--text-color);
padding: 0 15px;
line-height: 1.8;
font-size: 14px; /* Reduced font size for better readability on mobile */
text-align: justify;
margin: 15px 0;
}

.legal-text li {
color: var(--text-color);
padding: 5px 15px;
font-size: 18px;
line-height: 1.8;
margin-left: 0;
list-style-type: disc;
margin-bottom: 10px;
}

.legal-text a {
color: var(--accent-primary);
text-decoration: underline;
transition: color 0.3s;
}

.legal-text a:hover {
color: var(--accent-primary);
}
.legal-text hr.divider {
  margin: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
}
.legal-info {
font-size: 22px;
font-weight: 600;
margin: 20px 0;
color: var(--text-color);
text-align: left;
}

/* Tablet and larger screen adjustments */
@media (min-width: 768px) {
.legal-text h1 {
  font-size: 30px; /* Larger for tablets and desktops */
  margin-left: 0;
  text-align: left;
}

.legal-text p, .legal-text li {
  font-size: 15px;
  margin-left: 50px;
  padding-right: 50px;
}

.legal-text ul {
  padding-left: 70px;
}
}

/* Larger screen adjustments (desktop) */
@media (min-width: 1024px) {
.legal-text {
  padding: 40px;
}

.legal-text p, .legal-text li {
  font-size: 19px;
  line-height: 1.8;
}
}
