/* Base font */
body {
  font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #fff;
  margin: 0;
  padding: 0;
}

/* Lexend for headings only */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lexend", sans-serif;
}

img {
  max-width: 100%;
}
.font-3rem {
  font-size: 3rem;
}

/* Sticky Navbar */
.navbar {
  background-color: #fff;
  /* white background */
  border-bottom: 4px solid;
  border-image: linear-gradient(to right, #a0b4ff, #a16dd1, #e86f61, #43a677);
  border-image-slice: 1;
  padding: 0.8rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

/* Brand styling */
.navbar-brand {
  font-weight: 700;
  font-size: 1.6rem;
  color: #1b0036 !important;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.navbar-brand img {
  height: 30px;
}

/* Nav links */
.navbar-nav .nav-link {
  color: #222;
  font-weight: 600;
  margin: 0 12px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #5a27a8;
}

/* Contact button */
.contact-btn {
  background-color: #2e2e2e;
  color: #fff;
  border-radius: 25px;
  padding: 0.5rem 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background-color: #444;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .navbar-nav {
    text-align: center;
  }

  .contact-btn {
    margin-top: 10px;
  }
}

/* Hero Section */
.hero-section {
  text-align: center;
  padding: 120px 20px 0px 20px;
  position: relative;
  background: #fff;
  overflow: hidden;
}

/* Gradient Glow */
.gradient-glow {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle at center,
    rgba(138, 97, 255, 0.5),
    rgba(255, 107, 186, 0.4),
    rgba(255, 255, 255, 0) 70%
  );
  filter: blur(100px);
  z-index: 0;
  animation: glowFade 3s ease-in-out infinite alternate;
}

@keyframes glowFade {
  from {
    opacity: 0.7;
  }
  to {
    opacity: 1;
  }
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation delays */
.tagline {
  animation-delay: 0.3s;
}
.hero-section h1 {
  animation-delay: 0.6s;
}
.hero-section p {
  animation-delay: 0.9s;
}
.hero-section .btn-primary {
  animation-delay: 1.2s;
}
.hero-section img {
  animation-delay: 1.6s;
}

/* Tagline */
.hero-section .tagline {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #555;
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 50px;
  padding: 6px 18px;
  margin-bottom: 20px;
}

/* Heading */
.hero-section h1 {
  font-weight: 500; /* Lexend Medium */
  font-size: 3.8rem;
  color: #111;
  line-height: 1.2;
  max-width: 700px;
  margin: 0 auto 20px;
}

/* Subtext */
.hero-section p {
  color: #555;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 30px;
}

/* Button */
.hero-section .btn-primary {
  background-color: #0061ff;
  border: none;
  border-radius: 25px;
  padding: 12px 30px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero-section .btn-primary:hover {
  background-color: #004ed9;
  transform: scale(1.05);
}

/* Image */
.hero-section img {
  position: relative;
  z-index: 2;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  .gradient-glow {
    width: 500px;
    height: 500px;
  }
}

.workflow-section {
  background: #fff;
  overflow: hidden;
}

/* Card Styling */
.progress-card {
  position: relative;
  background: #fff;
  border-radius: 50px;
  padding: 10px 15px 10px 65px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.progress-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.profile-img {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
  z-index: 2;
}

.progress {
  height: 12px;
  border-radius: 10px;
  background-color: #f3f2f7;
}

.progress-bar {
  border-radius: 10px;
  transition: width 1.2s ease-in-out;
}

/* Left text fade */
.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 1s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Delays for cards */
.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

.delay-3 {
  transition-delay: 0.6s;
}

.delay-4 {
  transition-delay: 0.8s;
}

.multimedia-section {
  background: #fff;
}

.feature-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  padding: 20px 25px;
  transition: all 0.3s ease;
}

.feature-card.active {
  background: linear-gradient(to bottom, #f7f9ff, #ffffff);
  border: 1px solid #e9eefc;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.icon-box {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.icon-box img {
  width: 32px;
  height: 32px;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #e0e0e0;
  display: inline-block;
}

.unique-section {
  background: linear-gradient(to bottom, #f8faff, #ffffff);
  overflow: hidden;
}

.icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.icon-box img {
  width: 28px;
  height: 28px;
}

.feature-item {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.solutions-section {
  background: #fff;
}

.solution-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  padding: 25px;
  height: 100%;
  transition: all 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.solution-card .icon {
  width: 48px;
  height: 48px;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition: all 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

.delay-3 {
  transition-delay: 0.6s;
}

.delay-4 {
  transition-delay: 0.8s;
}

.delay-5 {
  transition-delay: 1s;
}

.delay-6 {
  transition-delay: 1.2s;
}

.business-section {
  background: #e5860b;
  /* Bright orange background */
  color: #fff;
}

.business-section .badge {
  border: 1px solid rgba(255, 255, 255, 0.6);
  font-weight: 500;
  font-size: 0.9rem;
}

.business-section h2 {
  font-size: 3rem;
  letter-spacing: -0.5px;
}

.business-section p {
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .business-section h2 {
    font-size: 1.9rem;
  }

  .business-section p {
    font-size: 1rem;
    max-width: 95%;
  }
}

.features-section {
  background: #ff4e3c; /* red background */
  color: #333;
}

.features-section .badge {
  border: 1px solid rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-size: 0.9rem;
}

.features-section h2 {
  font-size: 3rem;
  color: #fff;
}

.feature-box {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  padding: 30px 25px;
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
}

.feature-box ul li {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .features-section h2 {
    font-size: 1.9rem;
  }
}

.design-section {
  background-color: #6d40e3;
  /* vibrant purple */
  color: #fff;
}

.design-section h2 {
  font-size: 3rem;
  letter-spacing: -0.5px;
}

.design-section .btn {
  transition: all 0.3s ease;
}

.design-section .btn:hover {
  background: #fff;
  color: #6d40e3;
  transform: translateY(-3px);
}

.design-img {
  transition: transform 0.5s ease;
}

.design-img:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .design-section h2 {
    font-size: 2rem;
  }

  .design-img {
    max-width: 100%;
  }
}

.footer-section {
  background-color: #fff;
  border-top: 1px solid #eee;
  padding-top: 5rem;
  padding-bottom: 3rem;
}

.footer-link {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-link:hover {
  color: #6d40e3;
}

.footer-section h6 {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .footer-section {
    text-align: center;
  }

  .footer-section img {
    margin-bottom: 20px;
  }
}

.inner-hero-section {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.inner-hero-section h1 {
  font-size: 3rem;
  color: #111;
}

.inner-hero-section .btn-primary {
  background: #0066ff;
  border: none;
  transition: all 0.3s ease;
}

.inner-hero-section .btn-primary:hover {
  background: #0047cc;
  transform: translateY(-3px);
}

/* Right visuals */
.bubble-gradient {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    rgba(255, 192, 203, 0.5),
    rgba(173, 216, 230, 0.5),
    transparent 70%
  );
  filter: blur(50px);
  z-index: 0;
}

.profile-card {
  position: relative;
  z-index: 2;
}

.message-card {
  position: absolute;
  right: 25%;
  top: 20%;
  background: #fff;
  border-radius: 20px;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.status-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #00c46a;
}

.line {
  width: 50px;
  height: 8px;
  border-radius: 10px;
  background: #ddd;
}

@media (max-width: 992px) {
  .inner-hero-section h1 {
    font-size: 2.3rem;
  }

  .bubble-gradient {
    display: none;
  }

  .profile-card {
    margin-top: 30px;
  }
}

.how-swiip-works {
  background: linear-gradient(to bottom, #f5f3ff, #ffffff);
}

.work-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: left;
}

.work-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.work-card h5 {
  font-size: 1.3rem;
}

.testimonial-bar {
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  margin-left: -10px;
}

.avatars img:first-child {
  margin-left: 0;
}

.btn-primary {
  background: #0066ff;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #004de0;
  transform: translateY(-2px);
}

.design-tools-section {
  background: #fff;
}

.feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-card.active {
  background: linear-gradient(to right, #f9faff, #f2f5ff);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-card .icon {
  width: 50px;
  height: 50px;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #e6e6e6;
}

.text-muted.small {
  font-size: 0.9rem;
}

/* privacy-header */
.privacy-header {
  text-align: center;
  padding: 80px 20px 40px;
  background: #fff;
}

.privacy-header h1 {
  font-size: 3rem;
}

.privacy-header p {
  color: #666;
  max-width: 680px;
  margin: 15px auto 0;
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 100px;
  border-left: 3px solid #f1f1f1;
  padding-left: 15px;
}

.sidebar a {
  display: block;
  color: #222;
  text-decoration: none;
  padding: 10px 0;
  font-weight: 500;
  transition: color 0.3s, font-weight 0.3s;
}

.sidebar a.active {
  color: #0d6efd;
  font-weight: 600;
}

/* Main Content */
.privacy-content h3 {
  font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  margin-top: 40px;
  margin-bottom: 10px;
}

.privacy-content p {
  color: #555;
  font-size: 0.95rem;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
  margin-top: 10px;
}

.contact-email:hover {
  text-decoration: underline;
}

/* terms-header */
.terms-header {
  text-align: center;
  padding: 80px 20px 40px;
  background: #fff;
  max-width: 850px;
  margin: 0 auto;
}

.terms-header h1 {
  font-size: 3rem;
}

.terms-header p {
  color: #666;
  max-width: 680px;
  margin: 15px auto 0;
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 100px;
  border-left: 3px solid #f1f1f1;
  padding-left: 15px;
}

.sidebar a {
  display: block;
  color: #222;
  text-decoration: none;
  padding: 10px 0;
  font-weight: 500;
  transition: color 0.3s, font-weight 0.3s;
}

.sidebar a.active {
  color: #0d6efd;
  font-weight: 600;
}

/* Main Content */
.terms-content h3 {
  font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  margin-top: 40px;
  margin-bottom: 10px;
}

.terms-content p {
  color: #555;
  font-size: 0.95rem;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
  margin-top: 10px;
}

.contact-email:hover {
  text-decoration: underline;
}

.contact-header {
  text-align: center;
  padding: 80px 20px 50px;
}

.contact-header h1 {
  font-size: 3rem;
}

.contact-header p {
  color: #555;
  max-width: 650px;
  margin: 15px auto 0;
}

.contact-form {
  background-color: #f4edff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  max-width: 900px;
  margin: 0 auto 80px;
}

.btn-submit {
  background-color: #0d6efd;
  color: #fff;
  border-radius: 30px;
  padding: 10px 30px;
  font-weight: 600;
  border: none;
}

.btn-submit:hover {
  background-color: #0056d2;
}

/* Modal Styling */
.modal-content {
  border-radius: 12px;
  text-align: center;
  padding: 30px;
}

.modal-header {
  border: none;
}

.modal-footer {
  border: none;
}

.modal-title {
  font-weight: 600;
  color: #0d6efd;
}

.icon-box {
  width: 42px;
  height: 42px;
  background: #e8f0ff;
  color: #0d6efd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.count {
  display: inline-block;
}

.step-circle {
  background-color: #e8f0ff;
  color: #0d6efd;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
}

@media (max-width: 767px) {
  .step-circle {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
}

.icon-square {
  width: 40px;
  height: 40px;
  background: #e8f0ff;
  color: #0d6efd;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.badge {
  font-size: 0.85rem;
  background: transparent;
}

/* smooth anchor/scrollTo */

.to-top-btn {
  --size: 52px;
  --ring: rgba(124, 58, 237, 0.25); /* ring color */
  --grad: linear-gradient(135deg, #e5860b, #e5860b);
  background: var(--grad);
  background-clip: content-box, border-box;

  /* progress ring */
  background-image: conic-gradient(
      #ffffff00 0 var(--p, 0deg),
      var(--ring) var(--p, 0deg) 360deg
    ),
    var(--grad);
  background-origin: border-box;
  border: 0;
  border-radius: 50%;
  bottom: 22px;
  box-shadow: 0 14px 30px rgba(124, 58, 237, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  color: #fff;
  cursor: pointer;
  display: grid;
  height: var(--size);
  opacity: 0;
  padding: 3px; /* ring thickness */
  place-items: center;
  position: fixed;
  right: 22px;

  /* slide-in/out */
  transform: translateY(18px);
  transition: transform 0.35s ease, opacity 0.35s ease, box-shadow 0.2s ease;
  visibility: hidden;
  width: var(--size);
  z-index: 1040;
}
.to-top-btn i {
  font-size: 1.1rem;
}
.to-top-btn:hover {
  box-shadow: 0 18px 42px rgba(124, 58, 237, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.to-top-btn.show {
  animation: bump 0.28s ease-out 1;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
@keyframes bump {
  0% {
    transform: translateY(10px) scale(0.96);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .to-top-btn {
    animation: none;
    transition: none;
  }
}
