

/* Contact Hero Section */
.contact-hero {
  position: relative;
  background: url('src/contact.jpeg') center/cover no-repeat; /* change image if needed */
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  text-align: center;
}

.contact-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 50, 0.7); /* dark overlay */
  z-index: 1;
}

.contact-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1.5s ease;
}

.contact-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 15px;
}


/* ✅ Paragraph style */
.contact-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto 25px auto;
  line-height: 1.6;
  color: #ddd;
}

/* ✅ Centered breadcrumb button */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  border: 2px solid #fff;   /* white border */
  border-radius: 30px;
  font-size: 1rem;
  color: #fff;
  background: transparent;  /* transparent background */
  transition: all 0.3s ease;
  width: 200px;
  text-align: center;
  margin: 0 auto;
}

.breadcrumb:hover {
  background: rgba(255, 255, 255, 0.1); /* light white on hover */
  transform: translateY(-3px);
}

.breadcrumb a {
  color: #fff; /* white text */
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb span {
  margin: 0 6px;
  color: #fff;
}

/* Animation */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .contact-title {
    font-size: 2.2rem;
  }
  .contact-subtitle {
    font-size: 1rem;
    padding: 0 15px;
  }
  .breadcrumb {
    font-size: 0.9rem;
    padding: 8px 20px;
  }
}

/* 
<!-- intro --> */

.product-intro {
  padding: 90px 20px;
  background: #ffffff;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.intro-content h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
  color: #111827;
}

.intro-lead {
  font-size: 18px;
  color: #374151;
  margin-bottom: 20px;
}

.intro-content p {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 20px;
}

.intro-points {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.intro-points li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #374151;
}

.intro-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: #0d6efd;
  border-radius: 50%;
}

.intro-actions {
  display: flex;
  gap: 15px;
  margin-top: 35px;
}

.btn-primary {
  background: #0d6efd;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #0b5ed7;
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid #0d6efd;
  color: #0d6efd;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #0d6efd;
  color: #fff;
}

.intro-image img {
  width: 100%;
  border-radius: 50%;
  max-height: 480px;
  object-fit: contain;
  animation: floatImage 6s ease-in-out infinite;
}

/* subtle animation */
@keyframes floatImage {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Responsive */
@media (max-width: 992px) {
  .intro-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .intro-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .intro-points li {
    padding-left: 0;
  }

  .intro-points li::before {
    display: none;
  }
}

/* whats included */

.included-section {
  padding: 90px 20px;
  background: #f9fafb;
}

.included-heading {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  color: #111827;
  margin-bottom: 10px;
}

.included-subheading {
  text-align: center;
  font-size: 16px;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.included-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 35px 28px;
  text-align: left;
  transition: all 0.35s ease;
  position: relative;
}

.included-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.card-number {
  font-size: 14px;
  font-weight: 700;
  color: #0d6efd;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.included-card h5 {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 12px;
}

.included-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
}

/* Responsive */
@media (max-width: 1200px) {
  .included-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .included-heading {
    font-size: 28px;
  }

  .included-grid {
    grid-template-columns: 1fr;
  }

  .included-card {
    text-align: center;
  }

  .card-number {
    margin-bottom: 12px;
  }
}

/* General Container */
.why-choose-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Flex Layout for Two Sides */
.why-choose-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

/* Left Side Styling */
.why-choose-left {
  flex: 1;
  min-width: 300px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
}

.points-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.points-list li {
  font-size: 18px;
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
}

.points-list li::before {
  content: "➤";
  position: absolute;
  left: 0;
  color: #0d6efd;
  font-weight: bold;
}

.description {
  font-size: 16px;
  margin-bottom: 30px;
  color: #555;
  line-height: 1.6;
}

.btn-director {
  display: inline-block;
  background-color: #0d6efd;
  color: #fff;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-director:hover {
  background-color: #007bff;
}

/* Right Side Styling */
.why-choose-right {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.why-choose-right img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Scroll-triggered animation */
.animate {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .why-choose-content {
    flex-direction: column-reverse;
    gap: 30px;
  }
  .why-choose-left, .why-choose-right {
    text-align: center;
  }
  .points-list li {
    padding-left: 0;
  }
  .points-list li::before {
    left: -20px;
  }
}


.platform-work-section {
  padding: 90px 20px;
  background: #ffffff;
}

.platform-work-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Image Left */
.platform-work-image {
  flex: 1;
  text-align: center;
}
.platform-work-image img {
  width: auto;
  height: 520px;              /* 🔼 increase height here */
  max-width: 100%;
  object-fit: cover;          /* keeps image clean, no distortion */
  border-radius: 18px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

/* Content Right */
.platform-work-content {
  flex: 1;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 18px;
}

.section-description {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 520px;
}

.work-steps {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.work-step {
  display: flex;
  gap: 18px;
  padding: 22px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  transition: all 0.3s ease;
}

.work-step:hover {
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  transform: translateY(-6px);
}

.step-number {
  font-size: 14px;
  font-weight: 700;
  color: #0d6efd;
  min-width: 36px;
}

.step-text h5 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111827;
}

.step-text p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .platform-work-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .section-description {
    max-width: 100%;
  }

  .work-step {
    text-align: left;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 28px;
  }
}

/* READY CARD SECTION */
.ready-card-section {
  padding: 90px 20px;
  background: #ffffff;
}

.section-heading {
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.section-subheading {
  max-width: 780px;
  margin: 0 auto 60px auto;
  text-align: center;
  font-size: 17px;
  color: #555;
  line-height: 1.7;
}

/* CARD GRID */
.ready-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.ready-card {
  background: #f9fafc;
  border: 1px solid #e6e8ec;
  border-radius: 16px;
  padding: 35px 30px;
  transition: all 0.35s ease;
  animation: fadeUp 0.7s ease forwards;
}

.ready-card:hover {
  transform: translateY(-10px);
  background: #ffffff;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

/* ICON */
.card-icon {
  font-size: 20px;
  font-weight: 700;
  color: #0d6efd;
  display: inline-block;
  margin-bottom: 15px;
}

/* TEXT */
.ready-card h5 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.ready-card p {
  font-size: 15.5px;
  color: #555;
  line-height: 1.7;
}

/* CTA */
.ready-cta {
  margin-top: 60px;
  text-align: center;
}

.ready-cta .btn {
  padding: 12px 30px;
  margin: 0 8px;
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .ready-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .ready-card-grid {
    grid-template-columns: 1fr;
  }

  .section-subheading {
    font-size: 16px;
  }
}


/* GLOBAL */
body {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  color: #222;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin-top: 10px;
}

/* ================= PRICING ================= */

/* CENTER PRICING HEADING */
.pricing-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  margin-top: 12px;
}

.pricing-section {
  padding: 90px 0;
  background: #fff;
}

.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.pricing-card {
  width: 360px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 45px 35px;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

.plan-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.price {
  font-size: 42px;
  font-weight: 700;
  color: #0d6efd;
}

.billing {
  font-size: 14px;
  color: #777;
  display: block;
  margin-bottom: 25px;
}

.features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.features li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 15px;
}

.pricing-btn {
  display: block;
  margin-top: 30px;
  padding: 14px 0;
  border-radius: 30px;
  border: 1px solid #0d6efd;
  color: #0d6efd;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.pricing-btn:hover {
  background: #0d6efd;
  color: #fff;
}

/* Highlighted Plan */
.highlight {
  border: 2px solid #0d6efd;
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #0d6efd;
  color: #fff;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 12px;
}

.primary {
  background: #0d6efd;
  color: #fff;
}

/* ================= CTA ================= */

.final-cta {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0b0f1a, #121a3a);
  color: #fff;
  text-align: center;
}

.cta-box {
  max-width: 850px;
  margin: auto;
}

.cta-box h2 {
  font-size: 40px;
  margin-bottom: 15px;
}

.cta-box p {
  color: #d6d9f0;
  font-size: 17px;
  margin-bottom: 35px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 14px 36px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn.primary {
  background: #0d6efd;
  color: #fff;
}

.cta-btn.whatsapp {
  background: #25d366;
  color: #fff;
}

.cta-btn:hover {
  transform: translateY(-3px);
}

.cta-trust {
  margin-top: 30px;
  font-size: 14px;
  color: #cfd3ff;
}

/* ================= DISCLAIMER ================= */

.disclaimer-section {
  padding: 50px 20px;
  border-top: 1px solid #eee;
}

.disclaimer-section h5 {
  font-size: 16px;
  font-weight: 700;
}

.disclaimer-section p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  max-width: 900px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .section-title {
    font-size: 30px;
  }
  .pricing-card {
    width: 100%;
  }
  .highlight {
    transform: scale(1);
  }
  .cta-box h2 {
    font-size: 28px;
  }
}











