* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at 10% 10%, #98e8f3 0%, transparent 35%),
    radial-gradient(circle at 90% 90%, #c7f0ff 0%, transparent 40%),
    linear-gradient(135deg, #f9feff, #ffffff);
  color: #465bba;
  padding-top: 120px;
  transition: background 0.4s, color 0.4s;
}

/* NAVBAR */
header {
  position: fixed;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 120px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  z-index: 1000;
}

.logo {
  height: 56px;          /* increased */
  width: auto;
  object-fit: contain;
}


nav a {
  font-family: 'Sora', sans-serif;
  margin: 0 14px;
  text-decoration: none;
  font-weight: 500;
  color: #465bba;
}

.btn {
  background: #465bba;
  color: white;
  border: none;
  padding: 9px 22px;
  border-radius: 999px;
  cursor: pointer;
}

.dark-btn {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

/* HERO */
.hero {
  min-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
}

/* SECTIONS */
.section {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  border-radius: 28px;
  margin: 80px auto;
  padding: 80px 60px;
  max-width: 1200px;
}

.section h2 {
  font-family: 'Sora', sans-serif;
  margin-bottom: 20px;
}

/* FOUNDER */
.founder {
  display: flex;
  gap: 50px;
  align-items: center;
  margin: 60px 80px;
}

.founder img {
  width: 260px;
  border-radius: 50%;
}

/* ================= FOUNDER HERO SECTION ================= */

/* ================= FOUNDER HERO (ENHANCED) ================= */

.founder-hero {
  position: relative;
  padding: 80px 0;               /* 🔽 reduced height */
  background: linear-gradient(135deg, #f8fbff, #eef5ff);
  overflow: hidden;
}

/* Soft background shape */
.founder-bg-shape {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(70,91,186,0.15), transparent 70%);
  top: -120px;
  left: -120px;
  z-index: 0;
}

.founder-container {
  position: relative;
  z-index: 1;

  max-width: 1150px;
  margin: 0 auto;
  padding: 0 40px;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
}

/* Badge */
.founder-badge {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #465bba;
  margin-bottom: 14px;
}

/* Heading */
.founder-content h1 {
  font-family: 'Sora', sans-serif;
  font-size: 46px;              /* 🔽 reduced */
  line-height: 1.15;
  margin-bottom: 16px;
}

.founder-content h1 span {
  color: #465bba;
}

/* Subtitle */
.founder-subtitle {
  font-size: 15.5px;
  max-width: 480px;
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 22px;
}

/* Quote */
.founder-quote {
  font-style: italic;
  font-size: 14.5px;
  padding-left: 14px;
  border-left: 3px solid #465bba;
  opacity: 0.8;
  margin-bottom: 26px;
}

/* Social icons */
.founder-socials {
  display: flex;
  gap: 14px;
}

.founder-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #465bba;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #465bba;
  transition: all 0.3s ease;
}

.founder-socials a:hover {
  background: #465bba;
  color: #ffffff;
}

/* Image */
.founder-image img {
  width: 100%;
  max-width: 380px;             /* 🔽 reduced */
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* Dark mode */
.dark .founder-hero {
  background: linear-gradient(135deg, #020617, #020617);
}

.dark .founder-content,
.dark .founder-subtitle,
.dark .founder-quote {
  color: #e5e7eb;
}

.dark .founder-badge {
  color: #a5b4fc;
}

.dark .founder-socials a {
  border-color: #a5b4fc;
  color: #a5b4fc;
}

@media (max-width: 900px) {
  .founder-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .founder-content h1 {
    font-size: 38px;
  }

  .founder-subtitle,
  .founder-quote {
    margin-left: auto;
    margin-right: auto;
  }

  .founder-socials {
    justify-content: center;
  }

  .founder-image img {
    margin: 36px auto 0;
  }
}

/* ================= DARK MODE BACKGROUND ================= */

.dark body {
  background:
    radial-gradient(circle at 15% 20%, rgba(70, 91, 186, 0.25), transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(152, 232, 243, 0.15), transparent 45%),
    linear-gradient(180deg, #020617, #020617);
}

.dark .section {
  background: rgba(2, 6, 23, 0.85);
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.services-grid div {
  background: white;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* TESTIMONIALS */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* CTA */
.cta {
  text-align: center;
  padding: 100px 60px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 50px;
}

/* POPUP */
.popup {
  display: none;              /* 🔥 MUST BE NONE */
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  z-index: 3000;

  align-items: center;
  justify-content: center;
}


.popup-box {
  background: white;
  width: 360px;
  margin: 120px auto;
  padding: 30px;
  border-radius: 14px;
}

/* DARK MODE */
.dark {
  background:
    radial-gradient(circle at 10% 10%, #1e293b 0%, transparent 35%),
    radial-gradient(circle at 90% 90%, #020617 0%, transparent 40%),
    linear-gradient(135deg, #020617, #0f172a);
  color: #e5e7eb;
}

.dark .section,
.dark .services-grid div,
.dark .testimonial-card {
  background: #1e293b;
  color: white;
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: white;
  font-size: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  z-index: 3000;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.nav-link.active {
  font-weight: 600;
  color: #6c7cff;
}

.testimonial-slider {
  position: relative;
  max-width: 700px;
  margin: 40px auto 0;
}

.testimonial {
  display: none;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  text-align: center;
}

.testimonial.active {
  display: block;
  animation: fadeSlide 1s ease;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== POPUP OVERLAY ===== */
.popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  z-index: 3000;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== POPUP BOX ===== */
.popup-box {
  width: 420px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border-radius: 22px;
  padding: 36px 32px;
  position: relative;

  box-shadow: 0 40px 80px rgba(0,0,0,0.25);
  animation: popupFade 0.4s ease;
}

/* Animation */
@keyframes popupFade {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===== CLOSE BUTTON ===== */
.close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  border: none;
  background: none;
  font-size: 22px;
  cursor: pointer;
  color: #465bba;
}

/* ===== FORM TITLE ===== */
.popup-box h3 {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 24px;
}

/* ===== INPUTS ===== */
.popup-box input,
.popup-box select,
.popup-box textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 14px;

  border-radius: 14px;
  border: 1px solid rgba(70, 91, 186, 0.25);
  background: rgba(255,255,255,0.9);

  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: all 0.25s ease;
}

/* Focus state */
.popup-box input:focus,
.popup-box select:focus,
.popup-box textarea:focus {
  border-color: #465bba;
  box-shadow: 0 0 0 3px rgba(70, 91, 186, 0.15);
}

/* Textarea */
.popup-box textarea {
  min-height: 100px;
  resize: none;
}

/* ===== SUBMIT BUTTON ===== */
.submit-btn {
  width: 100%;
  margin-top: 10px;
  padding: 14px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 999px;
}

/* ================= ADVANCED HERO ================= */

.hero-advanced {
  min-height: calc(100vh - 120px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  padding: 0 80px;
}

/* LEFT CONTENT */
.hero-content h1 {
  font-family: 'Sora', sans-serif;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 22px;
}

.hero-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px;
  opacity: 0.9;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #465bba;
  border: 2px solid #465bba;
  padding: 9px 22px;
  border-radius: 999px;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none; /* IMPORTANT */
}


/* STATS */
.hero-stats {
  display: flex;
  gap: 32px;
}

.hero-stats div {
  display: flex;
  flex-direction: column;
}

.hero-stats strong {
  font-family: 'Sora', sans-serif;
  font-size: 1.4rem;
}

.hero-stats span {
  font-size: 13px;
  opacity: 0.7;
}

/* RIGHT VISUALS */
.hero-visuals {
  position: relative;
  height: 420px;
}

.hero-visuals img {
  position: absolute;
  width: 280px;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.hero-visuals img:first-child {
  top: 0;
  left: 40px;
}

.hero-visuals img:last-child {
  bottom: 0;
  right: 0;
}

.instagram-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;              /* 👈 elegance comes from this */
}

.insta-handle {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 500;
  opacity: 0.9;
}

.insta-btn {
  margin-top: 8px;
}

/* ================= INSTAGRAM CLEAN ================= */

.instagram-clean {
  text-align: center;
}

.instagram-clean h2 {
  font-family: 'Sora', sans-serif;
  margin-bottom: 12px;
}

.insta-desc {
  max-width: 520px;
  margin: 0 auto 30px;
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.85;
}

/* Mini cards */
.insta-cards {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 28px;
}

.insta-card {
  padding: 16px 22px;
  border-radius: 14px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Handle link */
.insta-link {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  color: #465bba;
  text-decoration: none;
  font-weight: 500;
}

.insta-link:hover {
  text-decoration: underline;
}

/* ================= DARK MODE TEXT FIX ================= */

.dark,
.dark p,
.dark span,
.dark h1,
.dark h2,
.dark h3,
.dark h4,
.dark strong {
  color: #e5e7eb !important;
}

/* Subtle text (descriptions) */
.dark .insta-desc,
.dark .form-subtitle,
.dark .hero p {
  color: #cbd5f5 !important;
  opacity: 1;
}

/* Links in dark mode */
.dark a {
  color: #a5b4fc !important;
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 3000;

  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 18px 45px rgba(0,0,0,0.45);
}

/* Dark mode refinement */
.dark .whatsapp-float {
  box-shadow: 0 18px 45px rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.15);
}

/* =====================================================
   FINAL DARK MODE FORCE FIX (BULINVULNERABLE)
   ===================================================== */

.dark * {
  color: #e5e7eb !important;
  opacity: 1 !important;
}

/* Headings stronger */
.dark h1,
.dark h2,
.dark h3,
.dark h4 {
  color: #f8fafc !important;
}

/* Secondary text */
.dark p,
.dark span,
.dark small,
.dark label {
  color: #cbd5f5 !important;
}

/* Links */
.dark a {
  color: #a5b4fc !important;
}

/* Buttons text */
.dark .btn,
.dark .btn-outline {
  color: #ffffff !important;
}

/* Testimonials */
.dark .testimonial,
.dark .testimonial-card {
  background: #020617 !important;
  color: #e5e7eb !important;
}

/* Sections */
.dark .section {
  background: rgba(2, 6, 23, 0.85) !important;
}

/* Hero text */
.dark .hero-content h1,
.dark .hero-content p {
  color: #f8fafc !important;
}

/* Instagram / misc text */
.dark .insta-desc,
.dark .insta-handle,
.dark .insta-link {
  color: #c7d2fe !important;
}

.dark .popup-box {
  background: #020617 !important;
  color: #e5e7eb !important;
}

.dark .popup-box input,
.dark .popup-box textarea,
.dark .popup-box select {
  background: #020617 !important;
  color: #e5e7eb !important;
  border: 1px solid #334155 !important;
}

.dark .popup-box input::placeholder,
.dark .popup-box textarea::placeholder {
  color: #94a3b8 !important;
}

.service-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 26px 30px;
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 500;
  transition: transform 0.3s ease, background 0.3s ease;
}

/* Icon style */
.service-card i {
  font-size: 20px;
  color: #a5b4fc;
}

/* Hover */
.service-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.14);
}

/* Dark mode safe */
.dark .service-card {
  background: rgba(255,255,255,0.06);
}

.process-section {
  text-align: center;
}

.section-subtext {
  max-width: 520px;
  margin: 0 auto 50px;
  font-size: 15px;
  opacity: 0.85;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.process-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 32px 26px;
  text-align: left;
}

.process-card h4 {
  font-family: 'Sora', sans-serif;
  margin: 12px 0 6px;
}

.process-card p {
  font-size: 14px;
  line-height: 1.6;
}

.step {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  color: #465bba;
  font-weight: 600;
}

/* Dark mode */
.dark .process-card {
  background: #020617;
}

.section-divider {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #465bba, #98e8f3);
  margin: 80px auto;
  border-radius: 10px;
}

/* ================= SERVICES SECTION ================= */

.services-section {
  text-align: center;
}

.section-subtext {
  max-width: 560px;
  margin: 0 auto 50px;
  font-size: 15px;
  opacity: 0.85;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

/* Card */
.service-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 30px;
  border-radius: 22px;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);

  transition: transform 0.3s ease, background 0.3s ease;
}

/* Icon */
.service-card i {
  font-size: 22px;
  color: #a5b4fc;
  margin-top: 4px;
}

/* Title */
.service-title {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 600;
}

/* Description */
.service-desc {
  font-size: 13.5px;
  margin-top: 6px;
  opacity: 0.75;
  line-height: 1.5;
}

/* Hover */
.service-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.14);
}

/* Dark mode safe */
.dark .service-card {
  background: rgba(255, 255, 255, 0.06);
}

/* ================= TESTIMONIALS ================= */

.testimonials-section {
  text-align: center;
}

.testimonial-slider {
  max-width: 760px;
  margin: 50px auto 0;
  position: relative;
}

.testimonial {
  display: none;
  padding: 48px 44px;
  border-radius: 28px;

  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(18px);

  box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

.testimonial.active {
  display: block;
  animation: testimonialFade 0.9s ease;
}

/* Animation */
@keyframes testimonialFade {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stars */
.stars {
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 18px;
  color: #facc15;
}

/* Text */
.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 26px;
  opacity: 0.9;
}

/* Author */
.testimonial-author strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 15px;
}

.testimonial-author span {
  font-size: 13px;
  opacity: 0.75;
}

/* Dark mode */
.dark .testimonial {
  background: #020617;
  color: #e5e7eb;
}

/* ================= CLIENT LOGOS – FINAL CLEAN FIX ================= */

.client-logos-section {
  padding: 60px 0;
  text-align: center;
}

/* Title centered */
.client-logos-title {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 28px;
  text-align: center;
}

/* Visible window */
.client-logos-wrapper {
  width: 100%;
  max-width: 900px;
  height: 80px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

/* Track */
.client-logos-track {
  display: flex;
  align-items: center;
  gap: 70px;
  will-change: transform;
}

/* Logos */
.client-logos-track img {
  height: 46px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

/* Subtle edge fade (REDUCED strength) */
.client-logos-wrapper::before,
.client-logos-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 90px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.client-logos-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #ffffff 60%, transparent);
}

.client-logos-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #ffffff 60%, transparent);
}

/* Dark mode */
.dark .client-logos-wrapper::before {
  background: linear-gradient(to right, #020617 60%, transparent);
}

.dark .client-logos-wrapper::after {
  background: linear-gradient(to left, #020617 60%, transparent);
}

/* ================= BACKGROUND BLOBS ================= */

.bg-blobs {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.bg-blobs span {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  animation: floatBlob 20s infinite alternate ease-in-out;
}

.bg-blobs span:nth-child(1) {
  background: #98e8f3;
  top: -100px;
  left: -100px;
}

.bg-blobs span:nth-child(2) {
  background: #465bba;
  top: 30%;
  right: -150px;
  animation-duration: 26s;
}

.bg-blobs span:nth-child(3) {
  background: #b3c7ff;
  bottom: -120px;
  left: 40%;
  animation-duration: 30s;
}

@keyframes floatBlob {
  from {
    transform: translateY(0) translateX(0);
  }
  to {
    transform: translateY(-60px) translateX(40px);
  }
}

/* ================= MOUSE FOLLOW GLOW ================= */

.mouse-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(70,91,186,0.25), transparent 70%);
  filter: blur(40px);
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: transform 0.08s linear;
}

/* Dark mode */
.dark .mouse-glow {
  background: radial-gradient(circle, rgba(152,232,243,0.18), transparent 70%);
}

/* ================= BACKGROUND WATERMARK ICONS ================= */

.bg-watermarks {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

/* Icons */
.bg-watermarks i {
  position: absolute;
  font-size: 64px;
  opacity: 0.04;              /* 🔥 watermark level */
  color: #465bba;
  animation: floatIcons 40s linear infinite;
}

/* Individual positioning */
.bg-watermarks i:nth-child(1) { top: 10%; left: 5%; }
.bg-watermarks i:nth-child(2) { top: 30%; left: 80%; animation-duration: 55s; }
.bg-watermarks i:nth-child(3) { top: 60%; left: 15%; animation-duration: 50s; }
.bg-watermarks i:nth-child(4) { top: 75%; left: 70%; animation-duration: 60s; }
.bg-watermarks i:nth-child(5) { top: 45%; left: 40%; animation-duration: 48s; }
.bg-watermarks i:nth-child(6) { top: 20%; left: 55%; animation-duration: 52s; }
.bg-watermarks i:nth-child(7) { top: 85%; left: 30%; animation-duration: 65s; }

/* Floating animation */
@keyframes floatIcons {
  from {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  to {
    transform: translateY(-120px) translateX(120px) rotate(360deg);
  }
}

/* Hide watermarks in dark mode */
.dark .bg-watermarks {
  display: none;
}

/* ================= ANIMATED BACKGROUND CHARACTERS ================= */

.animated-characters {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

/* Character base */
.char {
  position: absolute;
  font-size: 72px;                 /* 🔥 visible size */
  opacity: 0.12;                   /* 🔥 watermark but visible */
  color: #465bba;
  animation: floatChar 30s linear infinite;
}

/* Individual positioning + timing */
.instagram { top: 15%; left: 8%; animation-duration: 38s; }
.whatsapp  { top: 65%; left: 12%; animation-duration: 42s; color:#25D366; }
.design    { top: 35%; left: 75%; animation-duration: 36s; }
.palette   { top: 75%; left: 65%; animation-duration: 48s; }
.ads       { top: 25%; left: 45%; animation-duration: 40s; }
.web       { top: 55%; left: 55%; animation-duration: 34s; }
.seo       { top: 85%; left: 30%; animation-duration: 46s; }

/* Floating animation (character-like motion) */
@keyframes floatChar {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(120px, -100px) rotate(180deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

/* Hide animated characters in dark mode */
.dark .animated-characters {
  display: none;
}

@media (max-width: 768px) {
  .char {
    font-size: 48px;
    opacity: 0.08;
  }
}

/* ================= CLASSY DARK MODE TOGGLE ================= */

.theme-toggle {
  position: fixed;
  top: 24px;
  right: 28px;
  width: 64px;
  height: 34px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  z-index: 999;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  transition: background 0.3s ease;
}

/* Icons */
.theme-toggle i {
  font-size: 14px;
  color: #465bba;
  z-index: 2;
}

/* Toggle thumb */
.toggle-thumb {
  position: absolute;
  width: 26px;
  height: 26px;
  background: #ffffff;
  border-radius: 50%;
  top: 4px;
  left: 4px;
  transition: transform 0.35s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Dark mode state */
.dark .theme-toggle {
  background: rgba(15, 23, 42, 0.8);
}

.dark .theme-toggle i {
  color: #a5b4fc;
}

.dark .toggle-thumb {
  transform: translateX(30px);
  background: #020617;
}

/* ================= NAV ACTION ALIGNMENT ================= */

/* ================= NAV ACTIONS (FINAL ALIGNMENT FIX) ================= */
/* ================= NAV ACTIONS – FINAL FIX ================= */

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;                 /* 🔥 REAL spacing */
  position: relative;
}

/* Enquire button */
.enquire-btn {
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  background: #465bba;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}

/* Toggle – MUST NOT OVERLAP */
.theme-toggle {
  position: relative;        /* 🔥 NOT absolute / fixed */
  flex-shrink: 0;            /* 🔥 prevents overlap */
  width: 54px;
  height: 32px;
  background: rgba(255,255,255,0.8);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  cursor: pointer;
}

/* Icons */
.theme-toggle i {
  font-size: 14px;
  color: #465bba;
  z-index: 2;
}

/* Toggle thumb */
.toggle-thumb {
  position: absolute;
  width: 26px;
  height: 26px;
  background: #ffffff;
  border-radius: 50%;
  top: 4px;
  left: 4px;
  transition: transform 0.35s ease;
}

/* Dark mode state */
.dark .toggle-thumb {
  transform: translateX(30px);
  background: #020617;
}

.dark .theme-toggle {
  background: rgba(15,23,42,0.8);
}

.dark .theme-toggle i {
  color: #a5b4fc;
}

/* ================= TOGGLE NEAR ENQUIRE (MINIMAL FIX) ================= */

/* Stop floating behaviour */
.theme-toggle {
  position: relative !important;
  top: auto !important;
  right: auto !important;
}

/* Move toggle near Enquire button */
nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Push toggle slightly left */
.theme-toggle {
  margin-left: -8px;   /* 🔥 brings it closer to Enquire */
}

/* ================= FLOATING INSTAGRAM BUTTON ================= */

.floating-instagram {
  position: fixed;
  bottom: 110px;              /* 🔥 above WhatsApp */
  right: 24px;
  width: 54px;
  height: 54px;
  background: radial-gradient(circle at 30% 30%, #f58529, #dd2a7b, #8134af);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.floating-instagram:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
}

/* ================= FINAL CTA SECTION ================= */

/* ================= IMPROVED FINAL CTA ================= */

.final-cta {
  padding: 110px 40px 80px;
  text-align: center;
  position: relative;
}

/* Card */
.cta-card {
  max-width: 760px;
  margin: 0 auto 56px;
  padding: 70px 50px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(18px);
  border-radius: 32px;
  position: relative;
  box-shadow: 0 40px 90px rgba(70,91,186,0.18);
}

/* Accent top line */
.cta-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, #98e8f3, #465bba);
  border-radius: 0 0 8px 8px;
}

/* Eyebrow text */
.cta-eyebrow {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #465bba;
  opacity: 0.85;
  display: inline-block;
  margin-bottom: 14px;
}

/* Heading */
.cta-card h2 {
  font-size: 38px;
  color: #465bba;
  margin-bottom: 18px;
}

/* Paragraph */
.cta-text {
  font-size: 16.5px;
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 34px;
}

/* CTA button */
.cta-btn {
  padding: 16px 42px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #465bba, #5c72e6);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(70,91,186,0.35);
  transition: all 0.35s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(70,91,186,0.45);
}

/* Trust subtext */
.cta-subtext {
  margin-top: 18px;
  font-size: 13px;
  opacity: 0.7;
}

/* Contact info */
.cta-contact {
  margin-top: 24px;
  font-size: 14.5px;
  opacity: 0.85;
}

.brand-name {
  font-weight: 600;
  margin-bottom: 10px;
}

/* ================= FOOTER ================= */

.site-footer {
  margin-top: 40px;
  padding: 26px 20px;
  text-align: center;
  font-size: 13px;
  opacity: 0.75;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.3),
    rgba(255,255,255,0.6),
    rgba(255,255,255,0.3)
  );
}


/* Dark mode */
.dark .cta-card {
  background: rgba(2,6,23,0.85);
  box-shadow: 0 40px 90px rgba(0,0,0,0.5);
}

.dark .cta-card h2,
.dark .cta-text,
.dark .cta-subtext {
  color: #e5e7eb;
}

.dark .cta-eyebrow {
  color: #a5b4fc;
}

/* ================= FOOTER DARK MODE FIX ================= */

.dark .site-footer {
  background: linear-gradient(
    to right,
    rgba(2, 6, 23, 0.9),
    rgba(15, 23, 42, 0.95),
    rgba(2, 6, 23, 0.9)
  );
}

.dark .site-footer p {
  color: #e5e7eb;      /* 🔥 visible light text */
  opacity: 0.9;
}

/* ================= FULL MOBILE RESPONSIVENESS ================= */
@media (max-width: 768px) {

  /* GLOBAL */
  body {
    overflow-x: hidden;
  }

  section {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* NAVBAR */
  header {
    padding: 14px 20px;
  }

  nav {
    gap: 14px;
    flex-wrap: wrap;
  }

  nav a {
    font-size: 14px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  /* HERO SECTION */
  .hero h1 {
    font-size: 30px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 15px;
  }

  /* CTA CARD */
  .cta-card {
    padding: 40px 24px;
    border-radius: 24px;
  }

  .cta-card h2 {
    font-size: 28px;
  }

  .cta-text {
    font-size: 15px;
  }

  /* SERVICES GRID */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* FOUNDER SECTION */
  .founder {
    flex-direction: column;
    text-align: center;
  }

  .founder img {
    width: 220px;
    margin-bottom: 24px;
  }

  /* CLIENT LOGO SLIDER */
  .client-logos img {
    height: 40px;
  }

  /* ENQUIRY POPUP */
  .popup-box {
    width: 92%;
    padding: 24px;
  }

  .popup-box input,
  .popup-box textarea,
  .popup-box select {
    font-size: 14px;
  }

  /* FLOATING ICONS */
  .whatsapp {
    bottom: 20px;
    right: 18px;
  }

  .floating-instagram {
    bottom: 90px;
    right: 18px;
  }

  /* FOOTER */
  .site-footer {
    font-size: 12px;
  }
}

/* ================= MOBILE NAVBAR FIX ================= */
@media (max-width: 768px) {

  /* Hide nav links on mobile */
  nav a {
    display: none;
  }

  /* Keep Enquire button visible */
  nav .btn {
    display: inline-block;
  }

  /* Resize hero heading */
  .hero h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  /* Stack hero content properly */
  .hero {
    padding-top: 120px;
    text-align: left;
  }

  /* Ensure toggle stays aligned */
  .theme-toggle {
    transform: scale(0.85);
  }
}
