:root {
  --bg-primary: #0a0e27;
  --bg-secondary: #0f1429;
  --bg-card: #151b35;
  --text-primary: #ffffff;
  --text-secondary: #b8c5d6;
  --text-tertiary: #8892a6;
  --accent-primary: #4c6fff;
  --accent-secondary: #5b7cff;
  --accent-blue-bright: #6b8aff;
  --accent-purple: #7c3aed;
  --accent-green: #10b981;
  --accent-yellow: #fbbf24;
  --border-color: rgba(255, 255, 255, 0.1);
  --shadow-light: 0 4px 20px rgba(76, 111, 255, 0.15);
  --shadow-medium: 0 8px 30px rgba(76, 111, 255, 0.2);
  --shadow-hover: 0 12px 40px rgba(76, 111, 255, 0.3);
  --header-height: 70px;
  --gradient-primary: linear-gradient(135deg, #4c6fff 0%, #5b7cff 50%, #6b8aff 100%);
  --gradient-dark: linear-gradient(135deg, #0a0e27 0%, #151b35 100%);
  --gradient-glow: radial-gradient(circle at 50% 50%, rgba(76, 111, 255, 0.15) 0%, transparent 70%);
}

[data-theme="light"] {
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-card: #ffffff;
  --text-primary: #0a0e27;
  --text-secondary: #475569;
  --text-tertiary: #64748b;
  --accent-primary: #4c6fff;
  --accent-secondary: #5b7cff;
  --accent-blue-bright: #6b8aff;
  --border-color: rgba(0, 0, 0, 0.08);
  --shadow-light: 0 4px 20px rgba(76, 111, 255, 0.12);
  --shadow-medium: 0 8px 30px rgba(76, 111, 255, 0.15);
  --shadow-hover: 0 12px 40px rgba(76, 111, 255, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(2px 2px at 20% 30%, white, transparent),
    radial-gradient(2px 2px at 60% 70%, white, transparent),
    radial-gradient(1px 1px at 50% 50%, white, transparent),
    radial-gradient(1px 1px at 80% 10%, white, transparent),
    radial-gradient(2px 2px at 90% 60%, white, transparent),
    radial-gradient(1px 1px at 33% 80%, white, transparent),
    radial-gradient(1px 1px at 15% 95%, white, transparent);
  background-size: 200% 200%;
  background-position: 0% 0%;
  animation: stars 200s linear infinite;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

[data-theme="light"] body::before {
  opacity: 0;
}

@keyframes stars {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 100% 100%;
  }
}

header {
  background: rgba(10, 14, 39, 0.9);
  backdrop-filter: blur(20px);
  padding: 0rem 3rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

[data-theme="light"] header {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border-color);
}

header.scrolled {
  background: rgba(10, 14, 39, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

[data-theme="light"] header.scrolled {
  background: rgba(255, 255, 255, 0.98);
}

nav {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.logo {
  font-weight: 700;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
  white-space: nowrap;
  letter-spacing: 1px;
}

[data-theme="light"] .logo {
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.6rem 1.2rem;
  white-space: nowrap;
  border-radius: 8px;
  font-size: 0.95rem;
}

nav a:hover,
nav a.active {
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

[data-theme="light"] nav a:hover,
[data-theme="light"] nav a.active {
  color: var(--accent-primary);
  background: rgba(76, 111, 255, 0.08);
}

.theme-toggle {
  background: var(--gradient-primary);
  border: none;
  border-radius: 30px;
  padding: 0.7rem 1.5rem;
  color: white;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(76, 111, 255, 0.4);
}

.theme-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(76, 111, 255, 0.5);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

[data-theme="light"] .mobile-menu-toggle {
  color: var(--text-primary);
}

.hero {
  background-image: url('Images/hero-bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  /* helps keep image visible on desktops */
  min-height: 150vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  /* ensures glows stay within the section */
}

/* 🔵 Floating glow effects – moved behind background overlay */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  /* 👈 ensures glow is behind text but above the image */
  pointer-events: none;
}

.hero::before {
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(76, 111, 255, 0.3) 0%, transparent 70%);
  animation: float-glow 15s ease-in-out infinite;
}

.hero::after {
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(91, 124, 255, 0.25) 0%, transparent 70%);
  animation: float-glow 20s ease-in-out infinite reverse;
}

@keyframes float-glow {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(50px, -50px) scale(1.1);
  }
}

/* ✅ Hero content on top */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
}

/* ✅ Text & buttons */
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -1px;
  color: white;
}

.hero p {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.7;
  font-weight: 400;
  color: var(--text-secondary);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 2.5rem;
}

/* ✅ Buttons */
.btn-primary,
.btn-secondary {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 8px 30px rgba(76, 111, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(76, 111, 255, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}


[data-theme="light"] .btn-secondary {
  background: white;
  color: var(--accent-primary);
  border: 2px solid var(--accent-primary);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
}

.status-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.status-indicator::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-green);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

main {
  max-width: 1400px;
  margin: auto;
  padding: 4rem 2rem;
  position: relative;
  z-index: 1;
}

section {
  margin-top: 8rem;
  scroll-margin-top: calc(var(--header-height) + 2rem);
}

section h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: white;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  font-weight: 700;
  letter-spacing: -1px;
}

[data-theme="light"] section h2 {
  color: var(--text-primary);
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 4rem;
  font-weight: 400;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.service-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-light);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-glow);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(76, 111, 255, 0.3);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card>* {
  position: relative;
  z-index: 1;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 30px rgba(76, 111, 255, 0.4);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
  letter-spacing: -0.3px;
}

[data-theme="light"] .service-title {
  color: var(--text-primary);
}

.service-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
}

.service-features li {
  color: var(--text-tertiary);
  margin: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-weight: bold;
  font-size: 1.2rem;
}

.service-card:hover .service-features li {
  color: var(--text-secondary);
}

/* Pricing Section */
.pricing-section {
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pricing-title {
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text-primary);
  letter-spacing: -1px;
}

.pricing-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 4rem;
  font-weight: 400;
}

/* Pricing Cards Grid */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  justify-items: center;
  margin-top: 4rem;
}

/* Individual Pricing Card */
.pricing-card {
  background: var(--bg-card);
  padding: 3rem 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-light);
  width: 100%;
  max-width: 360px;
  text-align: center;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-glow);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(76, 111, 255, 0.3);
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card>* {
  position: relative;
  z-index: 1;
}

/* Featured Card */
.pricing-card.featured {
  border: 2px solid var(--accent-primary);
  transform: scale(1.05);
}

.pricing-card.featured::before {
  opacity: 0.5;
}

.pricing-card.featured:hover {
  transform: translateY(-12px) scale(1.05);
}

.pricing-card.featured:hover::before {
  opacity: 0.7;
}

/* Featured Badge */
.featured-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-yellow);
  color: #1a1a1a;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.4);
  white-space: nowrap;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Card Icon */
.card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(76, 111, 255, 0.3);
}

.card-icon svg {
  width: 45px;
  height: 45px;
  stroke: white;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-card:hover .card-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 35px rgba(76, 111, 255, 0.5);
}

.pricing-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 4rem;
}

.pricing-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  width: 100%;
  max-width: 360px;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-glow);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pricing-card.featured {
  border: 2px solid var(--accent-primary);
  transform: scale(1.05);
}

.pricing-card.featured::before {
  opacity: 0.5;
}

.featured-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(76, 111, 255, 0.4);
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(76, 111, 255, 0.3);
}

.pricing-card.featured:hover {
  transform: translateY(-12px) scale(1.05);
}

.pricing-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
  position: relative;
  z-index: 1;
  letter-spacing: -0.3px;
}

[data-theme="light"] .pricing-title {
  color: var(--text-primary);
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--accent-primary);
  position: relative;
  z-index: 1;
  letter-spacing: -1px;
}

.pricing-desc {
  font-size: 1rem;
  color: var(--text-tertiary);
  margin-bottom: 2rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.pricing-card button {
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  background: var(--gradient-primary);
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 25px rgba(76, 111, 255, 0.3);
}

.pricing-card button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 35px rgba(76, 111, 255, 0.5);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.process-step {
  text-align: center;
  padding: 2rem;
  position: relative;
  background: var(--bg-card);
  border-radius: 20px;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(76, 111, 255, 0.3);
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 30px rgba(76, 111, 255, 0.4);
  transition: all 0.3s ease;
}

.process-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(76, 111, 255, 0.6);
}

.step-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: -0.3px;
}

[data-theme="light"] .step-title {
  color: var(--text-primary);
}

.step-desc {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
}

.feedback-list {
  max-width: 1200px;
  margin: auto;
  display: grid;
  gap: 2.5rem;
  margin-top: 4rem;
}

.feedback-item {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-light);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.feedback-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(76, 111, 255, 0.3);
}

.feedback-item::before {
  content: '"';
  font-size: 5rem;
  color: var(--accent-primary);
  position: absolute;
  top: 1rem;
  left: 2rem;
  opacity: 0.2;
  font-family: serif;
}

.fb-header {
  font-weight: 700;
  color: white;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 1.1rem;
}

[data-theme="light"] .fb-header {
  color: var(--text-primary);
}

.fb-content {
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.8;
  margin-left: 2rem;
  font-size: 1.05rem;
}

.stars {
  color: var(--accent-yellow);
  font-size: 1.2rem;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: flex-start;
  text-align: left;
  margin-top: 4rem;
}

.contact-info-box {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.5rem;
  border-radius: 16px;
  background: var(--bg-primary);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-method:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-light);
  border-color: rgba(76, 111, 255, 0.3);
}

.contact-icon {
  font-size: 2.2rem;
  color: var(--accent-primary);
  flex-shrink: 0;
}

.contact-label {
  font-weight: 700;
  color: white;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

[data-theme="light"] .contact-label {
  color: var(--text-primary);
}

.contact-value {
  font-size: 1rem;
  color: var(--text-secondary);
  word-break: break-word;
}

.email-link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
}

.email-link:hover {
  color: var(--accent-primary);
  text-decoration: underline;
}

.contact-form-box {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.6rem;
  font-weight: 600;
  color: white;
  font-size: 0.95rem;
}

[data-theme="light"] .form-group label {
  color: var(--text-primary);
}

.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--bg-primary);
  color: white;
  transition: all 0.3s ease;
}

[data-theme="light"] .contact-form-box input,
[data-theme="light"] .contact-form-box textarea {
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 4px rgba(76, 111, 255, 0.1);
}

.contact-form-box textarea {
  resize: vertical;
  min-height: 140px;
}

footer {
  background: var(--bg-secondary);
  color: white;
  text-align: center;
  padding: 4rem 2rem;
  margin-top: 8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
}

footer p {
  margin: 0.6rem 0;
  color: var(--text-secondary);
  font-size: 1rem;
}

footer p:first-child {
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}

[data-theme="light"] footer p:first-child {
  color: var(--text-primary);
}

@media (max-width: 1024px) {
  main {
    padding: 3rem 1.5rem;
  }

  section {
    margin-top: 6rem;
  }

  .services {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  header {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--bg-card);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 2rem;
    transition: left 0.3s ease;
    gap: 0;
    box-shadow: var(--shadow-medium);
  }

  .nav-links.active {
    left: 0;
  }

  nav a {
    width: 100%;
    text-align: center;
    padding: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero {
    background-image: url('Images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    /* ensures full height even if content is short */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  /* Optional: dark overlay for visibility */
  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
  }

  .hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
    /* keep text above overlay */
    padding: 40px;
    border-radius: 20px;
  }

  .btn-primary {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
  }

  .btn-primary:hover {
    background: #0056b3;
  }


  .services {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pricing-cards {
    flex-direction: column;
    align-items: stretch;
  }

  .pricing-card {
    max-width: 100%;
  }

  .pricing-card.featured {
    transform: none;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 4rem 1.2rem;
  }

  .service-card,
  .pricing-card,
  .feedback-item {
    padding: 2rem 1.5rem;
  }
}

html {
  scroll-behavior: smooth;
}

::selection {
  background: var(--accent-primary);
  color: white;
}

/* Update the global .pricing-card to use Flexbox */
.pricing-card {
  /* Use variables from your provided CSS */
  background: var(--bg-card);
  border-radius: 20px;
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  /* --- Key Flexbox Properties for Bottom Button --- */
  display: flex;
  flex-direction: column;
  /* Stack children vertically */
  justify-content: space-between;
  /* Push content and button to opposite ends */
  height: 100%;
  /* Important: Ensures the card can expand in the grid */

  /* Apply vertical padding to the card, but remove horizontal padding so the 
       children can control it better. */
  padding: 3rem 0;
  width: 100%;
  max-width: 360px;
}

/* New Content Wrapper for centering everything above the button */
.card-content {
  text-align: center;
  padding: 0 2.5rem;
  /* Apply horizontal padding here */
  margin-bottom: 2rem;
  /* Space between content and button */
  flex-grow: 1;
  /* Allows this section to take up all available space */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  /* Keep content starting from the top */
}

/* Icon Styles (Center aligned by the parent .card-content) */
.card-icon {
  width: 80px;
  height: 80px;
  /* Reset margin: 0 auto 1.5rem; */
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(76, 111, 255, 0.3);
}

.card-icon svg {
  width: 45px;
  height: 45px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

/* Title */
.card-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

/* Price */
.card-price {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--accent-primary);
}

/* Description */
.card-description {
  font-size: 1rem;
  color: var(--text-tertiary);
  margin-bottom: 1rem;
  /* Adjust spacing here */
  line-height: 1.6;
}

/* Button (Fixed at the bottom of the card) */
.card-button {
  /* Use your global button styles */
  padding: 1rem 0.5rem;
  border: none;
  border-radius: 50px;
  background: var(--gradient-primary);
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;

  /* --- Full width within its padding --- */
  width: calc(100% - 10rem);
  /* 100% minus 2.5rem padding on each side */
  /* margin: 0 2.5rem; */
  /* Apply horizontal spacing */

  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  box-shadow: 0 6px 25px rgba(76, 111, 255, 0.3);
}

.card-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(76, 111, 255, 0.5);
}

/* === Footer Styling === */
footer {
  background: #0a0c23;
  /* deep navy blue */
  color: #d9e1ff;
  font-family: "Poppins", sans-serif;
  padding: 4rem 2rem 2rem;
  box-shadow: 0 -5px 30px rgba(0, 0, 50, 0.6);
  position: relative;
  z-index: 10;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid rgba(100, 130, 255, 0.2);
  padding-bottom: 2.5rem;
}

.footer-logo {
  width: 180px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px rgba(100, 130, 255, 0.5));
}

.footer-about,
.footer-services,
.footer-contact {
  flex: 1 1 300px;
}

.footer-about p {
  color: #b3baf5;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-services h3,
.footer-contact h3 {
  color: #6e8cff;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 8px rgba(100, 130, 255, 0.5);
}

.footer-services ul {
  list-style: none;
  padding: 0;
}

.footer-services li {
  color: #aab2ff;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-services li:hover {
  color: #8ab4ff;
  text-shadow: 0 0 8px rgba(138, 180, 255, 0.7);
  cursor: pointer;
}

.footer-contact p {
  color: #aab2ff;
  margin: 0.5rem 0;
  font-size: 0.95rem;
}

.footer-socials {
  margin-top: 1rem;
}

.social-icon {
  margin-right: 0.8rem;
  font-size: 1.3rem;
  text-decoration: none;
  color: #6e8cff;
  transition: all 0.3s ease;
}

.social-icon:hover {
  color: #9bb9ff;
  text-shadow: 0 0 10px rgba(155, 185, 255, 0.9);
}

/* === Footer Bottom === */
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  color: #8f99ff;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-shadow: 0 0 6px rgba(120, 150, 255, 0.5);
}

/* === Responsive === */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-about,
  .footer-services,
  .footer-contact {
    flex: 1 1 100%;
  }

  .footer-socials {
    justify-content: center;
  }
}

/* Team Header */
.team-section {
  text-align: center;
  padding: 80px 20px;
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.team-title {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.team-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.team-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.team-card {
  background: var(--bg-card);
  border-radius: 16px;
  width: 220px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(76, 111, 255, 0.3);
}

.team-photo {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  margin-bottom: 15px;
}

.team-name {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.team-role {
  font-size: 0.95rem;
  color: var(--text-tertiary);
  margin-bottom: 10px;
}

.team-link {
  color: var(--accent-primary);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.team-link:hover {
  color: var(--accent-secondary);
}

/* Chatbot */
/* Floating Chatbot */
#chatbot-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  font-family: 'Poppins', sans-serif;
}

#chatbot-toggle {
  background: var(--accent-primary);
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

#chatbot-toggle:hover {
  transform: scale(1.05);
  background: var(--accent-secondary);
}

#chatbot-container {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 340px;
  background: var(--bg-card);
  color: var(--text-primary);
  border-radius: 15px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

#chatbot-container.hidden {
  display: none;
}

#chatbot-header {
  background: var(--accent-primary);
  color: #fff;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#chatbot-header h3 {
  font-size: 1.1rem;
  margin: 0;
}

#chatbot-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

#chatbot-messages {
  padding: 10px 15px;
  max-height: 380px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bot-message,
.user-message {
  padding: 8px 12px;
  border-radius: 10px;
  max-width: 80%;
  line-height: 1.4;
  font-size: 0.9rem;
}

.bot-message {
  background: #2a2f4c;
  align-self: flex-start;
}

.user-message {
  background: var(--accent-primary);
  color: white;
  align-self: flex-end;
}

#chatbot-input-area {
  display: flex;
  border-top: 1px solid #444;
}

#chatbot-input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
  background: var(--bg-secondary);
  color: var(--text-primary);
}

#chatbot-send {
  background: var(--accent-primary);
  border: none;
  color: #fff;
  width: 50px;
  cursor: pointer;
}

.quick-replies button {
  background: var(--accent-secondary);
  color: white;
  border: none;
  border-radius: 20px;
  padding: 6px 12px;
  margin: 3px;
  cursor: pointer;
  font-size: 0.8rem;
}

.quick-replies button:hover {
  background: var(--accent-blue-bright);
}
