/* Import Plus Jakarta Sans */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;700;800&display=swap');

/* Color Variables and Theme Support */
:root {
  --color-primary: #007bff;
  --color-primary-dark: #0056b3;
  --color-secondary: #2a3b4d;
  --color-accent: #00c9a7;
  --color-bg: #f7fbff;
  --color-bg-alt: #fff;
  --color-surface: #f9f9f9;
  --color-text: #222;
  --color-text-muted: #6c757d;
  --color-border: #e5e7eb;
  --color-success: #22c55e;
  --color-danger: #ef4444;
  --color-warning: #f59e42;
  --color-hero-gradient: linear-gradient(120deg, #e3f0ff 0%, #b3e0ff 100%);
  --pricing-green-bg: #E7F8E9;
  --pricing-blue-bg: #EAF5FF;
  --pricing-orange-bg: #FFF4ED;
  --pricing-green: #1ca14a;
  --pricing-blue: #007bff;
  --pricing-orange: #e26a1b;
  --pricing-green-btn: #7be495;
  --pricing-orange-btn: #fbbf85;
  --cta-hero-bg: #0284FF;
  --cta-hero-bg-dark: #0a2540;
  --features-carousel-bg: #E5F6FF;
  --feature-card-bg: #fff;
  --features-carousel-bg-dark: #16232e;
  --feature-card-bg-dark: #232b3a;
}

[data-theme="dark"] {
  --color-primary: #339cff;
  --color-primary-dark: #007bff;
  --color-secondary: #cbd5e1;
  --color-accent: #00e6c3;
  --color-bg: #181f2a;
  --color-bg-alt: #232b3a;
  --color-surface: #232b3a;
  --color-text: #f3f4f6;
  --color-text-muted: #a0aec0;
  --color-border: #2d3748;
  --color-success: #4ade80;
  --color-danger: #f87171;
  --color-warning: #fbbf24;
  --color-hero-gradient: linear-gradient(120deg, #232b3a 0%, #181f2a 100%);
  --pricing-green-bg: #1e2e23;
  --pricing-blue-bg: #1a2633;
  --pricing-orange-bg: #2d211a;
  --pricing-green: #7be495;
  --pricing-blue: #339cff;
  --pricing-orange: #ffb26b;
  --pricing-green-btn: #2ecc71;
  --pricing-orange-btn: #e26a1b;
}

[data-theme="light"] {
  /* Explicitly set to default, for easy toggling */
  --color-primary: #007bff;
  --color-primary-dark: #0056b3;
  --color-secondary: #2a3b4d;
  --color-accent: #00c9a7;
  --color-bg: #f7fbff;
  --color-bg-alt: #fff;
  --color-surface: #f9f9f9;
  --color-text: #222;
  --color-text-muted: #6c757d;
  --color-border: #e5e7eb;
  --color-success: #22c55e;
  --color-danger: #ef4444;
  --color-warning: #f59e42;
}

html, body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-bg);
  transition: background 0.3s, color 0.3s;
}

.body-text {
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
  color: var(--color-text);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.subsection-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  color: var(--color-text);
  margin-top: 0;
}

h1 { font-size: 2.8rem; line-height: 1.1; }
h2 { font-size: 2.8rem; line-height: 1.1; }
h3 { font-size: 1.5rem; font-weight: 700; }

/* Remove previous font overrides */
body[style],
body *[style*="font-family"] {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}

/* Utility for highlighted text */
.text-highlight { color: var(--color-primary); font-weight: 700; }

/* Trusted Companies Carousel Section */
.trusted-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-secondary);
  letter-spacing: 0.5px;
}



.trusted-carousel .company-logo {
  
  
  margin: 0 20px;
  transition: transform 0.3s cubic-bezier(.4,2,.6,1), filter 0.3s;
  display: block;
}
.trusted-carousel .item:hover .company-logo {
  transform: scale(1.08);
  
}
.trusted-carousel .item{
  background-color: var(--white);
  border-radius: 8px;
}

.owl-dots {
  text-align: center;
  margin-top: 18px;
}
.owl-dot span {
  width: 12px;
  height: 12px;
  background: var(--color-border);
  display: inline-block;
  border-radius: 50%;
  margin: 0 5px;
  transition: background 0.2s;
}
.owl-dot.active span {
  background: var(--color-primary);
}

/* Hero Section Background Gradient */
.hero-section-bg {
  background-image: url('../images/bnr-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

[data-theme="dark"] .hero-section-bg {
  background-image: none;
  background-color: #000;
}

/* Section and Surface Backgrounds for Theme Support */
.section-bg {
  background: var(--color-bg-alt) !important;
}
/* .surface-bg {
  background: var(--color-surface) !important;
} */

/* Navbar link color for dark/light mode */
.navbar-nav .nav-link {
  color: var(--color-text) !important;
  transition: color 0.2s;
}
.navbar-nav .nav-link.active a,
.navbar-nav .nav-link:focus a,
.navbar-nav .nav-link:hover a{
  color: var(--color-primary) !important;
}

/* Pricing Plan Section */
.pricing-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.pricing-toggle-pill {
  display: inline-flex;
  background: #eaf5ff;
  border-radius: 999px;
  padding: 4px 6px;
  box-shadow: 0 1px 4px 0 rgba(44,62,80,0.04);
}
.toggle-btn {
  border: none;
  background: transparent;
  color: var(--color-text);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 8px 28px;
  border-radius: 999px;
  outline: none;
  transition: background 0.2s, color 0.2s;
  position: relative;
  cursor: pointer;
}
.toggle-btn.active, .toggle-btn:focus {
  background: #fff;
  color: var(--pricing-blue);
  box-shadow: 0 2px 8px 0 rgba(44,62,80,0.04);
}
.toggle-btn:not(.active):hover {
  background: #f3f8fd;
}
.badge-pill-discount {
  background: var(--pricing-blue);
  color: #fff;
  font-size: 0.85em;
  font-weight: 700;
  border-radius: 999px;
  padding: 2px 10px;
  margin-left: 8px;
  vertical-align: middle;
  display: inline-block;
}

.pricing-card {
  border-radius: 22px;
  border: 1.5px solid var(--color-border);
}
.pricing-card:hover, .pricing-card:focus-within {
  border-color: var(--color-primary);
}

.plan-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.plan-start {
  background: var(--pricing-green-bg);
}
.plan-premium {
  background: var(--pricing-blue-bg);
}
.plan-ultimate {
  background: var(--pricing-orange-bg);
}
.text-orange {
  color: var(--pricing-orange) !important;
}

.plan-btn {
  border-radius: 999px;
  font-weight: 700;
  padding: 10px 24px;
  font-size: 1rem;
  border: none;
  outline: none;
  transition: all 0.3s ease;
}
.plan-btn-green {
  background: var(--pricing-green);
  color: #fff;
}
.plan-btn-green:hover, .plan-btn-green:focus {
  background: var(--pricing-green-btn);
  color: #fff;
}
.plan-btn-blue {
  background: var(--pricing-blue);
  color: #fff;
}
.plan-btn-blue:hover, .plan-btn-blue:focus {
  background: var(--pricing-blue-btn);
  color: #fff;
}
.plan-btn-orange {
  background: var(--pricing-orange);
  color: #fff;
}
.plan-btn-orange:hover, .plan-btn-orange:focus {
  background: var(--pricing-orange-btn);
  color: #fff;
}

.plan-price {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-text);
}
.price-unit {
  font-size: 1rem;
  color: var(--color-text-muted);
}
.plan-billing, .plan-caption {
  color: var(--color-text-muted);
}

.plan-subtitle {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: 1rem;
}

.plan-features li {
  margin-bottom: 0.5rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}
.plan-features i {
  font-size: 0.8rem;
}

.plan-ribbon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  background-color: var(--color-primary);
  color: #fff;
  padding: 4px 12px;
  border-radius: 8px 8px 0 0;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ribbon-text {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991.98px) {
  .pricing-card {
    min-height: 420px;
  }
  .plan-title {
    font-size: 1.1rem;
  }
}
@media (max-width: 767.98px) {
  .pricing-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .plan-ribbon {
    font-size: 0.7rem;
    padding: 3px 10px;
  }
}
@media (max-width: 575.98px) {
  .pricing-card {
    min-height: 380px;
  }
  .plan-title {
    font-size: 1rem;
  }
}

/* Dark Theme Specific Overrides for Pricing Section */
[data-theme="dark"] .pricing-toggle-pill {
  background: #333d4d;
}

[data-theme="dark"] .toggle-btn {
  color: var(--color-text-muted);
}

[data-theme="dark"] .toggle-btn.active,
[data-theme="dark"] .toggle-btn:focus {
  background: var(--color-bg-alt);
  color: var(--color-primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .toggle-btn:not(.active):hover {
  background: #2a3440;
}

[data-theme="dark"] .badge-pill-discount {
  background: var(--color-primary);
}

[data-theme="dark"] .pricing-card {
  background: var(--color-surface);
  border-color: var(--color-border);
}

[data-theme="dark"] .pricing-card:hover,
[data-theme="dark"] .pricing-card:focus-within {
  border-color: var(--color-primary);
}

[data-theme="dark"] .plan-title,
[data-theme="dark"] .plan-price {
  color: var(--color-text);
}

[data-theme="dark"] .plan-billing,
[data-theme="dark"] .plan-caption,
[data-theme="dark"] .plan-subtitle,
[data-theme="dark"] .plan-features li {
  color: var(--color-text-muted);
}

[data-theme="dark"] .plan-btn-green {
  background: var(--pricing-green);
  color: #fff;
}

[data-theme="dark"] .plan-btn-green:hover,
[data-theme="dark"] .plan-btn-green:focus {
  background: var(--pricing-green-btn);
}

[data-theme="dark"] .plan-btn-blue {
  background: var(--pricing-blue);
  color: #fff;
}

[data-theme="dark"] .plan-btn-blue:hover,
[data-theme="dark"] .plan-btn-blue:focus {
  background: var(--pricing-blue-btn);
}

[data-theme="dark"] .plan-btn-orange {
  background: var(--pricing-orange);
  color: #fff;
}

[data-theme="dark"] .plan-btn-orange:hover,
[data-theme="dark"] .plan-btn-orange:focus {
  background: var(--pricing-orange-btn);
}

[data-theme="dark"] .plan-ribbon {
  background: var(--color-primary);
}

/* Support Feature Section */
.support-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.support-img-container {
  position: relative;
  display: inline-block;
  border-radius: 20px;
  overflow: hidden;
}
.support-img {
  border-radius: 20px;
  width: 100%;
  height: auto;
  display: block;
}

.support-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(20%, 50%); /* Adjust to center the badge relative to its size */
  z-index: 10;
}
.badge-card {
  padding: 10px 15px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}
.badge-icon {
  background-color: #d1fae5; /* Light green for success */
  color: var(--color-success);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-right: 12px;
}
.badge-text {
  font-size: 1rem;
  line-height: 1.2;
}

.support-feature-grid {
  margin-top: 2rem;
}

.support-feature {
  background: var(--color-surface);
  padding: 1rem 1.25rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  border: 1px solid var(--color-border);
}
.support-feature:hover, .support-feature:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  border-color: var(--color-primary);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin-right: 1rem;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
[data-theme="light"] .feature-icon i {
     color: #222; /* or another dark color */
   }
@media (max-width: 991.98px) {
  .support-img-container {
    margin-bottom: 4rem;
  }
  .support-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 767.98px) {
  .support-img-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 4rem auto;
  }
  .support-section {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .support-feature-grid .col-sm-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Customer Success Stories Section */
.success-stories-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-desc {
  font-size: 1rem;
  color: var(--color-text-muted);
}

.story-card {
  background: var(--color-bg-alt);
  border-radius: 16px;
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
}
.story-card:hover, .story-card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border-color: var(--color-primary);
}

.story-avatar {
  background-color: var(--color-surface);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-card-body {
  padding: 1.5rem 1rem 1rem 1rem;
  width: 100%;
}

.story-rating {
  margin-bottom: 0.5rem;
}
.trustpilot-star {
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: #00b67b; /* Trustpilot green */
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path fill="currentColor" d="M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 34.6-17.7 54.4l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l129 68.3c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-19.8 8.5-50.6-17.7-54.4L382 150.2 316.7 17.8c-11.7-25.8-49.4-25.8-61.1 0z"></path></svg>') no-repeat center;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path fill="currentColor" d="M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 34.6-17.7 54.4l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l129 68.3c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-19.8 8.5-50.6-17.7-54.4L382 150.2 316.7 17.8c-11.7-25.8-49.4-25.8-61.1 0z"></path></svg>') no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
  vertical-align: middle;
}

.story-headline {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.story-link {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.story-link:hover, .story-link:focus {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

@media (max-width: 991.98px) {
  .story-avatar { min-height: 110px; }
  .story-card-body { padding: 1.1rem 0.8rem 1rem 0.8rem; }
}
@media (max-width: 767.98px) {
  .success-stories-section { padding-top: 2rem; padding-bottom: 2rem; }
  .story-card { margin-bottom: 1.2rem; }
}
@media (max-width: 575.98px) {
  .story-avatar { min-height: 80px; }
  .story-card-body { padding: 0.8rem 0.5rem 0.8rem 0.5rem; }
}

[data-theme="dark"] .story-card {
  background: var(--color-bg-alt);
  border-color: var(--color-border);
}
[data-theme="dark"] .story-avatar {
  background: var(--color-surface);
}
[data-theme="dark"] .story-headline {
  color: var(--color-text);
}

/* Hosting Features Carousel Section */
.features-carousel-section {
  padding: 60px 0;
  background: var(--features-carousel-bg);
}

.feature-card {
  background: var(--feature-card-bg);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}
.feature-card:hover, .feature-card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  border-color: var(--color-primary);
}

.feature-img-block {
  position: relative;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
}

.feature-main-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

.feature-icon-topleft {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.feature-icon-bottomright {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.feature-content {
  padding: 0 10px;
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.8rem;
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.feature-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  background-color: var(--color-primary);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.feature-btn:hover, .feature-btn:focus {
  background-color: var(--color-primary-dark);
  color: #fff;
  text-decoration: none;
}

.carousel-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  color: var(--color-primary);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}
.carousel-nav-arrow.left {
  left: -20px;
}
.carousel-nav-arrow.right {
  right: -20px;
}
.carousel-nav-arrow:hover, .carousel-nav-arrow:focus {
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.owl-nav {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
  font-size: 0;
}
.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  background: none !important;
  color: inherit !important;
  font-size: 0 !important;
  padding: 0 !important;
  width: 45px !important;
  height: 45px !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 991.98px) {
  .feature-card {
    padding: 20px;
  }
  .feature-main-img {
    height: 180px;
  }
}
@media (max-width: 767.98px) {
  .features-carousel-section {
    padding: 32px 0;
  }
  .feature-card {
    padding: 15px;
  }
  .feature-title {
    font-size: 1.1rem;
  }
  .feature-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

[data-theme="dark"] .features-carousel-section {
  background: var(--features-carousel-bg-dark);
}

[data-theme="dark"] .feature-card {
  background: var(--feature-card-bg-dark);
  border-color: var(--color-border);
}

[data-theme="dark"] .carousel-nav-arrow {
  background: rgba(45, 55, 72, 0.8);
  color: var(--color-primary);
}

[data-theme="dark"] .carousel-nav-arrow:hover,
[data-theme="dark"] .carousel-nav-arrow:focus {
  background: var(--color-bg-alt);
}

/* Web Hosting Features Grid Section */
.hosting-features-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.hosting-features-grid {
  margin-top: 2rem;
}

.feature-card-grid {
  background: var(--color-surface);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  text-align: center;
  transition: all 0.3s ease;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.feature-card-grid:hover, .feature-card-grid:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  border-color: var(--color-primary);
}

.feature-icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
}

.feature-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.feature-card-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

@media (max-width: 991.98px) {
  .feature-card-grid { min-height: 200px; }
}
@media (max-width: 767.98px) {
  .hosting-features-section { padding-top: 32px; padding-bottom: 32px; }
  .feature-card-grid { min-height: 160px; }
}

[data-theme="dark"] .feature-card-grid {
  background: var(--color-bg-alt);
  border-color: var(--color-border);
}
[data-theme="dark"] .feature-card-grid:hover,
[data-theme="dark"] .feature-card-grid:focus-within {
  border-color: var(--color-primary);
}

/* Hosting Plan Cards Section */
.hosting-plan-cards-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background: var(--color-primary);
}

.hosting-plan-cards-section .section-title,
.hosting-plan-cards-section .section-desc {
  color: #fff;
}

.hosting-plan-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

@media (min-width: 768px) {
  .hosting-plan-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .plan-card {
    margin-bottom: 0 !important; /* Remove margin-bottom for grid items */
  }
}

@media (max-width: 767.98px) {
  .hosting-plan-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .plan-card {
    margin-bottom: 0 !important;
  }
}

.plan-card {
  background: var(--color-bg-alt);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.plan-card-blue {
  background: var(--color-bg);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.plan-card-light {
  background: var(--color-surface);
  color: var(--color-text);
}

.plan-icon-bg {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  margin: 0 auto 1.5rem auto;
}
.plan-icon-blue {
  background-color: #007bff;
}
.plan-icon-green {
  background-color: #28a745;
}

.plan-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}
/* .plan-card-blue .plan-title,
.plan-card-blue .plan-desc,
.plan-card-blue .plan-price {
  color: #fff;
} */

.plan-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}
/* .plan-card-blue .plan-desc {
  color: rgba(255, 255, 255, 0.8);
} */

.plan-price {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  
}
/* .plan-card-blue .plan-price {
  color: #fff;
} */

.plan-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #ffc107;
  color: #333;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

@media (max-width: 991.98px) {
  .plan-card { min-height: 320px; padding: 22px; }
  .plan-title { font-size: 1.1rem; }
}
@media (max-width: 767.98px) {
  .hosting-plan-cards-section { padding-top: 40px; padding-bottom: 40px; }
  .plan-card { min-height: 220px; padding: 14px; }
  .plan-title { font-size: 1rem; }
}

[data-theme="dark"] .hosting-plan-cards-section {
  background: var(--color-bg);
}
[data-theme="dark"] .plan-card-light {
  background: var(--color-bg-alt);
  border-color: var(--color-border);
}

/* [data-theme="dark"] .plan-card-blue {
  background: var(--color-primary);
} */

[data-theme="dark"] .plan-badge {
  background-color: var(--color-warning);
}

.hosting-plan-cards-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.hosting-plan-cards-flex .plan-card {
  flex: 1 1 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
}

@media (max-width: 991.98px) {
  .hosting-plan-cards-flex {
    gap: 20px;
  }
  .hosting-plan-cards-flex .plan-card {
    flex: 1 1 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}

@media (max-width: 767.98px) {
  .hosting-plan-cards-flex {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .hosting-plan-cards-flex .plan-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* FAQ Section */
.faq-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.faq-section .section-title {
  font-size: 2rem;
  font-weight: 700;
}

.faq-section .section-desc {
  font-size: 1rem;
  color: var(--color-text-muted);
}

.faq-accordion {
  margin-bottom: 30px;
}

.faq-card {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-card-header {
  background: var(--color-bg-alt);
  border-bottom: none;
  padding: 0;
  min-height: 60px;

}

.faq-btn {
  width: 100%;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text);
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
}

.faq-btn:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.faq-btn:focus {
  box-shadow: none;
}

.faq-toggle-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  margin-left: 1rem;
  margin-top: -2px;
}

.faq-btn[aria-expanded="true"] ~ .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-card-body {
  padding: 1rem 1.25rem 1.25rem 1.25rem;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
}

@media (max-width: 767.98px) {
  .faq-section { padding-top: 32px; padding-bottom: 32px; }
  .faq-accordion { margin-bottom: 24px; }
}

[data-theme="dark"] .faq-section {
  background: var(--color-bg);
}

[data-theme="dark"] .faq-card {
  background: var(--color-bg-alt);
  border-color: var(--color-border);
}

[data-theme="dark"] .faq-card-body {
  border-color: var(--color-border);
}

/* Latest Blog Section */
.latest-blog-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.blog-section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-text);
}

.blog-section-subtitle {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
}

.blog-card {
  background: var(--color-bg-alt);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid var(--color-border);
}
.blog-card:hover, .blog-card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border-color: var(--color-primary);
}

.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.blog-card-date {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.blog-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}
.blog-card-btn-icon {
  margin-left: 0.5rem;
  transition: margin-left 0.3s ease;
}

.blog-card-btn:hover, .blog-card-btn:focus {
  color: var(--color-primary-dark);
  text-decoration: none;
}
.blog-card-btn:hover .blog-card-btn-icon,
.blog-card-btn:focus .blog-card-btn-icon {
  margin-left: 0.8rem;
}

@media (max-width: 991.98px) {
  .blog-card-img { height: 180px; }
}
@media (max-width: 767.98px) {
  .blog-section-title { font-size: 2rem; }
  .blog-card-img { height: 160px; }
  .col-md-4 { flex: 0 0 50%; max-width: 50%; }
}
@media (max-width: 575.98px) {
  .blog-section-title { font-size: 1.5rem; }
  .blog-card-img { height: 140px; }
  .col-md-4 { flex: 0 0 100%; max-width: 100%; }
}

[data-theme="dark"] .latest-blog-section {
  background: var(--color-bg);
}

[data-theme="dark"] .blog-card {
  background: var(--color-bg-alt);
  border-color: var(--color-border);
}

[data-theme="dark"] .blog-card-title {
  color: var(--color-text);
}

[data-theme="dark"] .blog-card-btn {
  color: var(--color-primary);
}
[data-theme="dark"] .blog-card-btn:hover,
[data-theme="dark"] .blog-card-btn:focus {
  color: var(--color-primary-dark);
}

/* CTA Hero Section */
.cta-hero-section {
  background: var(--cta-hero-bg);
  color: #fff;
  padding: 60px 0;
 
}
[data-theme="dark"] .cta-hero-section {
  background: var(--cta-hero-bg-dark);
}

.cta-hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}

@media (min-width: 576px) {
  .cta-hero-title { font-size: 2.5rem; }
}

@media (min-width: 992px) {
  .cta-hero-title { font-size: 2.25rem; }
}

@media (min-width: 1200px) {
  .cta-hero-title { font-size: 2.7rem; }
}

.cta-hero-lead {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cta-hero-highlight-sky {
  color: #87ceeb; /* Sky blue */
}

.cta-hero-desc {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.cta-hero-highlight-green {
  color: #90ee90; /* Light green */
  font-weight: 600;
  font-size: 1.1rem;
}

.cta-hero-btn {
  background-color: #fff;
  color: var(--color-primary);
  padding: 12px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cta-hero-btn:hover, .cta-hero-btn:focus {
  background-color: #f0f0f0;
  color: var(--color-primary-dark);
  text-decoration: none;
}

.cta-hero-img {
  width: 100%;
  max-width: 500px;
  height: auto;
}

@media (max-width: 991.98px) {
  .cta-hero-section { padding: 40px 16px; }
  .cta-hero-title { font-size: 2rem; }
  .cta-hero-img { max-width: 100%; margin: 0 auto; }
}
@media (max-width: 767.98px) {
  .cta-hero-section { padding: 32px 8px; }
  .cta-hero-title { font-size: 1.5rem; text-align: center; }
  .cta-hero-lead, .cta-hero-desc, .cta-hero-highlight-green { text-align: center; }
  .cta-hero-btn { display: block; margin: 18px auto 0 auto; }
  .cta-hero-img { margin: 24px auto 0 auto; }
}

/* Footer Section */
.footer-section {
  background: var(--color-secondary);
  color: #fff;
  padding-top: 60px;
  padding-bottom: 20px;
}

.footer-brand img {
  filter: brightness(0) invert(1);
}

.footer-address {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-style: normal;
}

.footer-social {
  margin-top: 1rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-right: 1.25rem;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}
.footer-social-link:hover, .footer-social-link:focus {
  color: #fff;
  text-decoration: none;
}

.social-icon-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  font-size: 1rem;
  transition: background 0.2s ease;
}

.social-link-label {
  line-height: 1;
}

[data-theme="dark"] .social-icon-circle {
  background: rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .social-link-label {
  color: var(--color-text-muted);
}

[data-theme="dark"] .footer-social-link:hover .social-icon-circle,
[data-theme="dark"] .footer-social-link:focus .social-icon-circle {
  background: var(--color-primary);
}

[data-theme="dark"] .footer-social-link:hover .social-link-label,
[data-theme="dark"] .footer-social-link:focus .social-link-label {
  color: var(--color-primary);
}

@media (max-width: 767.98px) {
  .footer-social {
    justify-content: center;
  }
  .footer-social-link {
    margin: 0 10px; /* Adjust spacing for mobile */
  }
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}
.footer-links a:hover, .footer-links a:focus {
  color: #fff;
  text-decoration: none;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 991.98px) {
  .footer-main > [class^='col-'] {
    margin-bottom: 30px;
  }
}
@media (max-width: 767.98px) {
  .footer-main {
    text-align: center;
  }
  .footer-section {
    padding-top: 40px;
    padding-bottom: 20px;
  }
  .footer-brand,
  .footer-address,
  .footer-heading,
  .footer-links {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-social {
    justify-content: center;
  }
}

[data-theme="dark"] .footer-section {
  background: var(--color-bg-alt);
}

[data-theme="dark"] .footer-heading {
  color: var(--color-text);
}

[data-theme="dark"] .footer-links a {
  color: var(--color-text-muted);
}
[data-theme="dark"] .footer-links a:hover,
[data-theme="dark"] .footer-links a:focus {
  color: var(--color-primary);
}

[data-theme="dark"] .footer-divider {
  border-color: var(--color-border);
}

[data-theme="dark"] .footer-bottom {
  color: var(--color-text-muted);
}

/* General Reset & Utilities */
html, body, h1, h2, h3, h4, h5, h6, .section-title, .subsection-title, .blog-section-title, .blog-section-subtitle, .blog-card-title, .blog-card-date, .footer-section, .footer-heading, .footer-links, .footer-address, .footer-bottom, .faq-section, .faq-card, .faq-btn, .plan-title, .plan-desc, .plan-price, .plan-subtitle, .plan-features, .feature-title, .feature-desc, .feature-card-title, .feature-card-desc, .story-headline, .story-link, .navbar, .nav-link, .dropdown-menu, .dropdown-item, .btn, .badge, .plan-btn, .plan-caption, .plan-billing, .toggle-btn, .pricing-card, .support-feature, .support-img, .support-badge, .feature-btn, .feature-card, .feature-card-grid, .plan-card, .plan-badge, .plan-icon-bg, .plan-icon-blue, .plan-icon-green, .plan-card-blue, .plan-card-light, .plan-card-title, .plan-card-desc, .plan-card-price, .plan-card-btn, .plan-card-btn-icon, .carousel-nav-arrow, .owl-dot, .owl-dot span, .owl-dot.active span, .owl-nav, .owl-nav button.owl-prev, .owl-nav button.owl-next, .trusted-title, .trusted-carousel-wrapper, .company-logo, .trusted-carousel .company-logo, .trusted-carousel .item:hover .company-logo, .trusted-carousel .item, .trusted-carousel, .trusted-carousel .owl-dots, .trusted-carousel .owl-dot, .trusted-carousel .owl-dot.active, .trusted-carousel .owl-dot span, .trusted-carousel .owl-dot.active span, .trusted-carousel .owl-nav, .trusted-carousel .owl-nav button.owl-prev, .trusted-carousel .owl-nav button.owl-next, .trusted-carousel .carousel-nav-arrow, .trusted-carousel .carousel-nav-arrow.left, .trusted-carousel .carousel-nav-arrow.right, .trusted-carousel .carousel-nav-arrow:hover, .trusted-carousel .carousel-nav-arrow:focus, .trusted-carousel .carousel-nav-arrow.left:hover, .trusted-carousel .carousel-nav-arrow.right:hover, .trusted-carousel .carousel-nav-arrow.left:focus, .trusted-carousel .carousel-nav-arrow.right:focus {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.blog-section-title, .blog-card-title, .plan-title, .feature-title, .feature-card-title, .footer-heading, .section-title, .subsection-title, h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

.blog-section-subtitle, .blog-card-date, .plan-caption, .plan-billing, .plan-subtitle, .feature-desc, .feature-card-desc, .footer-address, .footer-bottom, .footer-links a, .faq-section .section-desc, .faq-card-body, .story-link, .story-card-date {
  font-weight: 400;
}

.hosting-dropdown-parent { position: relative; }
.hosting-dropdown-menu {
  position: absolute;
  top: 100%; /* Position below the toggle */
  left: 50%; /* Center horizontally */
  transform: translateX(-50%);
  min-width: 280px;
  padding: 1.5rem;
  margin-top: 1.2rem; /* Spacing from the navbar item */
  background-color: var(--color-bg-alt);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.hosting-dropdown-parent.show .hosting-dropdown-menu,
.hosting-dropdown-parent:hover .hosting-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-arrow {
  position: absolute;
  top: -10px; /* Position above the dropdown menu */
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 10px;
  overflow: hidden;
}

.dropdown-arrow::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  background-color: var(--color-bg-alt);
  transform: rotate(45deg);
  top: 8px;
  left: 50%;
  margin-left: -7px;
  border-radius: 3px;
  box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.05);
}

.hosting-dropdown-menu ul { padding: 0; margin: 0; }
.dropdown-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--color-text);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 0;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}
.dropdown-link:last-child { margin-bottom: 0; }
.dropdown-link:focus, .dropdown-link:hover {
  background-color: var(--color-surface);
  text-decoration: none;
  color: var(--color-primary);
}

.dropdown-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
}

.dropdown-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 0.2rem;
}

.dropdown-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  margin-left: 0.5rem;
}

.badge-green {
  background-color: #28a745;
  color: #fff;
}
.badge-cyan {
  background-color: #17a2b8;
  color: #fff;
}

@media (max-width: 575.98px) {
  .hosting-dropdown-menu {
    left: 0;
    right: 0;
    transform: translateX(0);
    width: auto;
    max-width: calc(100% - 2rem);
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .dropdown-arrow {
    left: 50%;
    margin-left: -10px;
  }
}

[data-theme="dark"] .hosting-dropdown-menu {
  background-color: var(--color-bg-alt);
}

[data-theme="dark"] .dropdown-arrow::after {
  background-color: var(--color-bg-alt);
}

[data-theme="dark"] .dropdown-title {
  color: var(--color-text);
}

[data-theme="dark"] .dropdown-desc {
  color: var(--color-text-muted);
}

.hosting-dropdown-parent .hosting-dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) translateX(-50%);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.hosting-dropdown-parent:hover .hosting-dropdown-menu,
.hosting-dropdown-parent.show .hosting-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) translateX(-50%);
}

@media (max-width: 991.98px) {
  .navbar-nav {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .navbar-nav > .nav-item {
    margin-bottom: 0.5rem;
  }
  .hosting-dropdown-menu {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-top: 0;
    padding: 1rem;
    box-shadow: none;
    border: 1px solid var(--color-border);
    width: 100%;
  }
  .dropdown-arrow {
    display: none;
  }
}

.theme-toggle-btn { font-size: 1.5rem; }

.signup-btn-fw { font-weight: 500; }

.launch-tag {
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--color-primary);
}

.hero-title-lh { line-height: 1.1; }

.price-strike { text-decoration: line-through; }

.hero-price-fs { font-size: 2.8rem; }

.hero-price-unit-fs { font-size: 1.2rem; }

.get-started-btn {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.hero-img-mw { max-width: 370px; }

.abs-top-right { top: 18px; right: -30px; }
.abs-bottom-left { bottom: -30px; left: -30px; }

.minw-140 { min-width: 140px; }
.minw-180 { min-width: 180px; }

.icon-circle-lg {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.fs-11 { font-size: 1.1rem; }
.fs-115 { font-size: 1.15rem; }

.maxw-500 {
  max-width: 500px;
}
.maxw-700 {
  max-width: 700px;
}
.maxw-720 {
  max-width: 720px;
}

.mx-auto { margin: 0 auto; }

.fixed-theme-toggle-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background: var(--color-bg-alt);
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.theme-toggle-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-text);
}
.fixed-theme-toggle-container .theme-toggle-btn:hover, 
.fixed-theme-toggle-container .theme-toggle-btn:focus {
  background: var(--color-surface);
}

[data-theme="dark"] .fixed-theme-toggle-container {
  background: var(--color-bg-alt);
}

[data-theme="dark"] .fixed-theme-toggle-container .theme-toggle-btn {
  color: var(--color-text);
}

[data-theme="dark"] .fixed-theme-toggle-container .theme-toggle-btn:hover,
[data-theme="dark"] .fixed-theme-toggle-container .theme-toggle-btn:focus {
  background: var(--color-surface);
}

/* Product Hero Section */
.product-hero-section {
  padding: 60px 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

[data-theme="dark"] .product-hero-section {
  background: var(--color-bg-alt);
  border-color: var(--color-border);
}

.product-hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.product-hero-desc {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.product-hero-image-container {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.product-hero-main-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.05);
  border-radius: 12px;
}

.product-hero-uptime-card {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-bg-alt);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  min-width: 220px;
}

.product-hero-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.uptime-icon {
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  margin-right: 12px;
  position: relative;
}

.uptime-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 50%;
  opacity: 0.2;
  animation: pulse 2s infinite;
}

.uptime-percent {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
}

.uptime-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

@media (max-width: 991.98px) {
  .product-hero-title {
    font-size: 2.2rem;
  }
  .product-hero-image-container {
    margin-bottom: 4rem;
  }
  .product-hero-uptime-card {
    padding: 0.8rem 1.2rem;
    min-width: 180px;
  }
  .product-hero-badge {
    font-size: 0.8rem;
    padding: 6px 10px;
  }
}
@media (max-width: 767.98px) {
  .product-hero-section {
    padding: 32px 0;
  }
  .product-hero-title {
    font-size: 1.8rem;
    text-align: center;
  }
  .product-hero-desc,
  .product-hero-badge {
    text-align: center;
  }
  .get-started-btn {
    display: block;
    margin: 18px auto 0 auto;
  }
  .product-hero-image-container {
    margin-bottom: 3rem;
  }
  .product-hero-uptime-card {
    bottom: -15px;
    padding: 0.7rem 1rem;
    min-width: 150px;
  }
  .product-hero-badge {
    top: 10px;
    right: 10px;
  }
}

[data-theme="dark"] .product-hero-uptime-card,
[data-theme="dark"] .product-hero-badge {
  background: var(--color-bg-alt);
}

[data-theme="dark"] .uptime-percent {
  color: var(--color-primary);
}

/* Hosting Platforms Section */
.hosting-platforms-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background: var(--color-bg);
}

.platform-card {
  background: var(--color-bg-alt);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  text-align: center;
  transition: all 0.3s ease;
}
.platform-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  border-color: var(--color-primary);
}

.platform-card-img {
  width: 100px;
  height: auto;
  margin-bottom: 1rem;
}

.platform-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.platform-card-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

@media (max-width: 767.98px) {
  .platform-card {
    padding: 1rem;
  }
  .platform-card-img {
    width: 80px;
  }
  .platform-card-title {
    font-size: 1.1rem;
  }
  .platform-card-desc {
    font-size: 0.85rem;
  }
}

[data-theme="dark"] .hosting-platforms-section {
  background: var(--color-bg);
}

[data-theme="dark"] .platform-card {
  background: var(--color-bg-alt);
  border-color: var(--color-border);
}

[data-theme="dark"] .platform-card:hover {
  border-color: var(--color-primary);
}

[data-theme="dark"] .platform-card-title {
  color: var(--color-text);
}

[data-theme="dark"] .platform-card-desc {
  color: var(--color-text-muted);
}

/* Why Choose Section */
.why-choose-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background: var(--color-bg);
}

[data-theme="dark"] .why-choose-section {
  background: var(--color-bg-alt);
}

.why-choose-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.choose-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.choose-feature-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 1rem;
}

[data-theme="dark"] .choose-feature-icon-circle {
  background: var(--color-primary);
}

.choose-feature-title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text);
  margin-bottom: 0.3rem;
}

.choose-feature-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

@media (max-width: 991.98px) {
  .why-choose-img {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767.98px) {
  .why-choose-section {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .why-choose-img {
    margin-bottom: 1.5rem;
  }
}

/* Services Hero Section */
.services-hero-section {
  padding: 60px 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.services-hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.services-hero-desc {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.services-hero-image-container {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.services-hero-main-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.services-hero-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-bg-alt);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  min-width: 220px;
  color: var(--color-text);
}

.service-card {
  background: var(--color-bg-alt);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  text-align: center;
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border-color: var(--color-primary);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
}
.service-icon i {
  color: #fff;
}

.service-title {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
.service-features li {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-features li i {
  color: var(--color-success);
  margin-right: 0.5rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}
.service-link i {
  margin-left: 0.5rem;
  transition: margin-left 0.3s ease;
}

.service-link:hover {
  color: var(--color-primary-dark);
  text-decoration: none;
}
.service-link:hover i {
  margin-left: 0.8rem;
}

.additional-service-card {
  background: var(--color-bg-alt);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  text-align: center;
  transition: all 0.3s ease;
}
.additional-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  border-color: var(--color-primary);
}

.additional-service-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
}
.additional-service-icon i {
  color: #fff;
}

.additional-service-title {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.additional-service-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.why-choose-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.why-choose-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 1rem;
}
.why-choose-icon i {
  color: #fff;
}

.why-choose-title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text);
  margin-bottom: 0.3rem;
}

.why-choose-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

@media (max-width: 991.98px) {
  .services-hero-title {
    font-size: 2.2rem;
  }
  .services-hero-badge {
    padding: 0.8rem 1.2rem;
    min-width: 180px;
  }
}
@media (max-width: 767.98px) {
  .services-hero-section {
    padding: 32px 0;
  }
  .services-hero-title {
    font-size: 1.8rem;
    text-align: center;
  }
  .service-card,
  .additional-service-card {
    margin-bottom: 20px;
  }
  .service-icon,
  .additional-service-icon {
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
  }
}

.simple-services-hero {
  padding: 60px 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

[data-theme="dark"] .simple-services-hero {
  background: var(--color-bg-alt);
}

.simple-services-hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.simple-services-hero-desc {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

@media (max-width: 991.98px) {
  .simple-services-hero {
    padding: 40px 0;
  }
  .simple-services-hero-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 767.98px) {
  .simple-services-hero {
    padding: 32px 0;
  }
  .simple-services-hero-title {
    font-size: 1.8rem;
    text-align: center;
  }
  .simple-services-hero-desc {
    text-align: center;
  }
}

.hosting-types-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background: var(--color-bg);
}

.hosting-type-title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
  margin-bottom: 0.8rem;
}

.hosting-type-desc {
  font-size: 1rem;
  color: var(--color-text-muted);
}

@media (max-width: 991.98px) {
  .hosting-type-title {
    font-size: 1.5rem;
  }
  .hosting-type-desc {
    font-size: 0.9rem;
  }
  .hosting-types-section .row {
    margin-bottom: 20px; /* Add spacing between rows on tablets */
  }
}

@media (max-width: 767.98px) {
  .hosting-types-section {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .hosting-type-title {
    font-size: 1.3rem;
    text-align: center;
  }
  .hosting-type-desc {
    text-align: center;
  }
}

/* Form Styling */
.card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.form-control {
  border-radius: 8px;
  padding: 0rem 1rem;
  font-size: 1rem;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  background: var(--color-bg-alt);
}
.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control::placeholder {
  color: var(--color-text-muted);
  opacity: 0.7;
}

.form-label {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  display: block;
}

.loading {
  text-align: center;
  padding: 2rem;
}

.recommendation-container {
  padding: 2rem;
  border: 1px dashed var(--color-border);
  border-radius: 12px;
}

.recommendation-text {
  white-space: pre-wrap; /* Preserve newlines */
  word-wrap: break-word; /* Break long words */
  font-size: 1rem;
  color: var(--color-text);
}

h1, h2, h3 {
  color: var(--color-text);
}

.form-check-input {
  margin-right: 0.5rem;
}

.form-check-label {
  color: var(--color-text);
  font-weight: 400;
}

body,
.card,
.form-control,
.btn,
.form-label,
h1,
h2,
h3 {
  transition: all 0.3s ease; /* Smooth transition for theme change */
}

.form-container {
  background: var(--color-bg-alt);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--color-border);
}

.form-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.form-label {
  font-weight: 600;
  color: var(--color-text);
}

.form-control {
  background-color: var(--color-surface);
  border-color: var(--color-border);
  color: var(--color-text);
}

.form-control:focus {
  border-color: var(--color-primary);
}

.form-control::placeholder {
  color: var(--color-text-muted);
}

.form-check-label {
  color: var(--color-text);
}

.form-check-input {
  border-color: var(--color-border);
}

.btn-primary {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.card {
  background-color: var(--color-bg-alt);
  border-color: var(--color-border);
}

.recommendation-text {
  color: var(--color-text);
}

.loading {
  color: var(--color-text);
}

.loading p {
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .form-section-title {
    font-size: 1.5rem;
  }
  .form-control {
    font-size: 0.9rem;
  }
}

.d-none {
    display: none !important;
  }

  table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 20px;
}

th,
td {
  padding: 10px;
  border: 1px solid #ccc;
  text-align: left;
}
.status-good { color: green; }
.status-warn { color: orange; }
.status-bad { color: red; } 