
/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f3f4f8;
  color: #222;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  background: linear-gradient(to right, #6a11cb, #2575fc);
  color: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.navbar .logo {
  font-size: 24px;
  font-weight: bold;
}

.navbar nav a {
  margin-left: 20px;
  color: #eee;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar nav a:hover,
.navbar nav .active {
  color: #ffdc60;
}

/* ===== HERO SECTION ===== */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, #dbeafe, #fff1f2);
  min-height: 60vh;
}

.hero-left {
  max-width: 50%;
}

.hero-left h1 {
  font-size: 48px;
  margin-bottom: 10px;
  color: #111827;
}

.hero-left .typing {
  font-size: 20px;
  color: #555;
  margin-bottom: 30px;
}

.btn-group .btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  margin-right: 12px;
  display: inline-block;
  transition: background 0.3s;
}

.btn.green {
  background-color: #10b981;
  color: white;
}

.btn.green:hover {
  background-color: #059669;
}

.btn.blue {
  background-color: #3b82f6;
  color: white;
}

.btn.blue:hover {
  background-color: #2563eb;
}

.hero-right img {
  width: 350px;
  max-width: 100%;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.1));
}

/* ===== FEATURES SECTION ===== */
.features {
  padding: 60px 40px;
  background: #fff;
  text-align: center;
}

.features h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #1f2937;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.card {
  padding: 24px;
  border-radius: 16px;
  background: #f9fafb;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.card.pink { background: #fce7f3; }
.card.yellow { background: #fef9c3; }
.card.purple { background: #ede9fe; }
.card.green { background: #dcfce7; }

/* ===== HOW SECTION ===== */
.how {
  padding: 60px 40px;
  background: #f1f5f9;
  text-align: center;
}

.how h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #1e293b;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.step {
  background: white;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  font-size: 18px;
}

/* ===== SERVICES PAGE ===== */
.section {
  padding: 60px 40px;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #1e293b;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: #f0f9ff;
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 64px;
  margin-bottom: 20px;
}


.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 16px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 16px;
  resize: vertical;
}

.contact-form button {
  background-color: #3b82f6;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #2563eb;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 20px;
  background-color: #111827;
  color: #d1d5db;
  font-size: 14px;
}



a {
  text-decoration: none;
  color: inherit;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  background: linear-gradient(to right, #6a11cb, #2575fc);
  color: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.navbar .logo {
  font-size: 24px;
  font-weight: bold;
}

.navbar nav a {
  margin-left: 20px;
  color: #eee;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar nav a:hover,
.navbar nav .active {
  color: #ffdc60;
}

/* ===== HERO SECTION ===== */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, #dbeafe, #fff1f2);
  min-height: 60vh;
}

.hero-left {
  max-width: 50%;
}

.hero-left h1 {
  font-size: 48px;
  margin-bottom: 10px;
  color: #111827;
}

.hero-left .typing {
  font-size: 20px;
  color: #555;
  margin-bottom: 30px;
}

.btn-group .btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  margin-right: 12px;
  display: inline-block;
  transition: background 0.3s;
}

.btn.green {
  background-color: #10b981;
  color: white;
}

.btn.green:hover {
  background-color: #059669;
}

.btn.blue {
  background-color: #3b82f6;
  color: white;
}

.btn.blue:hover {
  background-color: #2563eb;
}

.hero-right img {
  width: 350px;
  max-width: 100%;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.1));
}

/* ===== FEATURES SECTION ===== */
.features {
  padding: 60px 40px;
  background: #fff;
  text-align: center;
}

.features h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #1f2937;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.card {
  padding: 24px;
  border-radius: 16px;
  background: #f9fafb;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.card.pink { background: #fce7f3; }
.card.yellow { background: #fef9c3; }
.card.purple { background: #ede9fe; }
.card.green { background: #dcfce7; }

/* ===== HOW SECTION ===== */
.how {
  padding: 60px 40px;
  background: #f1f5f9;
  text-align: center;
}

.how h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #1e293b;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.step {
  background: white;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  font-size: 18px;
}

/* ===== SERVICES PAGE ===== */
.section {
  padding: 60px 40px;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #1e293b;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: #f0f9ff;
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 64px;
  margin-bottom: 20px;
}

/* ===== CONTACT PAGE ===== */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 16px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 16px;
  resize: vertical;
}

.contact-form button {
  background-color: #3b82f6;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #2563eb;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 20px;
  background-color: #111827;
  color: #d1d5db;
  font-size: 14px;
}

[data-theme="dark"] {
  background-color: #1e1e2f;
  color: #e5e5e5;
}

[data-theme="dark"] .navbar {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
}

[data-theme="dark"] .service-card {
  background-color: #2a2a3d;
  color: #e5e5e5;
}
/* ===== POSTERS SECTION ===== */
.posters-section {
  padding: 60px 40px;
  background: #fff7ed;
  text-align: center;
}

.posters-section h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #1f2937;
}

.poster-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.poster-card {
  background: white;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.poster-card:hover {
  transform: scale(1.03);
}

.poster-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 12px;
  max-height: 350px;
  object-fit: cover;
}

.cards .card {
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.3s, border 0.3s;
}

.cards .card:hover {
  transform: scale(1.03);
  border-color: #3b82f6;
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}
     .timeline-assistant-wrapper {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 60px;
      padding: 40px;
      background: linear-gradient(to right, #fef8f8, #e8f9ff);
      border-radius: 20px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
      margin: 40px auto;
      max-width: 1200px;
    }

    .timeline {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    .timeline-item {
      background: white;
      padding: 20px;
      border-left: 6px solid #5e60ce;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease-in-out;
    }

    .timeline-item:hover {
      transform: translateY(-5px);
      background: #f0f8ff;
    }

    .timeline-icon {
      font-size: 26px;
      margin-bottom: 10px;
    }

    .assistant-illustration {
      flex: 0.8;
      display: flex;
      justify-content: center;
      align-items: center;
      animation: floaty 4s ease-in-out infinite;
    }

    @keyframes floaty {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    .how-section h2 {
      text-align: center;
      font-size: 2.4rem;
      margin-bottom: 20px;
      color: #2d2d2d;
    }
 /* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  padding: 12px;
  z-index: 999;
  transition: transform 0.3s ease;
}
.whatsapp-float img {
  width: 40px;
  height: 40px;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}
.contact-container {
  max-width: 1000px;
  margin: 60px auto;
  padding: 40px;
  background: #f9fbfd;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-form-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

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

.contact-form h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #1e293b;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 16px;
  width: 100%;
}

.contact-form button {
  background: linear-gradient(45deg, #2563eb, #1d4ed8);
  color: white;
  border: none;
  padding: 14px;
  font-size: 18px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: linear-gradient(45deg, #1d4ed8, #2563eb);
}

.contact-illustration img {
  width: 280px;
  max-width: 100%;
  border-radius: 20px;
}
.trust-strip {
  display: flex;
  justify-content: space-around;
  background: #eef2ff;
  color: #1e40af;
  padding: 15px;
  font-weight: bold;
  font-size: 14px;
  border-radius: 10px;
  margin: 40px 20px 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.footer {
  display: flex;
  justify-content: space-between;
  background: #1e293b;
  color: #f8fafc;
  padding: 40px 20px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer h2, .footer h4 {
  color: #facc15;
}

.footer-left, .footer-center, .footer-right {
  flex: 1 1 250px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin: 8px 0;
}

.footer ul li a {
  color: #cbd5e1;
  text-decoration: none;
}

.footer ul li a:hover {
  color: #facc15;
}

.whatsapp-btn {
  display: inline-block;
  margin-top: 10px;
  background: #25D366;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
}

.footer-bottom {
  text-align: center;
  background: #0f172a;
  color: #94a3b8;
  padding: 15px;
  font-size: 13px;
}
