/* General Styles */

  :root {
    --primary-color: #2665a9;
    --secondary-color: #f8f9fa;
    --accent-color: #ff6b35;
    --text-color: #333;
    --light-text: #666;
    --white: #fff;
    --gray-light: #eee;
    --gray-medium: #ddd;
    --gray-dark: #aaa;

    --nvps-primary: #2665a9;
    --nvps-secondary: #ff6b35;
    --nvps-dark: #0a1a2e;
    --nvps-light: #f8f9fa;
    --nvps-gray: #6c757d;
    --nvps-light-blue: #e6f0fa;
  }

* {
  margin: 0;  
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Titillium Web", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--primary-color);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}

.btn-primary {
  padding: 10px 15px;
  border-radius: 50px;
  font-size: 1.5rem;
  background-color: var(--primary-color);
  color: var(--white);
  margin-right: 1rem;
}

.btn-primary:hover {
  background-color: #1a4d8a;
}

.btn-secondary {
  padding: 10px 15px;
  border-radius: 50px;
  font-size: 1.5rem;
  background-color: var(--white);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Hero Section */
.hero {
  padding: 100px 0 80px;
  background-color: var(--secondary-color);
}

.hero .container {
  gap: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  /* border: 2px solid var(--primary-color);  */
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}
.hero .paragraph {
  font-size: 1.5rem;
  margin-bottom: 20px;
  letter-spacing: normal;
  line-height: 1.5;
  color: var(--light-text);
}
.hero .subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-color);
}

.hero-buttons {
  margin-top: 30px;
}

.hero-buttons .btn {
  margin-right: 15px;
}

.badge {
  display: inline-block;
  padding: 5px 15px;
  background-color: var(--accent-color);
  color: var(--white);
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 20px;
}

/* Features Section */
.features {
  padding: 80px 0;
  text-align: center;
}

.features h2 {
  font-size: 2rem;
  margin-bottom: 50px;
  color: var(--primary-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  padding: 30px;
  /* border-radius: 8px; */
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border-bottom: #1a4d8a 5px solid;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
}
.plans {
  padding: 60px 0;
}

/* Plans Section */
.pricing-header {
  text-align: center;
  margin-bottom: 40px;
}

.pricing-header h2 {
  font-size: 2.5rem;
  color: #2665a9;
  margin-bottom: 20px;
}

.billing-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  background: white;
  padding: 5px;
  border-radius: 50px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.billing-btn {
  padding: 10px 25px;
  border: none;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s ease;
  color: #666;
}

.billing-btn.active {
  background: #2665a9;
  color: white;
}

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

.plans .pricing-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  transition: transform 0.3s ease;
  position: relative;
  text-align: center;
}

.plans .pricing-card:hover {
  transform: translateY(-10px);
}

.plans .pricing-card.popular {
  border: 2px solid #ff6b35;
}

.popular-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background-color: #ff6b35;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.875rem;
}

.plan-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #2665a9;
}

.plan-subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
  font-weight: 600;
}

.plan-description {
  margin-bottom: 20px;
  color: #666;
}

.plans .price {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #333;
}
.plans .price-tag {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #0073ec;
}

.price.monthly {
  display: block;
}

.price.yearly {
  display: none;
}

.price-period {
  font-size: 1rem;
  color: #666;
  margin-bottom: 15px;
}

.savings {
  color: #ff6b35;
  font-weight: 600;
  margin-bottom: 25px;
  font-size: 0.9rem;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  width: 100%;
  margin-bottom: 15px;
  text-decoration: none;
}

.btn-primary {
  background-color: #2665a9;
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: #1a4d8a;
}

.btn-secondary {
  background-color: white;
  color: #2665a9;
  border: 1px solid #2665a9;
}

.btn-secondary:hover {
  background-color: #f0f7ff;
}

/* Fixed CSS for toggling between monthly and yearly */
.pricing-container.show-yearly .price.monthly,
.pricing-container.show-yearly .price-period.monthly,
.pricing-container.show-yearly .savings.monthly {
  display: none;
}

.pricing-container.show-yearly .price.yearly,
.pricing-container.show-yearly .price-period.yearly,
.pricing-container.show-yearly .savings.yearly {
  display: block;
}

.pricing-container:not(.show-yearly) .price.yearly,
.pricing-container:not(.show-yearly) .price-period.yearly,
.pricing-container:not(.show-yearly) .savings.yearly {
  display: none;
}

/* FAQ Section */

.accordion-section {
  background-color: #000000;
  padding: 2rem;
  width: 100%;
  height: fit-content;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.accordion-section h2 {
  font-size: 3rem;
  color: #fff;
  text-align: center;
  margin-bottom: 2rem;
}

.accordion-item {
  background-color: #000000;
  border-radius: 0.4rem;
}

.accordion-item hr {
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.accordion-link {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  background-color: #000000;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.accordion-link h3 {
  font-weight: 500;
  font-size: 20px;
}

.accordion-link i {
  color: #e7d5ff;
  padding: 0.5rem;
}

.accordion-link ul {
  display: flex;
  align-items: flex-end;
  list-style-type: none;
  margin-left: 25px;
}

.accordion-link li {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  padding: 0 0 1px 5px;
}

.accordion-link div {
  display: flex;
}

.accordion-link .ion-md-arrow-down {
  display: none;
}

.answer {
  max-height: 0;
  overflow: hidden;
  position: relative;
  background-color: #000;
  transition: max-height 650ms;
}

.answer p {
  color: #fff;
  font-size: 15px;
  padding: 2rem;
}

.accordion-item:target .answer {
  max-height: 40rem;
}

.accordion-item:target .accordion-link .ion-md-arrow-forward {
  display: none;
}

.accordion-item:target .accordion-link .ion-md-arrow-down {
  display: block;
}

/* Migration Section */
.migration-section {
  background-color: var(--secondary-color);
  border-radius: 10px;
  padding: 50px;
  text-align: center;
}

.migration-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.migration-header {
  margin-bottom: 30px;
}

.migration-header h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.migration-header p {
  font-size: 1.2rem;
  color: var(--light-text);
}

.divider {
  height: 1px;
  background-color: #ddd;
  width: 100px;
  margin: 30px auto;
}

/* Migration Content */
.migration-content {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.migration-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  max-width: 350px;
  text-align: left;
}

.migration-card h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.migration-list {
  list-style: none;
}

.migration-list li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}

.migration-list li:last-child {
  border-bottom: none;
}

.migration-list i {
  color: var(--accent-color);
  margin-right: 10px;
}
/* FAQ Section */
.whois-faq {
  padding: 60px 0;
  background: white;
}

.whois-faq h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: var(--dark);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
  background: white;
  padding: 20px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

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

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #f9f9f9;
}

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

/* Responsive */
@media (max-width: 768px) {
  .whois-hero h1 {
    font-size: 2.2rem;
  }

  .whois-search-form {
    flex-direction: column;
    border-radius: 15px;
  }

  .whois-search-input {
    padding: 15px 20px;
    border-radius: 15px 15px 0 0;
  }

  .whois-search-button {
    padding: 15px;
    border-radius: 0 0 15px 15px;
  }

  .whois-results {
    padding: 25px;
  }
}
/* CTA Button */
.migration-cta {
  margin-top: 40px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: #1a4d8a;
}

/* CTA Section */
.cta {
  padding: 80px 0;
  text-align: center;
  /* background-color: var(--primary-color); */
  color: var(--text-color);
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.25rem;
  margin-bottom: 30px;
}




/* Email Plans Section */

.email-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}
.email-section {
  text-align: center;
}

.section-header {
  margin-bottom: 40px;
}

.section-header h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 1.5rem;
  color: var(--text-color);
  margin-bottom: 10px;
}

.section-header h3 {
  font-size: 1.2rem;
  color: var(--light-text);
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
}

.divider {
  height: 1px;
  background-color: #ddd;
  width: 100px;
  margin: 40px auto;
}

/* Plans Grid */
.email-section .plans-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.email-section .plan-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 400px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.email-section .plan-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.email-section .plan-description {
  color: var(--light-text);
  margin-bottom: 20px;
  min-height: 60px;
}

.email-section .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.email-section .price small {
  font-size: 1rem;
  font-weight: 400;
}

.email-section .price-note {
  font-size: 0.9rem;
  color: var(--light-text);
  margin-bottom: 20px;
  font-weight: 600;
}

.email-section .savings-badge {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.features-list {
  list-style: none;
  text-align: left;
  margin-bottom: 25px;
}

.features-list li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 0.9rem;
}

/* CTA Button */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
}

.btn-primary:hover {
  background-color: #1a4d8a;
}

.vps-root {
  --vps-primary: #2665a9;
  --vps-secondary: #f96a4b;
  --vps-dark: #090e34;
  --vps-light: #f5f8ff;
  --vps-white: #ffffff;
  --vps-text-light: #637381;
  --vps-success: #13c296;
  /* font-family: "Inter", sans-serif; */
}

.vps-pricing-section {
  background-color: var(--vps-light);
  color: var(--vps-dark);
  line-height: 1.6;
  padding: 80px 0;
}

.vps-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.vps-btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--vps-primary);
  color: var(--vps-white);
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.vps-btn:hover {
  background: #3858d6;
  transform: translateY(-3px);
}

/* Pricing Section */
.vps-pricing-header {
  margin-bottom: 40px;
  text-align: center;
}

.vps-pricing-header h2 {
  font-size: 2.5rem;
  color: var(--vps-dark);
  margin: 0 0 10px;
}

.vps-pricing-header h3 {
  font-size: 1.5rem;
  color: var(--vps-text-light);
  margin: 0 0 10px;
}

.vps-pricing-header p {
  margin: 0;
}

.vps-pricing-toggle {
  display: flex;
  justify-content: center;
  background: var(--vps-white);
  padding: 5px;
  border-radius: 50px;
  width: fit-content;
  margin: 50px auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.vps-toggle-btn {
  padding: 10px 30px;
  border: none;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s ease;
  color: var(--vps-text-light);
}

.vps-toggle-btn.vps-active {
  background: var(--vps-primary);
  color: var(--vps-white);
}

/* .vps-toggle-btn:hover {
  color: var(--vps-text-light);
} */

.vps-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.vps-plan-card {
  background: var(--vps-white);
  border-radius: 10px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  position: relative;
  text-align: center;
}

.vps-plan-card.vps-popular {
  border: 2px solid var(--vps-secondary);
  transform: scale(1.05);
}

.vps-plan-card.vps-popular::before {
  content: "Most Popular";
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--vps-secondary);
  color: var(--vps-white);
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.8rem;
}

.vps-plan-card:hover {
  transform: translateY(-10px);
}

.vps-plan-card.vps-popular:hover {
  transform: scale(1.05) translateY(-10px);
}

.vps-plan-title {
  font-size: 1.5rem;
  color: var(--vps-dark);
  margin: 0 0 15px;
}

.vps-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--vps-primary);
  margin: 20px 0 5px;
}

.vps-price span {
  font-size: 1rem;
  font-weight: 400;
}

.vps-price-note {
  color: var(--vps-text-light);
  font-size: 0.9rem;
  margin: 0 0 20px;
}

.vps-savings-badge {
  display: inline-block;
  background: var(--vps-success);
  color: var(--vps-white);
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.vps-plan-features {
  list-style: none;
  margin: 30px 0;
  padding: 0;
  text-align: left;
}

.vps-plan-features li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}

.vps-plan-features li:last-child {
  border-bottom: none;
}

.vps-plan-features i {
  color: var(--vps-secondary);
  margin-right: 10px;
  min-width: 15px;
}

.vps-feature-highlight {
  font-weight: 600;
}

/* Price toggling styles */
.vps-price,
.vps-price-note,
.vps-savings-badge {
  transition: opacity 0.3s ease;
}

/* Ensure yearly elements are hidden by default */
.vps-price.vps-yearly,
.vps-savings-badge.vps-yearly {
  display: none;
}

/* VPS spec table styling */
.vps-specs-table {
  width: 100%;
  margin-bottom: 20px;
  border-collapse: collapse;
}

.vps-specs-table th {
  text-align: left;
  color: var(--vps-text-light);
  font-weight: normal;
  font-size: 0.85rem;
  padding: 5px 0;
}

.vps-specs-table td {
  text-align: right;
  font-weight: 600;
  padding: 5px 0;
}

.vps-specs-table tr {
  border-bottom: 1px solid #eee;
}

.vps-specs-table tr:last-child {
  border-bottom: none;
}

.nvps-header {
  background: linear-gradient(
    135deg,
    var(--nvps-primary) 0%,
    var(--nvps-secondary) 100%
  );
  color: white;
  padding: 20px 0;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  padding-bottom: 120px;
}

.nvps-header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.nvps-logo {
  font-size: 28px;
  font-weight: 800;
  display: flex;
  align-items: center;
}

.nvps-logo__icon {
  margin-right: 10px;
  color: var(--nvps-secondary);
}

.nvps-nav__list {
  display: flex;
  list-style: none;
}

.nvps-nav__item {
  margin-left: 30px;
}

.nvps-nav__link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nvps-nav__link:hover {
  color: var(--nvps-secondary);
}

.nvps-nav__link:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--nvps-secondary);
  transition: width 0.3s ease;
}

.nvps-nav__link:hover:after {
  width: 100%;
}




 /* Trust Section Styles */
    .wise-trust-section {
        background-color: #f8f9fa;
        padding: 80px 0;
        text-align: center;
    }
    
    .wise-trust-container {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .wise-trust-title {
        font-size: 2.2rem;
        color: #2c3e50;
        margin-bottom: 50px;
        font-weight: 700;
    }
    
    /* Testimonial Styles */
    .wise-testimonial-card {
        background: white;
        border-radius: 8px;
        padding: 30px;
        margin: 0 auto 40px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        max-width: 600px;
    }
    
    .wise-testimonial-quote {
        font-size: 1.2rem;
        line-height: 1.6;
        color: #4a5568;
        font-style: italic;
        margin-bottom: 15px;
        position: relative;
    }
    
    .wise-testimonial-quote:before,
    .wise-testimonial-quote:after {
        content: '"';
        color: #e2e8f0;
        font-size: 3rem;
        position: absolute;
    }
    
    .wise-testimonial-quote:before {
        top: -20px;
        left: -15px;
    }
    
    .wise-testimonial-quote:after {
        bottom: -40px;
        right: -15px;
    }
    
    .wise-testimonial-author {
        font-weight: 600;
        color: #4a5568;
    }
    
    /* Guarantee Styles */
    .wise-guarantee-box {
        background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
        color: white;
        padding: 30px;
        border-radius: 8px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .wise-guarantee-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .wise-guarantee-text {
        font-size: 1.1rem;
        line-height: 1.6;
        opacity: 0.9;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .wise-trust-section {
            padding: 60px 20px;
        }
        
        .wise-trust-title {
            font-size: 1.8rem;
        }
        
        .wise-testimonial-card,
        .wise-guarantee-box {
            padding: 20px;
        }
    }





/* Floating elements */
.nvps-floating-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.nvps-circle-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -200px;
}



.nvps-circle-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -150px;
}

.nvps-dots-pattern {
  position: absolute;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.15) 2px,
    transparent 2px
  );
  background-size: 20px 20px;
  z-index: 1;
}

.nvps-dots-1 {
  top: 100px;
  left: 10%;
}

.nvps-dots-2 {
  bottom: 50px;
  right: 15%;
}

/* Hero Section */
.nvps-hero {
  padding: 80px 0 0;
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.nvps-hero__title {
  font-size: 52px;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.nvps-hero__subtitle {
  font-size: 22px;
  margin: 0 auto 40px;
  opacity: 0.9;
  max-width: 700px;
}

.nvps-btn {
  display: inline-block;
  background-color: var(--nvps-secondary);
  color: white;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0 4px 6px rgba(255, 107, 53, 0.2);
}

.nvps-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.nvps-btn--outline {
  background: transparent;
  border: 2px solid white;
  margin-left: 15px;
}

.nvps-btn--outline:hover {
  background: white;
  color: var(--nvps-primary);
  box-shadow: none;
}

.nvps-btn--large {
  padding: 16px 40px;
  font-size: 18px;
}

.nvps-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Stats Section */
.nvps-stats {
  padding: 80px 0;
  margin-top: -80px;
}

.nvps-stats__container {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

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

.nvps-stat__number {
  font-size: 48px;
  font-weight: 700;
  color: var(--nvps-primary);
  margin-bottom: 5px;
  line-height: 1;
}

.nvps-stat__label {
  color: var(--nvps-gray);
  font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .section-header h1 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 1.3rem;
  }

  .section-header h3 {
    font-size: 1rem;
  }

  .plans-grid {
    flex-direction: column;
    align-items: center;
  }

  .plan-card {
    max-width: 100%;
  }
}





.business-section {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  margin-top: 30px;
 padding: 40px;
}

.text-content {
  max-width: 400px;
}

.text-content h1 {
  font-size: 48px !important;
  font-weight: bold !important;
  line-height: 1.2 !important;
  color: #000 !important;
  margin-bottom: 20px !important;
}

.text-content p {
  font-size: 18px !important;
  color: #333 !important;
}

.store-options {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.option-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  width: 280px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.option-card h2 {
  font-size: 22px;
  margin-top: 10px;
  /* margin-bottom: 10px; */
  margin-top: 50px;
}

.option-card p {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
}

.option-card img {
  margin-bottom: 20px ;
}

.logo {
  height: 40px;
}

.learn-btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  color: #fff;
}

.learn-btn.blue {
  background-color: #0070f3;
}

.learn-btn.purple {
  background-color: #a54af5;
}

.or {
  font-size: 24px;
  font-weight: bold;
  color: #b0b8c0;
  align-self: center;
}


























/* Responsive */
@media (max-width: 768px) {
  .migration-section {
    padding: 30px 20px;
  }

  .migration-header h2 {
    font-size: 1.5rem;
  }

  .migration-header p {
    font-size: 1rem;
  }

  .migration-card {
    max-width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .pricing-plans {
    grid-template-columns: 1fr;
  }

  .pricing-header h2 {
    font-size: 2rem;
  }

  .billing-toggle {
    width: 90%;
  }

  .billing-btn {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
}

/* CTA VPS */
/* CTA Section */
.nvps-cta {
  text-align: center;
  padding: 20px 0;
}

.nvps-cta__box {
  background: linear-gradient(
    135deg,
    var(--nvps-primary) 0%,
    var(--nvps-dark) 100%
  );
  color: white;
  padding: 60px;
  border-radius: 16px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.nvps-cta__box h2 {
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.nvps-cta__box p {
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

.nvps-cta__pattern {
  position: absolute;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.05) 2px,
    transparent 2px
  );
  background-size: 20px 20px;
  z-index: 1;
}

.nvps-cta__pattern--1 {
  top: 20px;
  left: 20px;
}

.nvps-cta__pattern--2 {
  bottom: 20px;
  right: 20px;
}






























/* Responsive Styles */

@media (max-width: 768px) {
  .pricing-plans {
    grid-template-columns: 1fr;
  }

  .migration-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .pricing-header h2 {
    font-size: 2rem;
  }
}
@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    margin-bottom: 40px;
  }

  .hero-buttons .btn {
    margin-bottom: 15px;
    margin-right: 0;
    display: block;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .header-actions {
    display: none;
  }

  .hero {
    padding: 120px 0 60px;
  }

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

  .hero .subtitle {
    font-size: 1.25rem;
  }
}
