:root {
  --primary: #0d6efd;
  --success: #198754;
  --warning: #ffc107;
  --purple: #6f42c1;
  --light-bg: #f8f9fa;
  --border-color: #e9ecef;
}

.price-amount {
  font-size: 48px;
  font-weight: 800;
  color: #212529;
  line-height: 1;
}

/* Toggle Container */
.toggle-container {
  background: var(--light-bg);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 40px;
}

.toggle-label {
  color: #495057;
  min-width: 80px;
  font-size: 15px;
}

/* Toggle Buttons */
.toggle-group {
  display: inline-flex;
  background: white;
  border-radius: 12px;
  padding: 6px;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border: none;
  background: transparent;
  color: #6c757d;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 100px;
}

.toggle-btn:hover {
  background: #f8f9fa;
}

.toggle-btn.active {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
}

.toggle-icon {
  font-size: 18px;
  font-weight: 600;
}

.toggle-text {
  font-size: 15px;
}

.toggle-group .badge {
  font-size: 11px;
  padding: 3px 8px;
}

/* Cards */
.pricing-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card.popular:hover {
  transform: translateY(-8px);
}

.card-inner {
  border: 1px solid var(--border-color);
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  height: 100%;
  position: relative;
}

.pricing-card.popular .card-inner {
  border: 2px solid var(--success);
  box-shadow: 0 10px 30px rgba(25, 135, 84, 0.1);
}

/* Card Header */
.card-header {
  padding: 40px 30px 30px;
  background: linear-gradient(to bottom, #fff 0%, #f8f9fa 100%);
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
}

.plan-badge {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-badge.hosting-starter {
  background: rgba(13, 110, 253, 0.1);
  color: var(--primary);
}

.plan-badge.hosting-business {
  background: rgba(25, 135, 84, 0.1);
  color: var(--success);
}

.plan-badge.hosting-premium {
  background: rgba(111, 66, 193, 0.1);
  color: var(--purple);
}

h3 {
  font-size: 22px;
  font-weight: 700;
  color: #212529;
  line-height: 1.3;
}

.price-box {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin: 20px 0 10px;
}

.currency {
  font-size: 24px;
  font-weight: 600;
  color: #495057;
  line-height: 1;
}

.amount {
  font-size: 48px;
  font-weight: 800;
  color: #212529;
  line-height: 1;
}

.period {
  color: #6c757d;
  font-size: 16px;
  line-height: 1;
}

.tagline {
  color: #6c757d;
  font-size: 15px;
}

/* Card Body */
.card-body {
  padding: 0 30px;
}

/* Specifications Grid */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.spec {
  background: var(--light-bg);
  border-radius: 14px;
  padding: 20px 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.spec:hover {
  background: #fff;
  border-color: var(--border-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.spec i {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--primary);
}

.spec-grid .spec:nth-child(2) i { color: #20c997; }
.spec-grid .spec:nth-child(3) i { color: #fd7e14; }
.spec-grid .spec:nth-child(4) i { color: #dc3545; }

/* Feature List */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 15px;
  color: #495057;
}

.feature-list li:last-child {
  border-bottom: none;
}

/* Card Footer */
.card-footer {
  padding: 30px;
  border-top: 1px solid var(--border-color);
  background: #f8f9fa;
}

.btn {
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-outline-primary {
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2);
}

.btn-success {
  background: var(--success);
  border: 2px solid var(--success);
}

.btn-success:hover {
  background: #157347;
  border-color: #146c43;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(25, 135, 84, 0.2);
}

.btn-outline-dark {
  border: 2px solid #212529;
  color: #212529;
}

.btn-outline-dark:hover {
  background: #212529;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(33, 37, 41, 0.2);
}

/* Popular Badge */
.popular-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #ff7a18, #ffb347);
  color: #fff;
  padding: 6px 14px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}



/* Color Classes */
.text-purple { color: var(--purple) !important; }
.bg-purple { background: var(--purple) !important; }

/* Responsive */
@media (max-width: 992px) {
  .toggle-container {
    padding: 20px;
  }
  
  .card-header {
    padding: 30px 20px 25px;
  }
  
  .card-body, .card-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .amount {
    font-size: 42px;
  }
  
  h3 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .toggle-container {
    padding: 16px;
  }
  
  .toggle-group {
    flex-direction: column;
    padding: 4px;
  }
  
  .toggle-btn {
    width: 100%;
    padding: 12px;
  }
  
  .card-header {
    min-height: auto;
    padding: 25px 15px 20px;
  }
  
  .icon-wrapper {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
  
  .amount {
    font-size: 36px;
  }
  
  .spec-grid {
    gap: 12px;
  }
  
  .spec {
    padding: 15px 10px;
  }
  
  .btn {
    padding: 14px;
  }
}

@media (max-width: 576px) {
  .toggle-container {
    margin-bottom: 30px;
  }
  
  .card-inner {
    border-radius: 16px;
  }
  
  .popular-badge {
    font-size: 12px;
    padding: 6px 16px;
    top: -12px;
  }
  
  .amount {
    font-size: 32px;
  }
  
  .spec i {
    font-size: 20px;
  }
  
  .spec strong {
    font-size: 18px !important;
  }
}




/* =====================================
   GLOBAL VARIABLES & BASE STYLES
===================================== */
:root {
  /* Font Variables */
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --heading-font: "Nunito", sans-serif;
  
  /* Color Variables */
  --background-color: #ffffff;
  --default-color: #212529;
  --heading-color: #2d465e;
  --accent-color: #0d83fd;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  
  /* Navigation Colors */
  --nav-color: #212529;
  --nav-hover-color: #0d83fd;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: #0d83fd;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Base Styles */
body {
  font-family: var(--default-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--default-color);
  background-color: var(--background-color);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  color: var(--heading-color);
  margin-top: 0;
}

/* Links */
a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/* Utility Classes */
.light-background {
  background-color: #f3f9ff;
}

.dark-background {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.dark-background h1,
.dark-background h2,
.dark-background h3,
.dark-background h4 {
  color: var(--contrast-color);
}

/* Section Base */
section, .section {
  padding: 60px 0;
  scroll-margin-top: 90px;
}

@media (max-width: 1199px) {
  section, .section {
    scroll-margin-top: 66px;
  }
}

/* Section Titles */
.section-title {
  text-align: center;
  padding-bottom: 60px;
}

.section-title h2 {
  font-size: clamp(1.6rem, 3.8vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.3px;
  margin-bottom: 1.25rem;
  color: #0f172a;
}

.section-title h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #00c9a7);
  margin: 0.75rem auto 0;
  border-radius: 10px;
}

.section-title p {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-title h2 {
    letter-spacing: -0.2px;
    margin-bottom: 1rem;
  }
}

/* =====================================
   PREMIUM NAVIGATION
===================================== */
.premium-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(42, 91, 215, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  padding: 10px 0;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: translateY(-2px);
}

.logo-text {
  font-size: 24px;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1;
}

.logo-text span {
  background: linear-gradient(135deg, #2a5bd7 0%, #00c9a7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-left: 5px;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  color: #444;
  font-weight: 600;
  font-size: 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
}

.nav-link:hover,
.nav-link.active {
  background: linear-gradient(135deg, rgba(42, 91, 215, 0.1) 0%, rgba(0, 201, 167, 0.1) 100%);
  color: #2a5bd7;
  transform: translateY(-2px);
}

.nav-link.active {
  color: #2a5bd7;
  font-weight: 700;
}

.nav-link i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.nav-link:hover .fa-chevron-down {
  transform: rotate(180deg);
}

/* Login Button Special Styling */
.nav-menu > li:last-child > a.nav-link {
  background: #2563eb !important;
  color: #ffffff !important;
  border-radius: 10px;
  font-weight: 600;
}

.nav-menu > li:last-child > a.nav-link:hover {
  background: #1d4ed8 !important;
  color: #ffffff !important;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid rgba(42, 91, 215, 0.1);
  overflow: hidden;
  padding: 10px 0;
  display: none;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  color: #444;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
}

.dropdown-item:hover {
  background: rgba(42, 91, 215, 0.05);
  color: #2a5bd7;
  padding-left: 25px;
}

.dropdown-item i {
  width: 20px;
  text-align: center;
  color: #2a5bd7;
  font-size: 16px;
}

.dropdown-divider {
  height: 1px;
  background: rgba(42, 91, 215, 0.1);
  margin: 8px 20px;
}

.badge-new {
  position: absolute;
  right: 20px;
  background: linear-gradient(45deg, #ff6b6b, #ff8e53);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Desktop Dropdown Hover */
@media (min-width: 993px) {
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
    pointer-events: auto;
  }
  
  .dropdown-menu {
    pointer-events: none;
  }
  
  .nav-item.dropdown:hover .dropdown-menu {
    pointer-events: auto;
  }
}

/* Mobile Toggle Button */
.mobile-toggle {
  display: none;
  background: linear-gradient(135deg, #2a5bd7 0%, #1a4bc7 100%);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  color: white;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(42, 91, 215, 0.3);
  align-items: center;
  justify-content: center;
}

.mobile-toggle:hover {
  transform: rotate(90deg);
}

/* Mobile Navigation */
@media (max-width: 992px) {
  .mobile-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #0f172a, #020617);
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s ease;
    border-radius: 0 0 20px 20px;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  
  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .nav-item {
    width: 100%;
  }
  
  .nav-link {
    padding: 18px 20px;
    border-radius: 12px;
    justify-content: space-between;
    margin-bottom: 5px;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
  }
  
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin: 10px 0;
    max-height: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0;
  }
  
  .nav-item.dropdown.open > .dropdown-menu {
    display: block;
    max-height: 1000px;
    opacity: 1;
    visibility: visible;
  }
  
  .dropdown-item {
    color: #e5e7eb;
    padding: 10px 25px;
  }
}

/* =====================================
   HERO SECTION
===================================== */
.hero {
  position: relative;
  padding-top: 120px;
  padding-bottom: 80px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 50%, 
                                         color-mix(in srgb, var(--accent-color), transparent 98%) 25%, 
                                         transparent 50%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--accent-color), transparent 92%), transparent 40%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-content h1 .accent-text {
  color: var(--accent-color);
}

.hero-subheading {
  font-size: 28px;
  font-weight: 600;
  color: #4f5b68;
  margin-bottom: 1.5rem;
}

.company-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

.company-badge i {
  font-size: 1.25rem;
  margin-right: 0.5rem;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  font-size: 14.5px;
  font-weight: 600;
  border-radius: 999px;
  background: linear-gradient(135deg, #0d83fd, #1e70e0);
  color: #fff;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(13, 131, 253, 0.25),
              0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  letter-spacing: 0.3px;
  text-decoration: none;
  border: none;
}

.hero-btn:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #0d83fd, #2563eb);
  box-shadow: 0 6px 24px rgba(13, 131, 253, 0.35),
              0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  color: #fff;
}

.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  color: #374151;
  background: rgba(13, 131, 253, 0.06);
  border: 1px solid rgba(13, 131, 253, 0.12);
  backdrop-filter: blur(8px);
  white-space: nowrap;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-play:hover {
  background: rgba(13, 131, 253, 0.12);
  border-color: rgba(13, 131, 253, 0.2);
  color: #1f2937;
  transform: translateY(-1px);
}

.btn-play i {
  font-size: 20px;
  color: #0d83fd;
}

/* Hero Image */
.hero-image {
  position: relative;
  text-align: center;
  z-index: 1;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

.customers-badge {
  position: absolute;
  bottom: 10px;
  right: 30px;
  background-color: var(--surface-color);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  animation: float-badge 3s ease-in-out infinite;
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.customer-avatars {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid var(--surface-color);
  margin-left: -8px;
  object-fit: cover;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar.more {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Stats Section in Hero */
.stats-row {
  margin-top: 3rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 26px 22px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  height: 100%;
}

.stat-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(37, 99, 235, 0.18);
}

.stat-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #00c9a7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
}

.stat-icon i {
  font-size: 1.6rem;
  color: #ffffff;
}

.stat-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #1a1a2e;
}

.stat-content p {
  margin: 0;
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

/* Responsive Hero */
@media (max-width: 992px) {
  .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .customers-badge {
    position: static;
    margin: 1rem auto;
    max-width: 250px;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .stat-item {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
  }
  
  .stat-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 8px;
  }
}

/* =====================================
   ABOUT SECTION
===================================== */
.about {
  overflow: hidden;
}

.about-meta {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
  letter-spacing: 0.5px;
}

.about-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

.about-description {
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 520px;
}

/* Feature List */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.feature-list li i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

/* Image Wrapper */
.image-wrapper {
  position: relative;
}

.main-image {
  max-width: 100%;
  border-radius: 8px;
}

.small-image {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 45%;
  border: 8px solid var(--surface-color);
  border-radius: 12px;
}

.experience-badge {
  position: absolute;
  bottom: 5%;
  right: 5%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 0.75rem;
  text-align: center;
  min-width: 200px;
  animation: experience-float 3s ease-in-out infinite;
}

@keyframes experience-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.experience-badge h3 {
  color: var(--contrast-color);
  font-size: 2.4rem;
  margin: 0;
  line-height: 1;
}

.experience-badge h3 span {
  font-size: 1rem;
  margin-left: 0.25rem;
}

.experience-badge p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
}

/* Mobile About */
@media (max-width: 768px) {
  .about {
    text-align: center;
  }
  
  .about-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .feature-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin: 0 auto;
  }
  
  .feature-list-wrapper {
    display: flex;
    justify-content: center;
  }
  
  .image-wrapper {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .small-image {
    position: static;
    width: 70%;
    border: 0;
    margin-top: 1.5rem;
  }
  
  .experience-badge {
    position: static;
    margin-top: 1.5rem;
  }
}

/* =====================================
   FEATURES SECTION
===================================== */
.features .section-title {
  margin-bottom: 4rem;
}

.features .nav-tabs {
  border-bottom: none;
  gap: 12px;
  justify-content: center;
  margin-top: 1.5rem;
}

.features .nav-tabs .nav-link {
  border: none;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  color: #475569;
  background: #f1f5f9;
  transition: all 0.3s ease;
}

.features .nav-tabs .nav-link.active {
  background: linear-gradient(135deg, #2563eb, #00c9a7);
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

.features .nav-tabs .nav-link:hover {
  color: #2563eb;
}

.tab-content {
  margin-top: 30px;
}

.tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.tab-pane ul {
  list-style: none;
  padding: 0;
}

.tab-pane ul li {
  padding-top: 10px;
  display: flex;
  align-items: flex-start;
}

.tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
  margin-top: 3px;
}

/* =====================================
   FEATURES CARDS SECTION
===================================== */
.features-cards .feature-box {
  height: 100%;
  padding: 40px 30px;
  border-radius: 10px;
}

.features-cards .feature-box i {
  font-size: 44px;
  display: inline-block;
  line-height: 0;
  margin-bottom: 20px;
}

.features-cards .feature-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.features-cards .feature-box p {
  font-size: 15px;
  margin-bottom: 0;
}

/* Color variants */
.features-cards .feature-box.orange {
  background-color: #fff3e2;
}

.features-cards .feature-box.orange i {
  color: #edb86e;
}

.features-cards .feature-box.blue {
  background-color: #deedfd;
}

.features-cards .feature-box.blue i {
  color: #20a5f8;
}

.features-cards .feature-box.green {
  background-color: #d5f1e4;
}

.features-cards .feature-box.green i {
  color: #48c88a;
}

.features-cards .feature-box.red {
  background-color: #fdeded;
}

.features-cards .feature-box.red i {
  color: #f28484;
}

/* =====================================
   FEATURES 2 SECTION
===================================== */
.features-2 .feature-item {
  margin-bottom: 2rem;
}

.features-2 .feature-item:last-child {
  margin-bottom: 0;
}

.features-2 .feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  flex-shrink: 0;
}

.features-2 .feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.features-2 .feature-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.features-2 .feature-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  margin-bottom: 0;
}

.features-2 .phone-mockup {
  position: relative;
  padding: 30px 0;
  text-align: center;
}

.features-2 .phone-mockup img {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

/* Mobile Features 2 */
@media (max-width: 991.98px) {
  .features-2 .feature-item {
    text-align: center !important;
    margin-bottom: 2rem;
  }
  
  .features-2 .feature-item .d-flex {
    flex-direction: column;
    text-align: center;
    justify-content: center !important;
  }
  
  .features-2 .phone-mockup {
    margin: 3rem 0;
  }
}

/* =====================================
   CALL TO ACTION SECTION
===================================== */
.call-to-action .container {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: 4rem 2rem;
}

.call-to-action .content h2,
.call-to-action .content p {
  color: var(--contrast-color);
  position: relative;
  z-index: 2;
}

.btn-cta {
  background-color: color-mix(in srgb, var(--contrast-color) 15%, transparent);
  color: var(--contrast-color);
  padding: 12px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid var(--contrast-color);
  position: relative;
  z-index: 2;
  text-decoration: none;
  display: inline-block;
}

.btn-cta:hover {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

/* Background Shapes */
.shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.shape svg {
  width: 100%;
  height: 100%;
}

.shape svg path {
  fill: color-mix(in srgb, var(--contrast-color) 50%, transparent);
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
  opacity: 0.1;
  transform: rotate(45deg);
  animation: shapes-float 3s ease-in-out infinite;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
  opacity: 0.15;
  transform: rotate(-15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.shape-3 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 15%;
  opacity: 0.08;
  transform: rotate(15deg);
}

.dots {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  color: var(--contrast-color);
}

.dots-1 {
  width: 200px;
  height: 200px;
  top: -30px;
  left: 10%;
  opacity: 0.1;
  transform: rotate(15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.dots-2 {
  width: 150px;
  height: 150px;
  bottom: 20px;
  right: 15%;
  opacity: 0.15;
  transform: rotate(-10deg);
}

@keyframes shapes-float {
  0%, 100% { transform: scale(0.8) rotate(45deg) translateY(0); }
  50% { transform: scale(0.8) rotate(45deg) translateY(-20px); }
}

/* Responsive Call to Action */
@media (max-width: 992px) {
  .call-to-action .container {
    padding: 3rem 1.5rem;
  }
  
  .shape-1 { width: 200px; height: 200px; }
  .shape-2 { width: 150px; height: 150px; }
  .shape-3 { width: 100px; height: 100px; }
  .dots-1 { width: 150px; height: 150px; }
  .dots-2 { width: 120px; height: 120px; }
}

@media (max-width: 575px) {
  .call-to-action .container {
    border-radius: 0;
  }
}

/* =====================================
   CLIENTS SECTION
===================================== */
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

/* =====================================
   TESTIMONIALS SECTION
===================================== */
.testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
  position: relative;
  height: 100%;
}

.testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.testimonial-item .stars {
  margin: 10px 0;
}

.testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.quote-icon-left,
.quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonial-item p {
  font-style: italic;
  margin: 15px 0 0 0;
  padding: 0;
}

/* =====================================
   STATS SECTION
===================================== */
.stats-item {
  padding: 30px;
  width: 100%;
  text-align: center;
}

.stats-item span {
  color: var(--heading-color);
  font-size: 48px;
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 500;
}

/* =====================================
   SERVICES SECTION
===================================== */
.service-card {
  height: 100%;
  padding: 30px;
  background: var(--surface-color);
  border-radius: 10px;
  transition: all 0.3s ease;
  display: flex;
}

.service-card:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.service-card:hover .icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.service-card .icon {
  width: 60px;
  height: 60px;
  margin-right: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--accent-color);
  font-size: 28px;
  transition: all 0.3s ease;
  line-height: 1;
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-card p {
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  line-height: 1.6;
}

/* =====================================
   PRICING SECTION
===================================== */
.pricing-section {
  padding: 0px 0;
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #2a5bd7, transparent);
}

.pricing-category {
  margin-bottom: 100px;
}

.pricing-category.hosting-section {
  padding-top: 50px;
  border-top: 1px solid rgba(42, 91, 215, 0.1);
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-subtitle {
  display: inline-block;
  background: linear-gradient(135deg, #2a5bd7, #00c9a7);
  color: white;
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-header .section-title {
  font-size: 3rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(135deg, #1a1a2e 0%, #2a5bd7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  color: #666;
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Currency Toggle */
.currency-toggle-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.toggle-group {
  display: flex;
  align-items: center;
  gap: 15px;
  background: white;
  padding: 15px 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.toggle-label {
  font-weight: 700;
  color: #1a1a2e;
  font-size: 15px;
}

.toggle-buttons {
  display: flex;
  background: #f1f3ff;
  border-radius: 10px;
  padding: 5px;
  gap: 5px;
}

.toggle-btn {
  padding: 12px 24px;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #666;
  min-width: 110px;
  font-size: 15px;
  position: relative;
  overflow: hidden;
}

.toggle-btn:hover {
  color: #2a5bd7;
}

.toggle-btn.active {
  background: white;
  color: #2a5bd7;
  box-shadow: 0 3px 15px rgba(42, 91, 215, 0.2);
  transform: scale(1.05);
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.hosting-grid {
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
}

/* Pricing Card */
.pricing-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  border: 2px solid transparent;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(42, 91, 215, 0.15);
}

.pricing-card.featured {
  border: 2px solid #2a5bd7;
  transform: scale(1.05);
  z-index: 1;
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-15px);
}

.pricing-card.hosting {
  border-top: 5px solid #ff6b6b;
}

/* Popular Badge */
.popular-badge {
  position: absolute;
  top: 20px;
  right: -35px;
  background: linear-gradient(45deg, #ff6b6b, #ff8e53);
  color: white;
  padding: 12px 45px;
  font-weight: 700;
  font-size: 14px;
  transform: rotate(45deg);
  z-index: 2;
  box-shadow: 0 5px 20px rgba(255, 107, 107, 0.3);
}

.popular-badge i {
  margin-right: 8px;
  font-size: 16px;
}

/* Card Inner */
.card-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Card Header */
.card-header {
  padding: 40px 30px 25px;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
}

.plan-badge {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.plan-badge.starter {
  background: rgba(108, 117, 125, 0.15);
  color: #6c757d;
  border: 2px solid rgba(108, 117, 125, 0.3);
}

.plan-badge.business {
  background: rgba(42, 91, 215, 0.15);
  color: #2a5bd7;
  border: 2px solid rgba(42, 91, 215, 0.3);
}

.plan-badge.enterprise {
  background: rgba(0, 201, 167, 0.15);
  color: #00c9a7;
  border: 2px solid rgba(0, 201, 167, 0.3);
}

.plan-badge.hosting-starter {
  background: rgba(255, 107, 107, 0.15);
  color: #ff6b6b;
  border: 2px solid rgba(255, 107, 107, 0.3);
}

.plan-badge.hosting-business {
  background: rgba(42, 91, 215, 0.15);
  color: #2a5bd7;
  border: 2px solid rgba(42, 91, 215, 0.3);
}

.plan-badge.hosting-premium {
  background: rgba(0, 201, 167, 0.15);
  color: #00c9a7;
  border: 2px solid rgba(0, 201, 167, 0.3);
}

.plan-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #2a5bd7, #00c9a7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 28px;
  box-shadow: 0 10px 20px rgba(42, 91, 215, 0.2);
}

.plan-title {
  font-size: 28px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 20px;
}

.plan-price {
  margin: 25px 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
}

.currency {
  font-size: 28px;
  font-weight: 700;
  color: #2a5bd7;
  opacity: 0.9;
}

.amount {
  font-size: 56px;
  font-weight: 900;
  color: #1a1a2e;
  line-height: 1;
  background: linear-gradient(135deg, #1a1a2e 0%, #2a5bd7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.period {
  font-size: 18px;
  color: #666;
  font-weight: 600;
  margin-left: 5px;
}

.plan-tagline {
  color: #666;
  font-size: 16px;
  margin-top: 10px;
  font-style: italic;
}

/* Included Banner */
.included-banner {
  background: linear-gradient(135deg, rgba(42, 91, 215, 0.1) 0%, rgba(0, 201, 167, 0.1) 100%);
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 25px;
  text-align: center;
}

.included-banner span {
  color: #2a5bd7;
  font-weight: 700;
  font-size: 15px;
}

/* Specifications Grid */
.specifications {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
  padding: 20px;
  background: #f8f9ff;
  border-radius: 15px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.spec-item:hover {
  transform: translateY(-3px);
}

.spec-item i {
  color: #2a5bd7;
  font-size: 22px;
  width: 30px;
  text-align: center;
}

.spec-item div {
  display: flex;
  flex-direction: column;
}

.spec-value {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1;
}

.spec-label {
  font-size: 13px;
  color: #666;
  margin-top: 5px;
  font-weight: 600;
}

/* Features List */
.features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-item {
  display: flex;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(42, 91, 215, 0.02);
  padding-left: 10px;
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-item i {
  margin-right: 15px;
  font-size: 18px;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.feature-item i.fa-check {
  color: #00c9a7;
}

.feature-item i.fa-times {
  color: #ff6b6b;
}

.feature-item.excluded {
  opacity: 0.6;
}

.feature-item.excluded span {
  text-decoration: line-through;
  color: #999;
}

.feature-item span {
  color: #444;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

/* Plan Meta */
.plan-meta {
  display: flex;
  justify-content: space-around;
  margin: 30px 0;
  padding: 20px;
  background: #f8f9ff;
  border-radius: 15px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.meta-item i {
  color: #2a5bd7;
  font-size: 20px;
}

.meta-item span {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

/* Card Footer */
.card-footer {
  padding: 30px;
  text-align: center;
  border-top: 1px solid #f0f0f0;
  background: #fafbff;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 35px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  width: 100%;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #2a5bd7 0%, #1a4bc7 100%);
  color: white;
  box-shadow: 0 10px 25px rgba(42, 91, 215, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(42, 91, 215, 0.4);
}

.btn-outline-primary {
  background: transparent;
  color: #2a5bd7;
  border-color: #2a5bd7;
}

.btn-outline-primary:hover {
  background: #2a5bd7;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(42, 91, 215, 0.2);
}

.btn-outline-dark {
  background: transparent;
  color: #1a1a2e;
  border-color: #1a1a2e;
}

.btn-outline-dark:hover {
  background: #1a1a2e;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(26, 26, 46, 0.2);
}

/* View More */
.view-more-wrapper {
  text-align: center;
  margin-top: 30px;
}

.view-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 45px;
  background: transparent;
  color: #2a5bd7;
  border: 2px solid #2a5bd7;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(42, 91, 215, 0.1);
}

.view-more-btn:hover {
  background: #2a5bd7;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(42, 91, 215, 0.2);
  gap: 15px;
}

/* Pricing Note */
.pricing-note {
  text-align: center;
  margin-top: 60px;
  padding: 25px;
  background: rgba(42, 91, 215, 0.05);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px solid rgba(42, 91, 215, 0.1);
}

.pricing-note i {
  color: #2a5bd7;
  font-size: 24px;
}

.pricing-note p {
  color: #666;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  max-width: 700px;
}

/* Responsive Pricing */
@media (max-width: 1200px) {
  .pricing-grid,
  .hosting-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}

@media (max-width: 992px) {
  .pricing-section {
    padding: 80px 0;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-15px);
  }
  
  .popular-badge {
    right: -30px;
    padding: 10px 40px;
    font-size: 13px;
  }
  
  .section-header .section-title {
    font-size: 2.5rem;
  }
  
  .currency-toggle-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .pricing-grid,
  .hosting-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .section-header .section-title {
    font-size: 2.2rem;
  }
  
  .section-description {
    font-size: 1.1rem;
  }
  
  .plan-meta {
    flex-direction: column;
    gap: 15px;
  }
  
  .specifications {
    grid-template-columns: 1fr;
  }
  
  .amount {
    font-size: 48px;
  }
  
  .toggle-group {
    flex-direction: column;
    text-align: center;
  }
  
  .toggle-buttons {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .pricing-section {
    padding: 60px 0;
  }
  
  .pricing-category {
    margin-bottom: 70px;
  }
  
  .section-header .section-title {
    font-size: 2rem;
  }
  
  .card-header,
  .card-body,
  .card-footer {
    padding: 25px 20px;
  }
  
  .amount {
    font-size: 42px;
  }
  
  .plan-title {
    font-size: 24px;
  }
  
  .plan-price {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .currency {
    font-size: 24px;
  }
  
  .toggle-btn {
    min-width: 90px;
    padding: 10px 20px;
  }
  
  .pricing-note {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

/* =====================================
   FAQ SECTION
===================================== */
.faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.faq-description {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 2rem;
}

.faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/* =====================================
   CALL TO ACTION 2 SECTION
===================================== */
.call-to-action-2 {
  padding: 80px 0;
}

.call-to-action-2 h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action-2 p {
  color: var(--default-color);
}

.cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 30%);
  color: var(--contrast-color);
  text-decoration: none;
}

.cta-btn:hover {
  border-color: var(--contrast-color);
  color: var(--contrast-color);
}

/* =====================================
   CONTACT SECTION
===================================== */
.contact .info-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}

.contact .info-box h3 {
  color: var(--contrast-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact .info-box p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.contact .info-box a {
  color: var(--contrast-color);
}

.contact .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact .info-item .icon-box i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.contact .info-item:hover .icon-box {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.contact .info-item .content h4 {
  color: var(--contrast-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.contact .info-item .content p:last-child {
  margin-bottom: 0;
}

.contact .contact-form {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

.contact .contact-form p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.contact .contact-form .form-control {
  padding: 0.875rem 1.25rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0.5rem;
  background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
  color: var(--default-color);
}

.contact .contact-form .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.contact .contact-form .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
  border: none;
}

.contact .contact-form .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 20%);
}

/* Responsive Contact */
@media (max-width: 992px) {
  .contact .info-box,
  .contact .contact-form {
    padding: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .contact .info-box h3 {
    font-size: 1.75rem;
  }
}

/* =====================================
   FOOTER
===================================== */
.footer {
  background-color: #111;
  color: #f1f1f1;
  padding: 40px 0;
  font-size: 15px;
}

.footer a {
  color: #f1f1f1;
  text-decoration: none;
}

.footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer h3,
.footer h4 {
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 12px;
}

.footer .footer-contact p,
.footer .footer-contact span {
  color: #f1f1f1;
}

/* Social icons */
.footer .social-links a {
  color: #f1f1f1;
  font-size: 18px;
  margin-right: 12px;
  transition: color 0.3s ease;
}

.footer .social-links a:hover {
  color: #0d6efd;
}

/* Footer sitename */
.footer .sitename {
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
}

/* Footer Logo */
.footer-logo {
  max-height: 40px;
  width: auto;
  display: block;
}

/* Footer Lists */
.footer ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

/* Copyright */
.copyright {
  text-align: center;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.credits {
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }
  
  .footer .footer-about .logo {
    justify-content: center;
    margin-bottom: 16px;
  }
  
  .footer .footer-contact p {
    text-align: center;
    margin-bottom: 6px;
  }
  
  .footer .social-links {
    justify-content: center;
    margin-top: 18px;
  }
  
  .footer .social-links a {
    margin: 0 6px;
  }
  
  .footer .footer-links {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .footer .footer-links ul li {
    justify-content: center;
  }
  
  .footer .footer-links ul a {
    font-size: 14px;
  }
  
  .footer .copyright,
  .footer .credits {
    text-align: center;
  }
  
  .footer-logo {
    max-height: 36px;
  }
}

@media (min-width: 992px) {
  .footer .footer-about,
  .footer .footer-links {
    text-align: left;
  }
  
  .footer .footer-about .logo {
    justify-content: flex-start;
  }
  
  .footer .social-links {
    justify-content: flex-start;
  }
  
  .footer .footer-links ul li {
    justify-content: flex-start;
  }
}

/* =====================================
   SCROLL TOP BUTTON
===================================== */
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/* =====================================
   UTILITY CLASSES
===================================== */
.hidden-from-users {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* No scroll for mobile menu */
.no-scroll {
  overflow: hidden;
}

/* Content visibility fix */
.pricing-card,
.pricing-card .card-inner,
.pricing-card .card-body,
.pricing-card .features,
.pricing-card .feature-item {
  overflow: visible !important;
  max-height: none !important;
  height: auto !important;
}

/* =====================================
   ITFIRMS BADGE SECTION
===================================== */
section[style*="background-color: #f9f9f9"] {
  background-color: #f9f9f9 !important;
  padding: 40px 0 !important;
  border-top: 1px solid #ddd !important;
  border-bottom: 1px solid #ddd !important;
}

section[style*="background-color: #f9f9f9"] div {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

section[style*="background-color: #f9f9f9"] h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}

section[style*="background-color: #f9f9f9"] img {
  max-width: 200px;
  height: auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 8px;
}

/* ===============================================
=========================About====================
================================================== */


/* ================================
   GLOBAL UPGRADE – ABOUT PAGE
================================ */

/* Typography boost */
.about-page h1,
.about-page h2,
.about-page h3 {
  font-family: 'Poppins', 'Nunito', sans-serif;
  font-weight: 700;
  letter-spacing: -0.4px;
}

.about-page p {
  font-size: 1rem;
  line-height: 1.75;
  color: #4b5563;
}

/* Section spacing */
.about-page section {
  padding: 90px 0;
}

/* Section titles */
.section-title h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 12px;
  position: relative;
}

.section-title p {
  max-width: 680px;
  margin: auto;
  color: #6b7280;
}

/* Decorative underline */
.section-title h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  margin: 16px auto 0;
  background: linear-gradient(90deg, #2563eb, #00c9a7);
  border-radius: 99px;
}

/* ================================
   HERO / PAGE TITLE
================================ */
.page-title {
  background: linear-gradient(135deg, #f8fbff, #eef4ff);
  padding: 80px 0;
}

.page-title h1 {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 800;
}

/* ================================
   VISION / MISSION CARDS
================================ */
.vision-card,
.mission-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
  height: 100%;
}

.vision-card:hover,
.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(37,99,235,0.15);
}

.vision-icon,
.mission-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #2563eb, #00c9a7);
  color: #fff;
}

/* ================================
   FEATURE / APPROACH / INDUSTRY CARDS
================================ */
.approach-card,
.industry-card,
.feature-card {
  background: #fff;
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.35s ease;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  height: 100%;
}

.approach-card:hover,
.industry-card:hover,
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 80px rgba(0,0,0,0.12);
}

.approach-icon,
.industry-icon,
.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #eef4ff;
  display: grid;
  place-items: center;
  font-size: 26px;
  color: #2563eb;
}

/* ================================
   TECHNOLOGY STACK
================================ */
.tech-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px 10px;
  text-align: center;
  box-shadow: 0 12px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.tech-card i {
  font-size: 34px;
  color: #2563eb;
  margin-bottom: 8px;
}

.tech-card:hover {
  transform: translateY(-6px) scale(1.03);
}

/* ================================
   SECURITY SECTION
================================ */
.security {
  background: linear-gradient(135deg, #f9fbff, #eef3ff);
}

.security-content h2,
.support-content h2 {
  font-size: 2.2rem;
}

/* ================================
   CTA – HIGH IMPACT
================================ */
.cta {
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #fff;
}

.cta h2 {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 800;
}

.cta p {
  color: #cbd5f5;
}

.cta .btn {
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: 999px;
}

/* ================================
   MOBILE OPTIMIZATION
================================ */
@media (max-width: 768px) {
  .about-page section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }
}
/* ================================
   PAGE TITLE – ABOUT FIX
================================ */

.page-title {
  text-align: center;
}

.page-title h1 {
  margin-bottom: 12px;
}

/* Breadcrumb container */
.page-title .breadcrumbs {
  display: flex;
  justify-content: center;
}

/* Remove numbering + list look */
.page-title .breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
}

/* Breadcrumb items */
.page-title .breadcrumbs ol li {
  font-size: 0.95rem;
  color: #6b7280;
}

/* Arrow separator */
.page-title .breadcrumbs ol li::after {
  content: "›";
  margin-left: 10px;
  color: #9ca3af;
}

/* Remove arrow for last item */
.page-title .breadcrumbs ol li:last-child::after {
  content: "";
}

/* Active breadcrumb */
.page-title .breadcrumbs ol li.current {
  color: #2563eb;
  font-weight: 500;
}

/* Links */
.page-title .breadcrumbs ol li a {
  color: #2563eb;
  text-decoration: none;
}

.page-title .breadcrumbs ol li a:hover {
  text-decoration: underline;
}
/* Push page title a bit down */
.page-title {
  padding-top: 140px;   /* increase this if needed */
  padding-bottom: 60px;
}

/* Fine-tune heading spacing */
.page-title h1 {
  margin-top: 10px;
}



/* ===== MOBILE NAV RIGHT GAP FIX (FINAL) ===== */
@media (max-width: 768px) {

  /* Navbar full width */
  .premium-navbar {
    width: 83%;
    left: 0;
    transform: none;
  }

  /* Container padding causing right gap */
  .nav-container {
    max-width: 95%;
    padding-left: 16px;
    padding-right: 16px;
  }

}

/* ===== MOBILE MENU ABOUT CENTER FIX ===== */
@media (max-width: 768px) {

  /* Only About menu item */
  .nav-menu .nav-item.about-item .nav-link {
    justify-content: center;
    text-align: center;
  }

}
