:root {
    --primary: #0EA5E9; /* Vivid Electric Sky Blue */
    --text-dark: #0F172A; /* Deep Slate Blue */
    --text-gray: #475569;
    --text-light: #94A3B8;
    --bg-white: #FFFFFF;
    --bg-offwhite: #F8FAFC;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-white);
    color: var(--text-dark);
    text-align: center;
    overflow-x: hidden;
    line-height: 1.5;
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}
/* =========================
   NAVBAR (DESKTOP FIRST)
========================= */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px 40px;
  max-width: 1200px;
  margin: 0 auto;

  position: relative;
  z-index: 1000;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;

  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
}

/* DESKTOP NAV */
.nav-links {
  display: flex; /* ✅ desktop horizontal */
  gap: 30px;

  position: static; /* ❌ remove absolute for desktop */
  background: none;
  box-shadow: none;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 14px;
  transition: 0.2s;
}

.nav-links a:hover {
  color: var(--primary);
}

/* CONTACT BUTTON */
.btn-contact {
  background: var(--text-dark);
  color: #fff;

  padding: 10px 24px;
  border-radius: 30px;

  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.btn-contact:hover {
  background: var(--primary);
}

/* =========================
   TOGGLE (HIDDEN DESKTOP)
========================= */

.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

/* =========================
   MOBILE NAV
========================= */

@media (max-width: 768px) {

  /* SHOW TOGGLE */
  .menu-toggle {
    display: block;
  }

  /* HIDE DESKTOP LINKS */
  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;

    width: 100%;
    background: #ffffff;

    flex-direction: column;
    align-items: center;
    gap: 20px;

    padding: 25px 0;

    display: none;

    border-radius: 0 0 20px 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);

    z-index: 999;
  }

  /* SHOW MENU */
  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 16px;
  }
}
/* Hero Section */
.hero {
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-top {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.trusted-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-offwhite);
    padding: 4px 16px 4px 6px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
    border: 1px solid #eee;
}

.trusted-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.text-accent {
    color: var(--primary);
}

.title-icon {
    font-size: 2.5rem;
    vertical-align: middle;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 480px;
    margin: 0 auto 32px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-cta-wrapper {
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: #fff;
    padding: 16px 36px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    transition: transform 0.2s, background-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #0284C7;
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3);
}

.cta-subtext {
    font-size: 0.8rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Hero Visuals */
.hero-visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-image-container {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
    position: relative;
    z-index: 1;
    background: var(--text-dark);
}

.hero-video {
    width: 100%;
    display: block;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    padding: 0 20px;
    flex-wrap: wrap;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.review-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    width: 320px;
    text-align: left;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.review-author img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.review-author span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.85rem;
}

.review-card p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 12px;
    line-height: 1.4;
}

.review-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
}

.review-actions:hover {
    color: var(--primary);
}

/* Features Strip */
.features-strip {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* About Section */
.about-section {
    padding: 100px 20px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 24px;
    font-weight: 600;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 80px;
    letter-spacing: -0.02em;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
    padding: 40px 0;
}

.stat-item {
    flex: 1;
}

.stat-item h3 {
    color: var(--primary);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-item h3 .plus {
    font-size: 2rem;
    vertical-align: top;
    margin-left: 2px;
}

.stat-item p {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 1.5px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
    .floating-reviews {
        display: none; /* Hide floating reviews on mobile */
    }
    .stats-container {
        flex-direction: column;
        gap: 40px;
    }
    .about-title {
        font-size: 1.8rem;
    }
    .nav-links {
        display: none;
    }
}
}

/* =========================
   SERVICES PAGE (LIGHT THEME)
========================= */

.services-page {
  padding: 140px 20px 100px;
  position: relative;
  background: #f8fafc;
}

/* BACKGROUND GLOW */
.services-page::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(0, 170, 255, 0.15), transparent 70%);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(120px);
  z-index: -1;
}

/* =========================
   HEADER
========================= */

.services-header {
  text-align: center;
  margin-bottom: 80px;
}

.services-header h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 1.2px;
  line-height: 1.2;
}

.badge {
  color: #00aaff;
}

.services-header p {
  color: #64748b;
  margin-top: 14px;
  font-size: 18px;
  letter-spacing: 0.4px;
  line-height: 1.7;
}

/* =========================
   GRID
========================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1150px;
  margin: auto;
}

/* =========================
   CARD (FULL BLUE 🔵)
========================= */

.service-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;

  border: 1px solid rgba(0, 170, 255, 0.35);

  transition: all 0.35s ease;
  position: relative;

  box-shadow:
    0 0 0 1px rgba(0, 170, 255, 0.15),
    0 10px 30px rgba(0, 0, 0, 0.05);
}

/* subtle blue glow */
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;

  background: radial-gradient(circle at top right, rgba(0, 170, 255, 0.15), transparent 60%);
  opacity: 1;
  transition: 0.35s ease;
}

/* =========================
   HOVER (STRONG BLUE 🔥)
========================= */

.service-card:hover {
  transform: translateY(-10px) scale(1.03);

  border: 1px solid #00aaff;

  box-shadow:
    0 0 25px rgba(0, 170, 255, 0.5),
    0 0 60px rgba(0, 170, 255, 0.25),
    0 20px 60px rgba(0, 0, 0, 0.12);
}

.service-card:hover::after {
  background: radial-gradient(circle at top right, rgba(0, 170, 255, 0.25), transparent 60%);
}

/* =========================
   CARD TEXT
========================= */

.service-card h3 {
  margin-bottom: 12px;
  color: #00aaff;
  font-size: 20px;
  font-weight: 700;
}

.service-card p {
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
}

/* =========================
   TAGS
========================= */

.service-card .tags {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.service-card .tags span {
  background: #e0f2ff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;

  color: #0284c7;
  border: 1px solid #bae6fd;
}

/* =========================
   FEATURED CARD
========================= */

.service-card.featured {
  transform: scale(1.04);
  border: 1px solid #00aaff;
  box-shadow: 0 20px 60px rgba(0, 170, 255, 0.25);
}

/* =========================
   CTA SECTION
========================= */

.services-cta {
  text-align: center;
  margin-top: 80px;
}

.services-btn {
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;

  background: linear-gradient(90deg, #00aaff, #3b82f6);
  color: #fff;

  transition: 0.3s ease;
}

.services-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(0, 170, 255, 0.3);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  .services-page {
    padding: 100px 20px;
  }

  .services-header h1 {
    font-size: 30px;
  }

  .service-card {
    padding: 24px;
  }
}
/* =========================
   PROCESS PAGE (BLUE LIGHT THEME)
========================= */

.process-page {
  position: relative;
  z-index: 10;
  padding: 140px 20px 80px;
  background: #f8fafc;
}

/* BACKGROUND GLOW */
.process-page::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 170, 255, 0.18), transparent 70%);
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(140px);
  z-index: -1;
}

/* =========================
   HEADER
========================= */

.process-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.process-header h1 {
  font-size: 48px;
  font-weight: 800;
  margin: 10px 0;
  color: #0f172a;
}

.process-header p {
  font-size: 16px;
  color: #64748b;
}

/* =========================
   GRID
========================= */

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding: 100px 20px;

  max-width: 1100px;
  margin: 0 auto;

  position: relative;
  z-index: 5;

  opacity: 0;
  transform: translateY(40px);
  animation: gridReveal 0.8s ease forwards;
  animation-delay: 0.2s;
}

@keyframes gridReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* BACKGROUND GLOW */
.process-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;

  background: radial-gradient(circle at 50% 50%,
      rgba(0, 170, 255, 0.15),
      transparent 70%);
}

/* =========================
   CARD 🔵
========================= */

.process-card {
  position: relative;
  overflow: hidden;

  background: #ffffff;
  border-radius: 18px;
  padding: 30px;
  text-align: center;

  border: 1px solid rgba(0, 170, 255, 0.3);

  transition: all 0.35s ease;

  transform: translateY(40px);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;

  box-shadow:
    0 0 0 1px rgba(0, 170, 255, 0.1),
    0 10px 30px rgba(0, 0, 0, 0.05);
}

/* stagger */
.process-card:nth-child(1) { animation-delay: 0.1s; }
.process-card:nth-child(2) { animation-delay: 0.3s; }
.process-card:nth-child(3) { animation-delay: 0.5s; }
.process-card:nth-child(4) { animation-delay: 0.7s; }

@keyframes fadeUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* glow layer */
.process-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;

  background: radial-gradient(circle at center,
      rgba(0, 170, 255, 0.15),
      transparent 70%);

  opacity: 0;
  transition: 0.4s;
}

/* =========================
   HOVER 🔥
========================= */

.process-card:hover {
  transform: translateY(-10px) scale(1.03);

  border: 1px solid #00aaff;

  box-shadow:
    0 0 25px rgba(0, 170, 255, 0.5),
    0 0 60px rgba(0, 170, 255, 0.25),
    0 20px 60px rgba(0, 0, 0, 0.1);
}

.process-card:hover::before {
  opacity: 1;
}

/* =========================
   ICON
========================= */

.icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #e0f2ff;

  border: 1px solid #bae6fd;

  transition: 0.4s ease;

  animation: float 3s ease-in-out infinite;
}

.icon svg {
  width: 55px;
}

/* floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* =========================
   ICON COLORS FIX 🔵
========================= */

.upload-icon rect,
.magic-icon rect,
.feedback-icon rect,
.feedback-icon polygon,
.rocket-icon path,
.rocket-icon polygon,
.rocket-icon circle {
  fill: #00aaff;
}

.upload-icon path,
.magic-icon line {
  stroke: #00aaff;
}

/* hover glow */
.process-card:hover .icon {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(0, 170, 255, 0.6);
}

/* =========================
   TEXT
========================= */

.process-card .number {
  font-size: 14px;
  color: #94a3b8;
  display: block;
  margin-bottom: 5px;
}

.process-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #00aaff;
}

.process-card p {
  font-size: 14px;
  line-height: 1.5;
  color: #475569;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-card {
    padding: 25px;
  }
}

/* =========================
   PORTFOLIO SECTION (BLUE LIGHT)
========================= */

.portfolio {
  padding: 140px 20px;
  text-align: center;
  background: #f8fafc;
}

/* HEADER */
.portfolio-header {
  margin-bottom: 80px;
}

.portfolio-header h2 {
  font-size: clamp(34px, 5vw, 50px);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 1.2px;
}

.portfolio-header p {
  color: #64748b;
  margin-top: 12px;
  font-size: 17px;
}

/* GRID */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

/* CARD 🔵 */
.portfolio-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;

  border: 1px solid rgba(0, 170, 255, 0.25);

  text-align: left;
  transition: all 0.35s ease;

  box-shadow:
    0 0 0 1px rgba(0, 170, 255, 0.08),
    0 10px 30px rgba(0, 0, 0, 0.05);
}

/* HOVER 🔥 */
.portfolio-card:hover {
  transform: translateY(-10px) scale(1.03);

  border: 1px solid #00aaff;

  box-shadow:
    0 0 25px rgba(0, 170, 255, 0.45),
    0 0 60px rgba(0, 170, 255, 0.2),
    0 20px 60px rgba(0, 0, 0, 0.12);
}

/* VIDEO */
.video-thumb {
  position: relative;
}

.video-thumb img {
  width: 100%;
  border-radius: 12px;
}

/* PLAY BUTTON */
.play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  font-size: 26px;
  background: rgba(0, 170, 255, 0.9);
  padding: 12px 16px;
  border-radius: 50%;
  color: #fff;
}

/* META */
.meta {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  cursor: pointer;
  color: #64748b;
  font-size: 13px;
}

/* TEXT */
.portfolio-card h3 {
  margin-top: 12px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  color: #00aaff;
}

.portfolio-card p {
  color: #475569;
  font-size: 15px;
  margin-top: 10px;
  line-height: 1.6;
}

/* =========================
   SOLUTION SECTION (BLUE LIGHT)
========================= */

.solution {
  padding: 140px 20px;
  text-align: center;
  background: #f8fafc;
}

/* HEADER */
.solution-header {
  margin-bottom: 80px;
}

.solution-header h2 {
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 800;
  color: #0f172a;
}

.solution-header p {
  color: #64748b;
  margin-top: 12px;
  font-size: 18px;
}

/* =========================
   MAIN BOX 🔵
========================= */

.solution-box {
  max-width: 900px;
  margin: auto;

  background: #ffffff;

  padding: 50px;
  border-radius: 22px;

  border: 1px solid rgba(0, 170, 255, 0.25);

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;

  text-align: left;

  box-shadow:
    0 0 0 1px rgba(0, 170, 255, 0.08),
    0 10px 40px rgba(0, 0, 0, 0.05);
}

/* =========================
   LEFT (PROBLEM)
========================= */

.problem h3 {
  font-size: 22px;
  color: #ef4444;
  margin-bottom: 20px;
}

.problem li {
  font-size: 15px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 12px;
}

/* =========================
   RIGHT (SOLUTION)
========================= */

.solution-right h3 {
  font-size: 22px;
  color: #00aaff;
  margin-bottom: 20px;
}

.solution-right li {
  font-size: 15px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 12px;
}

/* ICONS */
.problem li::before {
  content: "✖";
  color: #ef4444;
  margin-right: 10px;
}

.solution-right li::before {
  content: "✔";
  color: #00aaff;
  margin-right: 10px;
}

/* =========================
   HOVER EFFECT (BOX)
========================= */

.solution-box:hover {
  border: 1px solid #00aaff;

  box-shadow:
    0 0 30px rgba(0, 170, 255, 0.25),
    0 20px 60px rgba(0, 0, 0, 0.08);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  .solution-box {
    grid-template-columns: 1fr;
    padding: 30px;
    gap: 30px;
  }

  .solution-header h2 {
    font-size: 32px;
  }
}
/* =========================
   PRICING SECTION
========================= */

.pricing {
  padding: 120px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* HEADER */
.pricing-header {
  text-align: center;
  margin-bottom: 80px;
}

.badge {
  color: #0284c7;
  font-size: 14px;
}

.pricing-header h1 {
  font-size: 48px;
  margin-top: 10px;
}

.pricing-header p {
  color: #64748b;
  margin-top: 10px;
}

/* =========================
   GRID
========================= */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;

  max-width: 1100px;
  width: 100%;
}

/* =========================
   CARD
========================= */

.price-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;

  border: 1px solid rgba(0,170,255,0.2);
  transition: 0.3s;

  position: relative; /* 🔥 needed for popular tag */
}

.price-card:hover {
  transform: translateY(-10px) scale(1.03);

  border: 1px solid #00aaff;

  box-shadow:
    0 0 25px rgba(0, 170, 255, 0.5),
    0 0 60px rgba(0, 170, 255, 0.25),
    0 20px 60px rgba(0, 0, 0, 0.1);
}

.price-card h4 {
  color: #64748b;
  font-size: 14px;
}

.price-card h3 {
  margin: 10px 0 20px;
}

/* =========================
   REMOVE UNDERLINE (MAIN FIX)
========================= */

.price-card a {
  text-decoration: none !important;
  color: inherit;
  display: block;
}

.price-card a:hover {
  text-decoration: none !important;
}

/* =========================
   PRICE BUTTONS
========================= */

.price-btn {
  display: block;

  color: #0284c7;
  background: rgba(0,170,255,0.1);

  padding: 12px;
  border-radius: 10px;

  margin-bottom: 10px;
  border: 1px solid rgba(0,170,255,0.2);

  transition: 0.25s ease;
}

.price-btn:hover {
  background: #0284c7;
  color: #fff;
  transform: translateY(-2px);
}

/* =========================
   CTA BUTTON
========================= */

.book-btn {
  width: 100%;
  padding: 12px;
  margin-top: 12px;

  border-radius: 30px;
  border: none;

  background: linear-gradient(90deg,#0284c7,#3b82f6);
  color: #fff;

  cursor: pointer;
  transition: 0.3s;
}

.book-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0,170,255,0.3);
}

/* =========================
   POPULAR TAG
========================= */

.popular-tag {
  position: absolute;
  top: 15px;
  right: 15px;

  background: #0284c7;
  color: #fff;

  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* =========================
   REVIEWS SECTION
========================= */

.reviews {
  padding: 120px 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

/* HEADER */
.reviews-header {
  max-width: 600px;
  text-align: center;
  margin-bottom: 60px;
}

.reviews-header h2 {
  font-size: 40px;
}

.reviews-header p {
  color: #64748b;
  margin-top: 10px;
}

/* GRID */
.reviews-container {
  max-width: 1100px;
  width: 100%;
}

.review-list {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}

/* CARD */
.review-item {
  display: flex;
  gap: 15px;

  padding: 20px;
  border-radius: 16px;

  background: #fff;
  border: 1px solid rgba(0,170,255,0.2);

  transition: 0.3s;
}

.review-item:hover {
 transform: translateY(-10px) scale(1.03);

  border: 1px solid #00aaff;

  box-shadow:
    0 0 25px rgba(0, 170, 255, 0.5),
    0 0 60px rgba(0, 170, 255, 0.25),
    0 20px 60px rgba(0, 0, 0, 0.1);
}

.review-item img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.review-content h4 {
  color: #0284c7;
  font-size: 14px;
}

.review-content p {
  font-size: 14px;
  color: #475569;
}
/* =========================
   CTA FORCE FIX (FINAL)
========================= */

.review-cta {
  display: flex !important;
  justify-content: center !important;
  margin-top: 100px !important;
}

.cta-box {
  width: 100% !important;
  max-width: 700px !important;

  background: #ffffff !important;
  padding: 60px 50px !important;
  border-radius: 24px !important;

  border: 1px solid rgba(0,170,255,0.2) !important;

  text-align: center !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 18px !important;

  box-shadow:
    0 20px 60px rgba(0,170,255,0.15),
    0 10px 30px rgba(0,0,0,0.05) !important;
}

.cta-box h3 {
  font-size: 26px !important;
  color: #0f172a !important;
}

.cta-box button {
  padding: 14px 36px !important;
  border-radius: 40px !important;

  background: linear-gradient(90deg,#0284c7,#3b82f6) !important;
  color: #fff !important;

  border: none !important;
  cursor: pointer !important;
}

.cta-box p {
  color: #64748b !important;
}

.email {
  color: #0284c7 !important;
  font-weight: 600 !important;
}
/* =========================
   FAQ PAGE (BLUE THEME FINAL)
========================= */

.faq-page {
  padding: 140px 20px;
  max-width: 900px;
  margin: auto;
}

/* HEADER */
.faq-header {
  text-align: center;
  margin-bottom: 80px;
}

.faq-header h1 {
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.2;
  font-weight: 800;
  color: #0f172a; /* FIXED */

  letter-spacing: 1px;
}

.faq-header p {
  color: #64748b; /* FIXED */
  margin-top: 14px;
  font-size: 18px;
  letter-spacing: 0.5px;
}

/* WRAPPER */
.faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ITEM */
.faq-item {
  background: #ffffff; /* WHITE CARD */
  border-radius: 18px;
  padding: 22px;

  cursor: pointer;
  transition: all 0.3s ease;

  border: 1px solid rgba(0,170,255,0.2); /* BLUE BORDER */
  box-shadow: 0 10px 30px rgba(0,170,255,0.08);
}

/* HOVER */
.faq-item:hover {
  background: rgba(0,170,255,0.05);
  transform: translateY(-3px);
}

/* ACTIVE */
.faq-item.active {
  background: #ffffff;
  border: 1px solid #0284c7;

  box-shadow: 0 15px 40px rgba(0,170,255,0.2);
}

/* QUESTION */
.faq-question {
  font-weight: 600;
  font-size: 18px;
  color: #0284c7; /* BLUE */

  display: flex;
  justify-content: space-between;
  align-items: center;

  letter-spacing: 0.4px;
}

/* ICON */
.faq-question .icon {
  transition: 0.3s ease;
  font-size: 18px;
  color: #0284c7;
}

/* ROTATE ICON */
.faq-item.active .icon {
  transform: rotate(180deg);
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: #475569; /* DARK TEXT */

  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  opacity: 1;
}

/* =========================
   NAV LINKS (UNCHANGED LOGIC, BLUE MATCH)
========================= */

.nav ul li a {
  position: relative;
  text-decoration: none;
  color: #64748b;
  font-size: 14px;

  padding: 8px 16px;
  border-radius: 20px;

  transition: all 0.3s ease;
}

/* HOVER */
.nav ul li a:hover {
  color: #0284c7;
  background: rgba(0,170,255,0.08);
}

/* ACTIVE */
.nav ul li a.active {
  color: #ffffff;
  background: linear-gradient(135deg, #0284c7, #3b82f6);

  box-shadow: 0 6px 20px rgba(0,170,255,0.3);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  .faq-page {
    padding: 120px 20px;
  }

  .faq-header h1 {
    font-size: 32px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-answer {
    font-size: 14px;
  }
}
/* =========================
   FOOTER
========================= */

.footer {
  background: #ffffff;
  padding: 60px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.footer h4 {
  margin-bottom: 10px;
  color: #00cdf7;
}

.footer p {
  color: #aaa;
  margin-bottom: 6px;
  font-size: 14px;
}

.footer-left h3 {
  color: #00cdf7;
}

.footer-left p {
  margin-top: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  color: #777;
  font-size: 13px;
}

/* =========================
   ULTRA PREMIUM CTA SECTION
========================= */

/* =========================
   ULTRA PREMIUM CTA SECTION
========================= */

.cta-section {
  padding: 160px 20px;
  display: flex;
  justify-content: center;
}

/* MAIN BOX */
.cta-box-main {
  position: relative;
  background: radial-gradient(circle at top left, #1b1b2f, #0a0a0a);
  padding: 80px 50px;
  border-radius: 28px;
  text-align: center;
  max-width: 900px;
  width: 100%;
  overflow: visible;
  box-shadow: 0 40px 120px rgba(255, 255, 255, 0.9);
}

/* 🔥 GLOW BACKGROUND */
.cta-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.6), transparent);
  top: -200px;
  left: -200px;
  filter: blur(140px);
  animation: moveGlow 10s infinite alternate ease-in-out;
  z-index: 0;
}

@keyframes moveGlow {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(300px, 200px);
  }
}

/* ✨ PARTICLE DOTS */
.cta-box-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
  animation: moveParticles 20s linear infinite;
  z-index: 1;
}

@keyframes moveParticles {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 200px 200px;
  }
}

/* TEXT */
.cta-box-main h2 {
  font-size: 44px;
  margin-bottom: 12px;
  position: relative;
  z-index: 3;
  color: #ffffff;
}

.cta-box-main p {
  color: #aaa;
  margin-bottom: 35px;
  position: relative;
  z-index: 3;
  font-size: 16px;
}

/* 🚀 BUTTON */
.cta-box-main .cta {
  background: linear-gradient(135deg, #6c5ce7, #00cec9);
  border: none;
  padding: 16px 34px;
  border-radius: 40px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 5;
  font-size: 15px;
}

.cta-box-main .cta:hover {
  transform: scale(1.12);
  box-shadow: 0 0 40px rgba(108, 92, 231, 1);
}

/* TAG CONTAINER */
.cta-tags {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* TAG STYLE */
.tag {
  position: absolute;
  background: rgba(0, 158, 231, 0.8);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  color: #fff;
  border: 1px solid rgba(190, 186, 186, 0.658);
  backdrop-filter: blur(12px);
  opacity: 0.95;
}

/* DIFFERENT ROTATIONS */
.t1 {
  transform: rotate(-10deg);
}

.t2 {
  transform: rotate(8deg);
}

.t3 {
  transform: rotate(-6deg);
}

.t4 {
  transform: rotate(6deg);
}

/* POSITION + FLOAT */
.t1 {
  left: 40px;
  bottom: 20px;
  animation: float1 6s ease-in-out infinite;
}

.t2 {
  right: 40px;
  bottom: 40px;
  animation: float2 5s ease-in-out infinite;
}

.t3 {
  right: 180px;
  bottom: 10px;
  animation: float3 7s ease-in-out infinite;
}

.t4 {
  left: 180px;
  bottom: 50px;
  animation: float4 6s ease-in-out infinite;
}

/* FLOAT VARIATIONS */
@keyframes float1 {

  0%,
  100% {
    transform: translateY(0) rotate(-10deg);
  }

  50% {
    transform: translateY(-12px) rotate(-10deg);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateY(0) rotate(8deg);
  }

  50% {
    transform: translateY(-15px) rotate(8deg);
  }
}

@keyframes float3 {

  0%,
  100% {
    transform: translateY(0) rotate(-6deg);
  }

  50% {
    transform: translateY(-10px) rotate(-6deg);
  }
}

@keyframes float4 {

  0%,
  100% {
    transform: translateY(0) rotate(6deg);
  }

  50% {
    transform: translateY(-14px) rotate(6deg);
  }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

  .cta-box-main {
    padding: 60px 25px;
  }

  .cta-box-main h2 {
    font-size: 28px;
  }

  .cta-box-main p {
    font-size: 14px;
  }

  .tag {
    display: none;
    /* clean mobile UI */
  }
}

.footer a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 8px;
  transition: 0.3s;
}

.footer a:hover {
  color: #00a2ff;
  transform: translateX(5px);
}
