* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial; 
  color: white;
  background: #07153f
}

/* ================= NAVBAR ================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(18, 33, 120, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(110, 255, 241, 0.18);
}

.nav-container {
  width: min(92%, 1200px);
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #ffffff;
  background: linear-gradient(135deg, #64f4ff, #49d7c7);
  box-shadow: 0 8px 24px rgba(100, 244, 255, 0.28);
  flex-shrink: 0;
}

.logo span {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-menu a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav-menu a:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: #12317c;
  background: linear-gradient(135deg, #67f4ff, #52dfd2);
  box-shadow: 0 10px 24px rgba(97, 244, 255, 0.22);
}

.btn.outline {
  color: #67f4ff;
  border: 2px solid #67f4ff;
  background: transparent;
}

.btn.outline:hover {
  background: rgba(103, 244, 255, 0.08);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px auto;
  border-radius: 999px;
  background: #ffffff;
  transition: 0.3s ease;
}

.mobile-buttons {
  display: none;
}

/* ================= TABLET ================= */
@media (max-width: 1100px) {
  .nav-menu {
    gap: 22px;
  }

  .logo span {
    font-size: 1.8rem;
  }

  .btn {
    padding: 11px 20px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
  .nav-container {
    min-height: 76px;
  }

  .menu-toggle {
    display: block;
    z-index: 1101;
  }

  .nav-buttons {
    display: none;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(12, 24, 98, 0.98);
    border: 1px solid rgba(103, 244, 255, 0.14);
    border-radius: 22px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: 0.3s ease;
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    width: 100%;
    padding: 14px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 1rem;
  }

  .nav-menu a:last-of-type {
    border-bottom: none;
  }

  .mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 14px;
  }

  .mobile-buttons .btn {
    width: 100%;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .logo-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .logo span {
    font-size: 1.55rem;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 520px) {
  .nav-container {
    width: 94%;
    min-height: 72px;
  }

  .logo {
    gap: 10px;
  }

  .logo-icon {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .logo span {
    font-size: 1.35rem;
  }

  .nav-menu {
    padding: 18px;
    border-radius: 18px;
  }

  .nav-menu a {
    font-size: 0.95rem;
    padding: 12px 8px;
  }
}

/* ================= HERO SECTION ================= */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 70px 20px 35px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(0, 238, 255, 0.28) 0%, rgba(0, 238, 255, 0.14) 18%, rgba(0, 238, 255, 0.06) 28%, transparent 48%),
    linear-gradient(135deg, #07153f 0%, #0a1f63 45%, #0d4d8d 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 55%, rgba(0, 255, 255, 0.10), transparent 35%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  padding: 12px 26px;
  border: 2px solid rgba(20, 244, 255, 0.65);
  border-radius: 999px;
  color: #19f5ff;
  font-weight: 700;
  font-size: 0.95rem;
  background: rgba(10, 162, 180, 0.12);
  box-shadow: 0 0 20px rgba(20, 244, 255, 0.12);
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(3.6rem, 8vw, 6.5rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -2px;
  color: #ffffff;
  margin-bottom: 22px;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.16),
    0 0 24px rgba(255, 255, 255, 0.08);
}

.hero-title span {
  color: #18f3ff;
  display: inline-block;
  margin-top: 8px;
  text-shadow:
    0 0 10px rgba(24, 243, 255, 0.45),
    0 0 28px rgba(24, 243, 255, 0.22);
}

.hero-text {
  max-width: 760px;
  margin: 0 auto 34px;
  font-size: 1.08rem;
  line-height: 1.45;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-btn {
  text-decoration: none;
  padding: 16px 34px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  min-width: 210px;
  transition: 0.3s ease;
}

/* PRIMARY BUTTON (View Packages) */
.primary-btn {
  background: linear-gradient(90deg, #14efff, #27ffd7);
  color: #083b63;
  transition: all 0.3s ease;
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 10px rgba(20, 239, 255, 0.6),
    0 0 25px rgba(20, 239, 255, 0.4),
    0 0 45px rgba(20, 239, 255, 0.25);
}

/* SECONDARY BUTTON (View Our Work) */
.secondary-btn {
  border: 2px solid rgba(20, 239, 255, 0.6);
  color: #14efff;
  background: transparent;
  transition: all 0.3s ease;
}

.secondary-btn:hover {
  transform: translateY(-3px);
  background: rgba(20, 239, 255, 0.08);
  box-shadow:
    0 0 10px rgba(20, 239, 255, 0.5),
    0 0 25px rgba(20, 239, 255, 0.3),
    0 0 40px rgba(20, 239, 255, 0.2);
  border-color: #14efff;
}

.hero-stats {
  max-width: 860px;
  margin: 0 auto 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-item h3 {
  font-size: 2.1rem;
  font-weight: 900;
  margin-bottom: 8px;
  color: #ffffff;
}

.stat-item p {
  font-size: 0.98rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.scroll-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

/* ================= FLOATING DOTS ================= */
.dot {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #18f3ff;
  box-shadow: 0 0 18px rgba(24, 243, 255, 0.7);
  z-index: 1;
}

.dot-1 {
  top: 150px;
  left: 8%;
}

.dot-2 {
  top: 42%;
  left: 31%;
}

.dot-3 {
  top: 25%;
  right: 8%;
}

.dot-4 {
  bottom: 18%;
  left: 12%;
}

.dot-5 {
  bottom: 10%;
  right: 7%;
}


/* ================= ABOUT SECTION ================= */
.about-section {
  padding: 110px 7% 90px;
  background: linear-gradient(180deg, #0b20a8 0%, #08187c 100%);
  color: #ffffff;
  overflow: hidden;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

/* LEFT SIDE */
.about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-label {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #67f4ff;
}

.about-title {
  margin: 0 0 26px;
  font-size: clamp(3rem, 5vw, 5.4rem);
  line-height: 0.92;
  font-weight: 900;
  color: #fff7ea;
  max-width: 520px;
}

.about-title span {
  display: block;
  color: #45efd2;
}

.about-text {
  max-width: 620px;
}

.about-description {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.93);
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.about-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 180px;
  padding: 14px 20px;
  border-radius: 14px;
  border: 1.5px solid rgba(86, 230, 255, 0.45);
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
}

.about-tag:hover {
  transform: translateY(-4px);
  border-color: #53eaff;
  box-shadow: 0 0 18px rgba(83, 234, 255, 0.24);
}

.about-tag span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

/* RIGHT SIDE IMAGE */
.about-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image-border {
  position: relative;
  padding: 10px;
  border-radius: 30px;
  border: 2px solid rgba(69, 232, 255, 0.55);
  box-shadow: 0 0 0 2px rgba(69, 232, 255, 0.12);
}

.about-image-border::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 36px;
  border: 1.5px solid rgba(69, 232, 255, 0.24);
  pointer-events: none;
}

.about-image-card {
  position: relative;
  width: 340px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.about-image-card img {
  display: block;
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.about-image-overlay {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
}

.about-image-overlay h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  color: #ffffff;
}

.about-image-overlay p {
  margin: 6px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: #49f0d3;
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
  .about-section {
    padding: 90px 5% 75px;
  }

  .about-container {
    grid-template-columns: 1fr 0.95fr;
    gap: 40px;
  }

  .about-title {
    font-size: clamp(2.6rem, 5vw, 4.4rem);
    max-width: 460px;
  }

  .about-description {
    font-size: 15px;
    line-height: 1.75;
  }

  .about-image-card {
    width: 300px;
  }

  .about-image-card img {
    height: 390px;
  }

  .about-tag {
    min-width: 160px;
    font-size: 14px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .about-section {
    padding: 75px 20px 60px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-image-wrapper {
    order: 1;
    justify-content: center;
  }

  .about-content {
    order: 2;
  }

  .about-title {
    font-size: 2.7rem;
    line-height: 0.96;
    margin-bottom: 22px;
    max-width: 100%;
  }

  .about-text {
    max-width: 100%;
  }

  .about-description {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 16px;
  }

  .about-tags {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-top: 18px;
  }

  .about-tag {
    width: 100%;
    min-width: 0;
    padding: 14px 18px;
    font-size: 14px;
  }

  .about-image-card {
    width: 100%;
    max-width: 320px;
  }

  .about-image-card img {
    height: 390px;
  }

  .about-image-overlay h3 {
    font-size: 25px;
  }

  .about-image-overlay p {
    font-size: 13px;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {
  .about-section {
    padding: 70px 16px 55px;
  }

  .about-label {
    font-size: 12px;
  }

  .about-title {
    font-size: 2.2rem;
  }

  .about-description {
    font-size: 14px;
  }

  .about-image-border {
    padding: 8px;
  }

  .about-image-border::before {
    inset: -8px;
  }

  .about-image-card img {
    height: 340px;
  }

  .about-tag {
    border-radius: 12px;
  }
}


/* ================= PRICING SECTION ================= */
.pricing {
  padding: 110px 40px 90px;
  background:
    radial-gradient(circle at 50% 20%, rgba(0, 255, 255, 0.08), transparent 35%),
    linear-gradient(180deg, #07143f 0%, #081b53 45%, #07143f 100%);
  position: relative;
}

.pricing-container {
  max-width: 1300px;
  margin: 0 auto;
}

.pricing-heading {
  text-align: center;
  margin-bottom: 55px;
}

.pricing-heading h2 {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 14px;
  text-shadow: 0 0 10px rgba(255,255,255,0.08);
}

.pricing-heading p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.price-card {
  position: relative;
  background: linear-gradient(180deg, rgba(13, 37, 102, 0.95), rgba(10, 28, 84, 0.96));
  border: 1px solid rgba(89, 150, 255, 0.28);
  border-radius: 24px;
  padding: 28px 24px 24px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
  transition: all 0.35s ease;
  overflow: hidden;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0,255,255,0.08), transparent 45%);
  opacity: 0;
  transition: 0.35s ease;
  pointer-events: none;
}

.price-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,255,255,0.6);
  box-shadow:
    0 0 0 1px rgba(0,255,255,0.18),
    0 0 28px rgba(0,255,255,0.18),
    0 0 50px rgba(0,255,255,0.08);
}

.price-card:hover::before {
  opacity: 1;
}

.featured-card {
  border: 1.5px solid rgba(0,255,255,0.7);
  box-shadow:
    0 0 0 1px rgba(0,255,255,0.15),
    0 0 30px rgba(0,255,255,0.16),
    0 0 55px rgba(0,255,255,0.08);
}

.featured-card:hover {
  box-shadow:
    0 0 0 1px rgba(0,255,255,0.25),
    0 0 40px rgba(0,255,255,0.25),
    0 0 70px rgba(0,255,255,0.12);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #13efff, #2fffd0);
  color: #09335f;
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 0 20px rgba(19, 239, 255, 0.3);
}

.card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(20,239,255,0.2), rgba(20,239,255,0.08));
  border: 1px solid rgba(0,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 0 18px rgba(0,255,255,0.08);
}

.card-top h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
}

.price-card h4 {
  font-size: 3.3rem;
  font-weight: 900;
  margin-bottom: 16px;
  color: #ffffff;
  text-shadow: 0 0 8px rgba(255,255,255,0.06);
}

.card-text {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.86);
  line-height: 1.6;
  margin-bottom: 24px;
  min-height: 68px;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.price-card ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
}

.price-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #13efff;
  font-weight: 900;
  font-size: 1.05rem;
}

.price-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, #5f8ef3, #6d97f7);
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  transition: 0.3s ease;
}

.price-btn:hover {
  filter: brightness(1.08);
}

.featured-btn {
  background: linear-gradient(90deg, #14efff, #27ffd7);
  color: #0a315e;
  box-shadow: 0 0 22px rgba(20,239,255,0.25);
}

/* second row alignment */
.pricing-grid .price-card:nth-child(4) {
  grid-column: 1 / 2;
}

.pricing-grid .price-card:nth-child(5) {
  grid-column: 2 / 3;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1100px) {
  .pricing-heading h2 {
    font-size: 3rem;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid .price-card:nth-child(4),
  .pricing-grid .price-card:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 700px) {
  .pricing {
    padding: 90px 18px 70px;
  }

  .pricing-heading h2 {
    font-size: 2.4rem;
  }

  .pricing-heading p {
    font-size: 1rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .card-top h3 {
    font-size: 1.4rem;
  }

  .price-card h4 {
    font-size: 2.5rem;
  }

  .card-text {
    min-height: auto;
  }
}

/* ================= OUR PROCESS SECTION ================= */
.process {
  padding: 110px 40px 100px;
  background:
    radial-gradient(circle at 85% 15%, rgba(0, 255, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #07143f 0%, #08194e 45%, #07143f 100%);
}

.process-container {
  max-width: 1300px;
  margin: 0 auto;
}

.process-heading {
  text-align: center;
  margin-bottom: 70px;
}

.process-heading h2 {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 14px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.08);
}

.process-heading p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 500;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  align-items: start;
}

.process-card {
  position: relative;
  padding-top: 10px;
}

.process-line {
  width: 100%;
  height: 1px;
  background: rgba(115, 158, 255, 0.28);
  margin-bottom: 18px;
}

.process-number {
  display: inline-block;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  color: #14efff;
  margin-bottom: 14px;
  transition: all 0.3s ease;
}

/* only the number lights up on hover */
.process-card:hover .process-number {
  text-shadow:
    0 0 10px rgba(20, 239, 255, 0.5),
    0 0 20px rgba(20, 239, 255, 0.35),
    0 0 35px rgba(20, 239, 255, 0.2);
  transform: translateY(-2px);
}

.process-card h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
}

.process-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  max-width: 250px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1100px) {
  .process-heading h2 {
    font-size: 3rem;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 28px;
  }

  .process-card p {
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  .process {
    padding: 90px 18px 70px;
  }

  .process-heading {
    margin-bottom: 50px;
  }

  .process-heading h2 {
    font-size: 2.4rem;
  }

  .process-heading p {
    font-size: 1rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .process-number {
    font-size: 3.2rem;
  }

  .process-card h3 {
    font-size: 1.5rem;
  }

  .process-card p {
    font-size: 1rem;
  }
}

/* ================= TESTIMONIALS ================= */
.testimonials {
  padding: 110px 40px;
  background:
    radial-gradient(circle at 20% 20%, rgba(0,255,255,0.08), transparent 30%),
    linear-gradient(180deg, #07143f 0%, #081b53 50%, #07143f 100%);
}

.testimonials-container {
  max-width: 1300px;
  margin: 0 auto;
}

.testimonials-heading {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-heading h2 {
  font-size: 3.8rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 12px;
}

.testimonials-heading p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
}

/* GRID */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD */
.testimonial-card {
  position: relative;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(120,160,255,0.3);
  background: linear-gradient(180deg, rgba(10,30,90,0.95), rgba(8,24,70,0.95));
  transition: all 0.35s ease;
}

/* HOVER GLOW */
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,255,255,0.6);
  box-shadow:
    0 0 0 1px rgba(0,255,255,0.2),
    0 0 25px rgba(0,255,255,0.2),
    0 0 50px rgba(0,255,255,0.1);
}

/* STARS */
.stars {
  color: #14efff;
  font-size: 1.3rem;
  margin-bottom: 15px;
  letter-spacing: 3px;
}

/* TEXT */
.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 20px;
}

/* NAME */
.testimonial-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
}

.testimonial-card span {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
}

/* QUOTE ICON */
.quote {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 2rem;
  color: rgba(0,255,255,0.6);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-heading h2 {
    font-size: 2.5rem;
  }
}

/* ================= FAQ SECTION ================= */
.faq {
  padding: 110px 40px 100px;
  background:
    radial-gradient(circle at 20% 20%, rgba(0,255,255,0.06), transparent 28%),
    linear-gradient(180deg, #07143f 0%, #081b53 50%, #07143f 100%);
}

.faq-container {
  max-width: 1100px;
  margin: 0 auto;
}

.faq-heading {
  text-align: center;
  margin-bottom: 55px;
}

.faq-heading h2 {
  font-size: 4rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(255,255,255,0.08);
}

.faq-heading p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.86);
  font-weight: 500;
}

/* FAQ LIST */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* FAQ ITEM */
.faq-item {
  background: linear-gradient(180deg, rgba(14, 38, 107, 0.95), rgba(8, 27, 83, 0.96));
  border: 1px solid rgba(115, 158, 255, 0.34);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* hover effect */
.faq-item:hover {
  border-color: rgba(0,255,255,0.55);
  box-shadow:
    0 0 0 1px rgba(0,255,255,0.14),
    0 0 22px rgba(0,255,255,0.12);
}

/* active/open item */
.faq-item.active {
  border-color: rgba(0,255,255,0.8);
  box-shadow:
    0 0 0 1px rgba(0,255,255,0.22),
    0 0 30px rgba(0,255,255,0.16);
}

/* QUESTION BUTTON */
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  text-align: left;
  font-size: 1.28rem;
  font-weight: 800;
  cursor: pointer;
}

/* ICON */
.faq-icon {
  font-size: 1.4rem;
  color: #ffffff;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

/* rotate icon when active */
.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: #14efff;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 24px 24px;
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  max-width: 900px;
}

/* first item open by default */
.faq-item.active .faq-answer {
  max-height: 300px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .faq-heading h2 {
    font-size: 2.8rem;
  }

  .faq-question {
    font-size: 1.05rem;
    padding: 18px 18px;
  }

  .faq-answer p {
    font-size: 1rem;
    padding: 0 18px 20px;
  }
}

@media (max-width: 600px) {
  .faq {
    padding: 90px 18px 70px;
  }

  .faq-heading h2 {
    font-size: 2.2rem;
  }

  .faq-heading p {
    font-size: 1rem;
  }

  .faq-question {
    font-size: 0.96rem;
  }

  .faq-icon {
    font-size: 1.1rem;
  }
}

.contact-hero {
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px;
  background:
    radial-gradient(circle at center, rgba(0, 212, 255, 0.08) 0%, rgba(0, 212, 255, 0.03) 30%, transparent 65%),
    linear-gradient(180deg, #08162f 0%, #06214a 45%, #072654 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-hero-content {
  max-width: 900px;
  width: 100%;
}

.contact-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.05;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 28px;
  letter-spacing: -1px;
}

.contact-hero h1 span {
  color: #11f0ea;
  text-shadow: 0 0 18px rgba(17, 240, 234, 0.2);
}

.contact-hero p {
  max-width: 760px;
  margin: 0 auto 38px;
  font-size: clamp(1rem, 1.4vw, 1.45rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 42px;
  border-radius: 14px;
  background: linear-gradient(90deg, #13efe9, #0bd6ff);
  color: #06203a;
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 0 24px rgba(19, 239, 233, 0.22);
  transition: all 0.3s ease;
}

.quote-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(19, 239, 233, 0.45);
}

.quote-btn span {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.quote-btn:hover span {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .contact-hero {
    min-height: 70vh;
    padding: 90px 18px;
  }

  .contact-hero h1 {
    margin-bottom: 22px;
  }

  .contact-hero p {
    margin-bottom: 30px;
    line-height: 1.6;
  }

  .quote-btn {
    padding: 16px 30px;
    font-size: 1rem;
  }
}

.site-footer {
  background: linear-gradient(180deg, #071a3a 0%, #05142f 100%);
  padding: 70px 20px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.footer-column h3 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 24px;
  font-weight: 700;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-logo-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, #12f0ea, #09d8ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #07203f;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 0 18px rgba(18, 240, 234, 0.35);
}

.footer-logo span {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
}

.footer-brand p {
  max-width: 360px;
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  margin-bottom: 16px;
  font-size: 1.15rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #11f0ea;
  transform: translateX(6px);
}

.footer-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #12f0ea, #08cfff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #06203a;
  font-size: 20px;
  box-shadow: 0 0 18px rgba(18, 240, 234, 0.25);
  flex-shrink: 0;
}

.footer-contact span {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.footer-bottom {
  max-width: 1200px;
  margin: 45px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  font-weight: 500;
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 55px 18px 25px;
  }

  .footer-logo span {
    font-size: 1.6rem;
  }

  .footer-column h3 {
    font-size: 1.25rem;
  }

  .footer-links a,
  .footer-contact span,
  .footer-brand p {
    font-size: 1rem;
  }

  .contact-icon,
  .footer-logo-icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
}

/* ================= Starter Pack ================= */
.starter-hero {
  padding: 72px 20px 68px;
  background:
    radial-gradient(circle at 68% 42%, rgba(0, 183, 255, 0.32) 0%, rgba(0, 183, 255, 0.13) 18%, transparent 42%),
    linear-gradient(180deg, #1a2440 0%, #1b2745 45%, #1d2a47 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.starter-hero-inner {
  max-width: 980px;
  margin: 0 auto;
}

.starter-back {
  display: inline-block;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
}

.starter-back:hover {
  color: #22e7e8;
}

.starter-hero-content {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  max-width: 760px;
}

.starter-icon {
  width: 86px;
  height: 86px;
  border-radius: 18px;
  background: linear-gradient(135deg, #59dfff, #1ce5e8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 2rem;
  color: #ffffff;
  box-shadow: 0 0 18px rgba(28, 229, 232, 0.18);
}

.starter-text h1 {
  margin: 0 0 14px;
  font-size: clamp(3rem, 5vw, 4.2rem);
  line-height: 1;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1px;
}

.starter-text p {
  max-width: 620px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.22rem;
  line-height: 1.55;
  font-weight: 500;
}

.starter-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.starter-price {
  font-size: clamp(3rem, 5vw, 4rem);
  line-height: 1;
  font-weight: 800;
  color: #ffffff;
}

.starter-once {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 10px;
}

.starter-delivery {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #dffefe;
  font-size: 1.12rem;
  font-weight: 600;
  margin-top: 8px;
}

.starter-clock {
  width: 18px;
  height: 18px;
  border: 2px solid #27e6df;
  border-radius: 50%;
  position: relative;
  box-sizing: border-box;
}

.starter-clock::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 5px;
  background: #27e6df;
  left: 7px;
  top: 3px;
  transform-origin: bottom center;
  transform: rotate(0deg);
  border-radius: 2px;
}


@media (max-width: 768px) {
  .starter-hero {
    padding: 58px 18px 54px;
  }

  .starter-hero-content {
    flex-direction: column;
    gap: 18px;
  }

  .starter-icon {
    width: 74px;
    height: 74px;
    font-size: 1.7rem;
  }

  .starter-text h1 {
    font-size: 2.6rem;
  }

  .starter-text p {
    font-size: 1rem;
  }

  .starter-price {
    font-size: 2.5rem;
  }

  .starter-once,
  .starter-delivery {
    font-size: 1rem;
  }
}

/* ================= CTA ================= */
.cta-section {
  padding: 90px 20px;
  text-align: center;

  background:
    radial-gradient(circle at center, rgba(0, 212, 255, 0.15) 0%, transparent 55%),
    linear-gradient(180deg, #081a3a 0%, #07204a 50%, #081c3d 100%);
}

/* CONTAINER (IMPORTANT FIX) */
.cta-container {
  max-width: 700px;
  margin: 0 auto;
}

/* TITLE */
.cta-section h2 {
  font-size: 2.8rem;
  margin-bottom: 18px;
}

/* PARAGRAPH */
.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* BUTTON (KEY FIX) */
.cta-btn {
  display: inline-block;
  padding: 16px 38px;
  border-radius: 14px;
  background: linear-gradient(90deg,#13efe9,#0bd6ff);
  color: #06203a;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;

  box-shadow: 0 0 20px rgba(19,239,233,0.25);
  transition: all 0.3s ease;
}

/* HOVER */
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(19,239,233,0.5);
}

/* SMALL TEXT */
.cta-small {
  margin-top: 18px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
}

.cta-small span {
  color: #13efe9;
  font-weight: 600;
}

