@import url(/assets/theme/theme.css);

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

  /* Toggle Switch Styling */
  .billing-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 40px auto;
    padding: 0 1rem;
  }

  .toggle-label {
    font-size: 1rem;
    font-weight: 600;
    color: white;
  }

  .switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
  }

  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }

  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 30px;
  }

  .slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
  }

  input:checked + .slider {
    background-color: var(--primary-blue);
  }

  input:checked + .slider:before {
    transform: translateX(24px);
  }
/* Why Choose Section */
.why-choose-section {
  padding: 40px 5%;
  position: relative;
  overflow: hidden;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background-color: var(--bg-dark);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  max-width: 100%;
  height: auto;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.feature-card p {
  color: rgb(193,193,193);
  line-height: 1.6;
}
  
  
/* Technical Specifications Section */
.specifications-section {
  padding: 40px 5%;
  position: relative;
  background-color: rgba(25, 39, 80, 0.1);
}

.specifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.specification-card {
  background-color: rgba(255, 255, 255, 0.01);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.specification-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.specification-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.spec-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  color: rgb(193,193,193);
  line-height: 1.5;
}

.spec-icon {
  color: var(--primary-blue);
  margin-right: 0.75rem;
  font-weight: bold;
}
/*operating system */

.os-choice-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 5%;
  flex-direction:column;
  /*flex-wrap: wrap;*/
  /*background-color: ;*/

  
}

/*.os-text {*/
/*  max-width:100%;*/
/*}*/

.os-text h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  color: white;
  margin-bottom: 20px;
  
}

.os-text .highlight {
    color: var(--primary-blue);
    font-size: 48px;
    font-weight: 800;
    display:flex;
    justify-content:center;
   align-items: center;
}

.os-text p {
  font-size: 16px;
  color: white;
  display:flex;
    justify-content:center;
   align-items: center;
   padding:30px;
}

.os-icons {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.os-card {
     width: 140px;
    height: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.os-card img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin-bottom: 12px;
}

.os-card p {
  font-size: 16px;
  font-weight: 600;
  color: white;
}

/*connect page */

.workflow-section {
  padding: 30px 5%;
  /*background-color: #fff;*/
  font-family: 'Segoe UI', sans-serif;
}

.workflow-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.workflow-image img {
  max-width: 600px;
  width: 50%;
  border-radius: 12px;
}

.workflow-content {
  max-width: 600px;
}

.workflow-content h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.workflow-content .description {
  font-size: 16px;
  color: white;
  line-height: 1.8;
  margin-bottom: 16px;
}


/* navbar */

.hero {
  padding: 0 5%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  position: relative;
  overflow: hidden;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  z-index: 10;
}

.logo img {
  height: 55px;
}
.icon-hambrgr{
    background-color: transparent;
    border: none;
}
.hambrgr-div{
    margin-right: 15px;
}
.logo-main-div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.login-main-div img{
    width: 24px;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  background-color: #121212;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}



.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.nav-links a {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: 500;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.nav-links a:hover {
  opacity: 1;
}

.hero-content {
  max-width: 900px;
  margin: 30px auto 30px;
  text-align: center;
  position: relative;
  z-index: 4;
  
}

.hero-badge {
  background-color: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

h2 span {
  color: #3b82f6;
  position: relative;
}

.hero-description {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  opacity: 0.8;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.cta-primary-nav {
  background-color: #3b82f6;
  color: #f5f5f5 !important;
  padding: 10px 20px;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  opacity: 0.8 !important;
}

.cta-primary-nav:hover {
  background-color: #2563eb;
}

.trusted-by {
  text-align: center;
}

.trusted-by-text {
  font-size: 0.875rem;
  opacity: 0.6;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trusted-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trusted-logo {
  height: 35px;
  filter: brightness(1000%) contrast(100%) saturate(0%);
}

.grid-background {
  /*position: absolute;*/
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: 40px 40px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  z-index: 1;
}

.blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.15);
  filter: blur(80px);
  z-index: 0;
}

.blob-1 {
  top: -200px;
  right: -100px;
}

.blob-1-custom {
  top: -200px;
  left: -100px;
}

.blob-2 {
  bottom: -300px;
  left: -200px;
}

.blob-2-custom {
  bottom: -200px;
  right: -100px;
}


@media (min-width: 768px){
    .login-main-div{
        display: none;
    }
    .hambrgr-div{
        display: none;
    }
}

@media (max-width: 768px) {
  h1 {
    font-size: 3rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .hero-description {
    font-size: 1.125rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .trusted-logos {
    gap: 1.5rem;
  }
}


.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.dropdown-toggle svg {
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background-color: rgb(19,18,19);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  padding: 0.75rem 0;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

.dropdown-menu a {
  display: block;
  padding: 0.5rem 1.5rem;
  color: rgba(245, 245, 245, 0.8);
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background-color: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}
/* Theme toggle styles */
.theme-toggle {
    position: relative;
    width: 50px;
    height: 24px;
    margin: 0 10px;
}



.toggle-thumb {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    transition: transform 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#toggle-switch {
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0;
}

#toggle-switch:checked + .toggle-label .toggle-thumb {
    transform: translateX(26px);
}

/* Light mode styles */
body.light-mode {
    --bg-dark: #f5f5f5;
    --white: #333;
    --gray-400: #666;
    --gray-500: #888;
    --gray-700: #aaa;
    --border-light: #e0e0e0;
    background-color: #f9f9f9;
    color: #333;
}

body.light-mode .nav {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body.light-mode .nav-links a {
    color: #555;
}

body.light-mode .nav-links a:hover {
    color: #222;
}

body.light-mode .toggle-label {
    background-color: #e0e0e0;
    border-color: #ccc;
}

body.light-mode .server-series-card,
body.light-mode .faq-item,
body.light-mode .pricing-testimonial-card {
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    color: #333;
}

body.light-mode .server-series-card:hover,
body.light-mode .pricing-testimonial-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

body.light-mode .series-name,
body.light-mode .faq-question,
body.light-mode .pricing-testimonial-author-info h4 {
    color: #222;
}

body.light-mode .series-description,
body.light-mode .faq-answer,
body.light-mode .pricing-testimonial-content p {
    color: #666;
}

body.light-mode .hero-badge {
    background-color: rgba(59, 130, 246, 0.15);
}

body.light-mode .table-container {
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

body.light-mode .pricing-table th {
    color: #333;
}

body.light-mode .pricing-table a {
    color: var(--primary-blue);
}
/* Mobile dropdown styles */
.mobile-dropdown {
  position: relative;
}

.mobile-dropdown-toggle {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.mobile-dropdown-toggle svg {
  transition: transform 0.3s ease;
}

.mobile-dropdown-toggle.active svg {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  display: none;
  background-color: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.mobile-dropdown-menu a {
  padding-left: 2rem !important;
}

/* Blob Background Elements */
.blob {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.05);
  filter: blur(120px);
  z-index: 1;
}

.blob-1 {
  top: -300px;
  right: -300px;
}

.blob-2 {
  bottom: -400px;
  left: -200px;
}

.blob-3 {
  top: 20%;
  right: -300px;
}

.blob-4 {
  bottom: 10%;
  left: -300px;
}

/* Section Badge */
.section-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(59, 130, 246, 0.1);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.dot-blue, .dot-orange {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 4px;
}

.dot-blue {
  background-color: var(--primary-blue);
}

.dot-orange {
  background-color: var(--orange);
}

/* Section Titles and Text */
.section-title {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.section-description {
  font-size: 1.125rem;
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--gray-700);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* Buttons and CTAs */
.extra-option-card{
    background-color: var(--bg-dark);
}
/* Dedicated Hero Section */
.dedicated-hero-section {
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}

.dedicated-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.dedicated-hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #fff;
}

.dedicated-hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgb(193,193,193);
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

/* Dedicated Overview Section */
.dedicated-overview-section {
  padding: 80px 0;
  position: relative;
}

.overview-content {
  display: flex;
  justify-content: center;
}

.overview-text {
  max-width: 1000px;
}

.section-title {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
  text-align: center;
}

.section-description {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: rgb(193,193,193);
  text-align: center;
}

.feature-list {
  list-style-type: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.feature-list li {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: rgb(193,193,193);
  padding-left: 1.5rem;
  position: relative;
}

.feature-list li:before {
  content: "•";
  color: var(--white);
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -2px;
}

.feature-list li span {
  font-weight: 700;
}

.dedicated-overview-section .container {
  max-width: 100%;
  width: 100%;
  padding: 0 20px;
}
/* Add-ons Section */
.addons-section {
  padding: 40px 0;
  position: relative;
  background-color: rgba(25, 39, 80, 0.1);
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.addon-card {
  background-color: var(--bg-dark);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s ease;
}

.addon-card:hover {
  transform: translateY(-5px);
}

.addon-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.addon-card p {
  color: rgb(193,193,193);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.addon-price {
  font-weight: 700;
  color: var(--primary-blue) !important;
  font-size: 1.125rem;
  margin-top: auto;
}

/* Server Series Section */


.server-series-section {
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}

.server-series-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}
.check-icon {
  color: white;
  margin-right: 6px;
 
}

.server-series-card {
  background-color: var(--bg-dark);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center; /* Added for center alignment */
}

.server-series-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.series-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-color: var(--primary-blue);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.series-badge.popular {
  background-color: rgba(255, 255, 255, 0.02);
}

.series-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin: 0.5rem 0 1.5rem;
  text-align: center;
}

.series-specs {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%; /* Ensures it spans card width */
}

.spec-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.spec-detail {
  text-align: center;
}

.spec-icon {
  margin-right: 1rem;
  width: 24px;
  flex-shrink: 0;
}

.spec-icon img {
  width: 24px;
  height: 24px;
}

.spec-detail h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-400);
  margin: 0 0 0.25rem;
  text-align: center;
}

.spec-detail p {
  font-size: 0.95rem;
  color: var(--white);
  margin: 0;
  line-height: 1.4;
  text-align: center;
}

.series-description {
  color: rgb(193,193,193);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  text-align: center;
}

.series-price {
  font-size: 1.1rem;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
  text-align: center;
}

.highlight {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1.3rem;
}

.series-cta {
  display: block;
  text-align: center;
  background-color: var(--primary-blue);
  color: white;
  padding: 0.8rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.series-cta:hover {
  background-color: var(--dark-blue);
  transform: translateY(-2px);
}

.pricing-section{
  background-color: none;
  padding:30px 5%;
}
.table-section-title {
  text-align: center;
  font-size: 2.5rem;
  padding: 50px 5%;
  font-weight: bold;
}

.table-container {
  max-width: 1000px;
  margin: 0 auto;
  /* background:black; */
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.685);
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.pricing-table th,
.pricing-table td {
  padding: 20px 25px;
  border-bottom: 1px solid #eee;
}

.pricing-table th {
  /* background-color: #fff; */
  font-size: 1rem;
  font-weight: bold;
  color: white;
  text-align: left;

}

.pricing-table td {
  font-size: 1rem;
  vertical-align: middle;
  text-align: left;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table a {
  color: white;
  text-decoration: underline dotted;
}

.pricing-table td:nth-child(n+2) {
  text-align: left;
}

@media (max-width: 768px) {
  .pricing-table th, .pricing-table td {
    padding: 15px 10px;
  }

  
}



/* FAQ Section */

.faq-section {
  padding: 30px 5%;
  position: relative;
  margin-top: 70px;   /* Added spacing above */
  margin-bottom: 70px; /* Added spacing below */
}


.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}


.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-question {
  padding: 1.5rem 0;
  font-weight: 600;
  font-size: 1.125rem;
  color: #fff;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--gray-400);
}

/* Icon styles and animation */
.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform 0.3s;
}

.faq-icon:before,
.faq-icon:after {
  content: '';
  position: absolute;
  background-color: var(--white);
  transition: all 0.3s ease;
}

.faq-icon:before {
  width: 2px;
  height: 16px;
  top: 4px;
  left: 11px;
}

.faq-icon:after {
  width: 16px;
  height: 2px;
  top: 11px;
  left: 4px;
}

/* When question is active */
.faq-question.active {
  color: var(--white);
}

.faq-question.active .faq-icon:before {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-question.active .faq-icon:after {
  background-color: var(--gray-400);
}

.faq-answer {
  padding: 0 0 1.5rem;
  color: rgb(193,193,193);
  font-size: 1rem;
  line-height: 1.6;
  transition: all 0.3s ease;
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Testimonial Section */
.pricing-testimonial-section {
  padding: 80px 0;
}

.pricing-testimonial-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-testimonial-header .section-title {
  color: var(--white);
}

.pricing-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pricing-testimonial-card {
  background-color: #121212;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

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

.pricing-testimonial-content {
  margin-bottom: 1.5rem;
}

.pricing-testimonial-content p {
  color: var(--gray-500);
  font-size: 1.125rem;
  line-height: 1.6;
  font-style: italic;
}

.pricing-testimonial-author {
  display: flex;
  align-items: center;
}

.pricing-testimonial-author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
}

.pricing-testimonial-author-info h4 {
  margin: 0;
  color: var(--white);
  font-weight: 600;
}

.pricing-testimonial-author-info p {
  margin: 0;
  color: var(--gray-400);
  font-size: 0.875rem;
}


/* CTA Section */
.dedicated-cta-section {
  padding: 30px 5%;
  background-color: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.dedicated-cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.dedicated-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.dedicated-cta-description {
  font-size: 1.125rem;
  color: rgb(193,193,193);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.dedicated-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  z-index: 10;
  position: relative;
}


.dedicated-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  background-color: var(--primary-blue);
  z-index: 11;
  pointer-events: auto;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #2563eb;
}

/* Make sure blobs are behind content */
.blob {
  position: absolute;
  z-index: 0 !important;
  pointer-events: none;
}


/* Responsive Styles */
@media (max-width: 1100px) {
  .dedicated-cta-buttons,
  .pre-footer-cta__buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .dedicated-cta-buttons .btn,
  .pre-footer-cta__buttons .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .management-options-grid {
    grid-template-columns: 1fr;
  }
  
  .server-series-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .dedicated-hero-title {
    font-size: 2.5rem;
  }
  
  .dedicated-cta-title, 
  .section-title,
  .pre-footer-cta__title,
  .overview-text h2 {
    font-size: 2rem;
  }
  
  .specifications-grid,
  .features-grid,
  .use-cases-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-slide {
    padding: 30px;
  }
  
  .testimonial-content p {
    font-size: 1.1rem;
  }
  
  .testimonial-author-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .testimonial-company-logo {
    align-self: flex-start;
  }
  
  .testimonial-quote-mark {
    font-size: 80px;
    top: -10px;
    left: 15px;
  }
  
  .series-badge,
  .popular-tag {
    font-size: 0.65rem;
    padding: 0.3rem 0.8rem;
  }
}

@media (max-width: 480px) {
  .dedicated-hero-title {
    font-size: 2rem;
  }
  
  .dedicated-hero-description {
    font-size: 1rem;
  }
  
  .section-title,
  .dedicated-cta-title,
  .pre-footer-cta__title,
  .overview-text h2 {
    font-size: 1.75rem;
  }
  
  .testimonials-wrapper {
    min-height: 550px;
  }
  
  .testimonial-slide {
    padding: 25px 20px;
  }
  
  .testimonial-content p {
    font-size: 1rem;
  }
  
  .testimonial-author-image {
    width: 50px;
    height: 50px;
  }
  
  .series-name,
  .option-header h3 {
    font-size: 1.5rem;
  }
  
  .series-specs,
  .option-features {
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  /* Workflow Section */
  .workflow-container {
    flex-direction: column;
    gap: 24px;
  }

  .workflow-content h2 {
    font-size: 28px;
    text-align: center;
  }

  .workflow-content .description {
    font-size: 14px;
    text-align: center;
  }

  .workflow-image img {
    max-width: 100%;
    height: auto;
  }

  /* OS Choice Section */
  .os-choice-section {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
  }

  .os-text {
    max-width: 100%;
  }

  .os-text h2,
  .os-text .highlight {
    font-size: 32px;
  }

  .os-text p {
    font-size: 14px;
  }

  .os-icons {
    justify-content: center;
    gap: 16px;
  }

  .os-card {
    width: 120px;
    height: 150px;
  }

  .os-card img {
    width: 40px;
    height: 40px;
  }

  .os-card p {
    font-size: 14px;
  }
}
