/* ========= Base Styles ========= */
/* ========= Base Styles ========= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f7f9fc;
  color: #333;
}
html, body {
  scroll-behavior:smooth;
}
/* Scroll-triggered animation base */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

[data-animate].active {
  opacity: 1;
  transform: translateY(0);
}

/* Item by item stagger effect */
[data-animate] > * {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

[data-animate].active > * {
  opacity: 1;
  transform: translateY(0);
}

[data-animate].active > *:nth-child(1) { transition-delay: 0.3s; }
[data-animate].active > *:nth-child(2) { transition-delay: 0.6s; }
[data-animate].active > *:nth-child(3) { transition-delay: 0.9s; }
[data-animate].active > *:nth-child(4) { transition-delay: 1.2s; }
[data-animate].active > *:nth-child(5) { transition-delay: 1.5s; }
[data-animate].active > *:nth-child(6) { transition-delay: 1.8s; }
[data-animate].active > *:nth-child(7) { transition-delay: 2.1s; }
[data-animate].active > *:nth-child(8) { transition-delay: 2.4s; }

/* Keyframes */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInZoom {
  0% { opacity: 0; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes slideInLeft {
  0% { opacity: 0; transform: translateX(-40px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  0% { opacity: 0; transform: translateX(40px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* Section Animations */
.hero h1, .hero p, .hero-buttons, .hero img,
.pricing-section h2, .pricing-box,
.features-section h2, .feature-card,
.process-heading h2, .process-heading p, .step,
.comparison-section h2, .comparison-table,
.review-section h2, .review-card,
.faq-section h2, .faq-item,
.why-choose-us h2, .why-subtitle, .why-card,
.portfolio-showcase h2, .portfolio-showcase .highlight-text, .image-wrapper, .portfolio-info,
.contact-section h2, .contact-card, .contact-form,
.site-footer {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

/* Staggered activation per section */
.hero.active h1 { animation-delay: 0.2s; }
.hero.active p { animation-delay: 0.4s; }
.hero.active .hero-buttons { animation-delay: 0.6s; }
.hero.active img { animation-delay: 0.8s; }

.pricing-section.active h2 { animation-delay: 0.2s; }
.pricing-section.active .pricing-box { animation-delay: 0.4s; }

.features-section.active h2 { animation-delay: 0.2s; }
.features-section.active .feature-card:nth-child(1) { animation-delay: 0.4s; }
.features-section.active .feature-card:nth-child(2) { animation-delay: 0.6s; }

.process-section.active h2 { animation-delay: 0.2s; }
.process-section.active p { animation-delay: 0.4s; }
.process-section.active .step:nth-child(1) { animation-delay: 0.6s; }
.process-section.active .step:nth-child(2) { animation-delay: 0.8s; }
.process-section.active .step:nth-child(3) { animation-delay: 1s; }

.review-section.active h2 { animation-delay: 0.2s; }
.review-section.active .review-card:nth-child(1) { animation-delay: 0.4s; }
.review-section.active .review-card:nth-child(2) { animation-delay: 0.6s; }
.review-section.active .review-card:nth-child(3) { animation-delay: 0.8s; }

.contact-section.active h2 { animation-delay: 0.2s; }
.contact-section.active .contact-card:nth-child(1) { animation-delay: 0.4s; }
.contact-section.active .contact-card:nth-child(2) { animation-delay: 0.6s; }
.contact-section.active .contact-form { animation-delay: 0.8s; }

/* Additional staggered delays can be added similarly for other sections */


 .hero-combined {
  background: radial-gradient(circle at top left, #f1f5ff, #f9fafb);
  padding: 1rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  margin: 1rem;
  position: relative;
  overflow: hidden;
}

/* === Header === */
.site-header {
  position: sticky;
  top: 1rem;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  padding: 0.75rem 1.25rem;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  max-width: 1200px;
  margin: 0 auto 1.5rem;
}




.logo-area {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-icon {
  height: 36px;
  width: 36px;
  border-radius: 10px;
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111;
}

.menu-toggle {
  font-size: 2rem;
  cursor: pointer;
  color: #111;
  display: block;
}

/* === Navbar === */
#navbar {
  display: none;
  transition: all 0.3s ease;
}

/* When toggle is active */
#navbar.active {
  display: block;
}

/* === Desktop View === */
@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  #navbar {
    display: block !important;
    position: static;
    background: none;
    padding: 0;
    box-shadow: none;
  }

  #navbar ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
  }

  #navbar a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
  }
}

/* === Mobile View === */
/* === Mobile Navbar === */
@media (max-width: 767px) {
  #navbar {
    position: absolute;
    top: calc(100% + 0.5rem); /* Adds space below header */
    right: 1rem;
    left: 1rem;
    background: #ffffff;
    padding: 1.2rem 1rem;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    z-index: 999;
  }

  #navbar ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0;
    padding: 0;
  }

  #navbar a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
  }

  #navbar a:hover {
    background-color: #f4f4f4;
    color: #4f46e5;
  }
}

@media (max-width: 767px) {
  .site-header {
    padding: 0.5rem 1rem; /* Top-bottom: 0.75rem, Left-right: 1rem */
margin-left: 2.5rem;
margin-right: 2.5rem;
margin-bottom: 0rem;
  }
}

/* === Hero Section Base === */
/* === Hero Content === */
.hero-content {
  text-align: center;
  padding: 1rem 0rem;
  opacity: 0;
  animation: fadeInHero 1s ease-out forwards;
  animation-delay: 0.1s;
}

/* === Badge === */
.badge {
  display: inline-block;
  background: #e5e7eb;
  color: #374151;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-weight: 500;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease-out forwards;
  animation-delay: 0.4s;
}

/* === New Animated Heading (No span) === */
.hero-heading {
  font-size: 35px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
  opacity: 0;
  animation: zoomSlideIn 1.2s ease-out forwards;
  animation-delay: 0.6s;
}

/* === Subtext === */
.subtext {
  font-size: 1.1rem;
  color: #475569;
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0;
  animation: fadeUp 1s ease-out forwards;
  animation-delay: 1s;
}

/* === Buttons === */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s ease-out forwards;
  animation-delay: 1.2s;
}

.hero-buttons a {
  text-decoration: none;
  font-weight: 600;
  padding: 0.9rem 1.8rem;
  border-radius: 12px;
  transition: all 0.35s ease;
  transform: scale(1);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-buttons a.primary {
  background: #4f46e5;
  color: #fff;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.2);
}

.hero-buttons a.secondary {
  background: #fff;
  color: #4f46e5;
  border: 2px solid #4f46e5;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.hero-buttons a:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.25);
}

.hero-buttons a::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.hero-buttons a:hover::after {
  left: 100%;
}

.hero-buttons a i {
  font-size: 1rem;
}

/* === Screenshot === */
.portfolio-screenshot {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px; /* Space for border glow */
  border-radius: 25px;
  background: linear-gradient(270deg, #8c52ff, #5ce1e6, #8c52ff);
  background-size: 600% 600%;
  animation: animatedBorder 4s ease infinite;
}

/* The image itself stays clean and sharp *//* Entry animation */
/* Portfolio Container with animated gradient border and load-in effect */
.portfolio-screenshot {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px; /* Border thickness */
  border-radius: 25px;
  background: linear-gradient(270deg, #8c52ff, #5ce1e6, #8c52ff);
  background-size: 600% 600%;
  animation: animatedBorder 4s ease infinite, fadeInZoom 3.5s ease-out forwards;
  opacity: 0; /* Required for fade-in */
}

/* The image inside stays clean and sharp */
.portfolio-screenshot img {
  max-width: 100%;
  border-radius: 20px;
  display: block;
  background-color: #fff;
  padding: 1px;
  box-shadow: 0 10px 35px rgba(140, 82, 255, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Subtle lift on hover */
.portfolio-screenshot img:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 45px rgba(140, 82, 255, 0.35);
}

/* Border Gradient Animation */
@keyframes animatedBorder {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Load-in Zoom + Fade Animation */
@keyframes fadeInZoom {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* === Keyframes === */
@keyframes fadeInHero {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes zoomSlideIn {
  0%   { opacity: 0; transform: scale(0.8) translateY(20px); }
  60%  { opacity: 1; transform: scale(1.05) translateY(-5px); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

@keyframes imageBounceIn {
  0% { opacity: 0; transform: scale(0.95); }
  60% { opacity: 1; transform: scale(1.05); }
  100% { transform: scale(1); opacity: 1; }
}


/* ========== Pricing Section Styles ========== */
.pricing-section {
  text-align: center;
  padding: 3rem 1rem;
  animation: fadeInUp 1s ease-out;
  animation-fill-mode: both;
}

.pricing-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeIn 1s ease 0.2s forwards;
}

.toggle-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeIn 1s ease 0.4s forwards;
}

.toggle-buttons button {
  padding: 0.5rem 1rem;
  border: 1px solid #4f46e5;
  border-radius: 8px;
  background: #fff;
  color: #4f46e5;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-buttons button.active {
  background: #4f46e5;
  color: #fff;
}

.pricing-box {
  max-width: 400px;
  margin: 0 auto;
  background: #eef2ff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  opacity: 0;
  animation: fadeInZoom 1s ease 0.6s forwards;
}

.pricing-box h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.pricing-box p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

#buy-now-btn {
  background: #4f46e5;
  color: white;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.1s ease;
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
}

#buy-now-btn:hover {
  background: #3d3bbf;
}

#buy-now-btn:active {
  transform: scale(0.96);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2) inset;
}


#payment-form {
  display: none;
  flex-direction: column;
  gap: 12px;
  margin-top: 1.5rem;
  animation: fadeIn 0.4s ease-in-out;
}

#payment-form input {
  padding: 0.65rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}

#payment-form button {
  background: #4f46e5;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.1s ease;
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
}

#payment-form button:hover {
  background: #3d3bbf;
}

#payment-form button:active {
  transform: scale(0.96);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2) inset;
}
#payment-form button.loading::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  width: 16px;
  height: 16px;
  border: 2px solid white;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInZoom {
  0% { opacity: 0; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}
    .features-section {
      padding: 3rem 1.5rem;
      text-align: center;
      background: #f9fafe;
    }
    .features-section h2 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 2rem;
    }
    .features-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    .feature-card {
      background: #fff;
      border-radius: 15px;
      padding: 1.5rem;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
      text-align: left;
    }
    .feature-card .icon {
      font-size: 1.8rem;
      margin-bottom: 0.5rem;
      color: #4f46e5;
    }
    .feature-card h3 {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 0.4rem;
    }
    .feature-card p {
      color: #555;
      font-size: 0.95rem;
    }
    @media (min-width: 768px) {
      .features-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2rem;
      }
      nav ul {
        display: none;
      }
    }
    /* # How It Works Section # */
.process-section {
  background: #fff;
  padding: 4rem 1rem;
  text-align: center;
}

.process-heading .label {
  display: inline-block;
  background: #eef2ff;
  color: #4f46e5;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.process-heading h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.process-heading p {
  color: #555;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1rem;
}

.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.step {
  text-align: center;
  max-width: 220px;
  flex: 1 1 220px;
}

.circle {
  width: 40px;
  height: 40px;
  background: #4f46e5;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.4;
}

.line {
  height: 2px;
  width: 30px;
  background: #4f46e5;
}

@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
  }
  .line {
    display: none;
  }.comparison-section {
  background: #f9fafb;
  padding: 4rem 1rem;
  text-align: center;
}
}
.comparison-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #111827;
  text-align: center;
}

.comparison-wrapper {
  overflow-x: auto;
  width: 100%;
}

.comparison-table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  background: #fff;
}

.comparison-table thead {
  background: linear-gradient(to right, #6366f1, #4f46e5);
  color: #fff;
}

.comparison-table th,
.comparison-table td {
  padding: 0.8rem;
  font-size: 0.7rem;
  text-align: center;
  border-bottom: 1px solid #eee;
  word-break: break-word;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  max-width: 140px;
  width: 140px;
}

.comparison-table tbody tr:nth-child(even) {
  background: #f3f4f6;
}

.tick {
  color: #22c55e;
  font-size: 1.2rem;
}

.cross {
  color: #ef4444;
  font-size: 1.2rem;
}

@media (max-width: 600px) {
  .comparison-table th,
  .comparison-table td {
    font-size: 0.7rem;
    padding: 0.6rem;
  }

  .comparison-section h2 {
    font-size: 1.6rem;
  }
}
.review-section {
  padding: 4rem 2rem;
  background: #f7f8fc;
  text-align: center;
}

.review-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.review-card {
  background: #fff;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 6px 14px rgba(0,0,0,0.05);
}

.review-text {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1rem;
}

.review-author {
  font-weight: 600;
  color: #4f46e5;
  margin-bottom: 0.5rem;
}

.stars {
  color: #facc15;
  font-size: 1.2rem;
}

@media (min-width: 768px) {
  .review-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.faq-section {
  padding: 4rem 1rem;
  background: #fff;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

.faq-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 700;
  color: #1f2937;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #f9fafb;
  border-radius: 12px;
  padding: 1rem 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

.faq-question {
  background: none;
  border: none;
  font-size: 1.05rem;
  font-weight: 600;
  color: #111827;
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #4f46e5;
}

.faq-question .icon {
  font-size: 1.4rem;
  font-weight: bold;
  color: #4f46e5;
  transition: transform 0.3s ease;
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.6s ease, opacity 0.6s ease;
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 0.5rem;
  padding-right: 0.5rem;
}

.faq-answer.open {
  max-height: 1000px; /* Safe height to fit long answers */
  opacity: 1;
}


.why-choose-us {
  padding: 4rem 1.5rem;
  background: #f0f4ff;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.why-subtitle {
  max-width: 600px;
  margin: 0 auto 2.5rem;
  color: #555;
  font-size: 1rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.why-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
  text-align: center;
}

.why-card i {
  font-size: 2rem;
  color: #4f46e5;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.why-card p {
  font-size: 0.95rem;
  color: #555;
}.portfolio-showcase {
  padding: 4rem 1.5rem;
  text-align: center;
  background: #f9fafe;
}

.portfolio-showcase h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.portfolio-showcase .highlight-text {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.portfolio-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px;
  border-radius: 25px;
  background: linear-gradient(270deg, #8c52ff, #5ce1e6, #8c52ff);
  background-size: 600% 600%;
  animation: animatedBorder 4s ease infinite, fadeInZoom 0.8s ease-out forwards;
  opacity: 0;
  overflow: hidden;
  max-width: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.image-wrapper img {
  width: 100%;
  border-radius: 20px;
  filter: blur(2px);
  transition: filter 0.35s ease, transform 0.4s ease;
  display: block;
  background-color: #fff;
}

.image-wrapper:hover img {
  filter: blur(0);
  transform: scale(1.02);
}

@keyframes animatedBorder {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes fadeInZoom {
  0% { opacity: 0; transform: scale(0.92); }
  100% { opacity: 1; transform: scale(1); }
}

.demo-button {
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.8rem;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(79, 70, 229, 0.3);
  transition: all 0.3s ease;
  z-index: 1;
  backdrop-filter: blur(3px);
}

.demo-button:hover {
  background: #3730a3;
  transform: translate(-50%, -50%) scale(1.03);
}

.portfolio-info {
  background: #fff;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-align: center;
}

.portfolio-info h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #4f46e5;
  margin-bottom: 0.5rem;
}

.portfolio-info p {
  color: #444;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .portfolio-info {
    text-align: center;
  }

  .demo-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 0;
  color: #555;
  font-size: 0.95rem;
}

.faq-answer.open {
  padding: 0.5rem 0 1rem;
  text-align: left;
}

.contact-section {
  background: #fff;
  padding: 3rem 1.5rem;
  border-radius: 20px;
  max-width: 1000px;
  margin: 3rem auto;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #333;
}

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-card {
  flex: 1 1 250px;
  background: #f4f6ff;
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.08);
}

.contact-card i {
  font-size: 1.8rem;
  color: #4f46e5;
  margin-bottom: 0.5rem;
}

.contact-card p {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #333;
}

.contact-card a {
  color: #4f46e5;
  font-weight: 500;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
}

.contact-form button {
  padding: 0.75rem;
  background: #4f46e5;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background: #3f3cc4;
}
.site-footer {
  background-color: #f0f2f8;
  padding: 2rem 1.5rem;
  text-align: center;
  border-top: 1px solid #ddd;
  margin-top: 3rem;
  font-size: 0.95rem;
}

.footer-content {
  color: #444;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.footer-address {
  color: #666;
  margin-bottom: 0.5rem;
}

.footer-copy {
  color: #999;
  font-size: 0.85rem;
}
#scrollTopBtn {
  position: Sticky;
  bottom: 1.5rem;
  right: 1.5rem;
  background-color: #4f46e5;
  color: white;
  border: none;
  border-radius: 50%;
  padding: 0.75rem;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#scrollTopBtn.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

#scrollTopBtn:hover {
  background-color: #4338ca;
  transform: scale(1.1);
}

/* === Portfolio Features Section (Pro Level) === */
.ugc-features-section {
  background: #eef2ff;
  padding-top: 1.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  max-width: 900px;
  margin: 0.5rem auto;
}

.ugc-features-title {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
  color: #1f2937;
}

.ugc-features-toggle {
  display: block;
  margin: 1rem auto 2rem;
  padding: 0.75rem 1.5rem;
  background: #4f46e5;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
}

.ugc-features-toggle:hover {
  background: #4338ca;
}

.ugc-features-list {
  list-style: none;
  padding-left: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
  text-align: left; /* ✅ Left-align the whole list */
}

.ugc-features-list.show {
  max-height: 1700px;
  opacity: 1;
  transform: translateY(0);
}

.ugc-features-list li {
  font-size: 1rem;
  color: #374151;
  padding: 0.75rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  border-bottom: 1px solid #e5e7eb;
  opacity: 0;
  transform: translateY(20px);
  animation: ugcSlideFadeUp 0.6s ease forwards;
  text-align: left; /* ✅ Ensure each item text is left-aligned */
}

.ugc-features-list.show li {
  animation-delay: calc(0.15s * var(--i));
}

.ugc-features-list li i {
  color: #4f46e5;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.ugc-features-list li code {
  background: #eef2ff;
  padding: 0.2rem 0.4rem;
  border-radius: 6px;
  font-size: 0.9rem;
}

@keyframes ugcSlideFadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
