.contact-hero {
  position: relative;
  background: url(src/contact.jpeg) center/cover no-repeat;
  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: #0f0f32b3;
  z-index: 1;
}
.contact-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1.5s ease;
}
.contact-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.contact-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto 25px;
  line-height: 1.6;
  color: #ddd;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  border: 2px solid #fff;
  border-radius: 30px;
  font-size: 1rem;
  color: #fff;
  background: transparent;
  transition: all 0.3s ease;
  width: 200px;
  text-align: center;
  margin: 0 auto;
}
.breadcrumb:hover {
  background: #ffffff1a;
  transform: translateY(-3px);
}
.breadcrumb a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.breadcrumb span {
  margin: 0 6px;
  color: #fff;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@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;
  }
}

/* about */

.about-clone {
  padding: 90px 20px;
  background: #ffffff;
}

.about-grid {
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 15px;
  animation: floatImage 3s ease-in-out infinite;
}

@keyframes floatImage {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 992px) {
  .about-grid {
    flex-direction: column;
    text-align: center;
  }
}

/* who is this */
.use-cases .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
}


.use-cases .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #0d6efd;
  margin: 8px auto 0;
  border-radius: 3px;
}
.use-cases {
  padding: 80px 20px;
  background: #f9f9f9;
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.use-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
}

.use-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.use-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
  color: #0b0f1a;
}

.use-card p {
  font-size: 15px;
  color: #555;
}

/* key modules */

.modules-section {
  padding: 90px 20px;
  background: #ffffff;
}

.modules-section .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
}


.modules-section .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #0d6efd;
  margin: 8px auto 0;
  border-radius: 3px;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.module-card {
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 35px 25px;
  transition: all 0.4s ease;
}

.module-card:hover {
  border-color: #0d6efd;
  box-shadow: 0 20px 40px rgba(13,110,253,0.15);
}

.module-card h4 {
  font-weight: 700;
  margin-bottom: 15px;
  color: #0b0f1a;
}

.module-card ul {
  padding-left: 18px;
}

.module-card li {
    font-weight: 400;
    font-size: 20px;
  margin-bottom: 8px;
  color: #555;
}

/* why inda bless */
/* WHY PURCHASE SECTION */
.why-purchase-section {
  padding: 90px 20px;
  background: #ffffff;
}

.section-header {
  margin-bottom: 60px;
}

.why-purchase-section .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
}


.why-purchase-section .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #0d6efd;
  margin: 8px auto 0;
  border-radius: 3px;
}



.section-subtitle {
  max-width: 720px;
  margin: 0 auto;
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* CARD */
.why-card {
  background: #fafafa;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 38px 30px;
  text-align: center;
  transition: all 0.35s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

/* ICON – Professional */
.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid #0d6efd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #0d6efd;
  font-size: 24px;
}

/* TEXT */
.why-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #0b0f1a;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.65;
}

/* ANIMATION */
.animate {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }
  .why-card {
    padding: 30px 22px;
  }
}

/* demo screenshots */

.why-choose-section {
  padding: 80px 20px;
  background: #f9f9f9;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.why-choose-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}
.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: 700;
}
.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;
}
.why-choose-right {
  flex: 1;
  min-width: 300px;
  text-align: center;
}
.why-choose-right img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.animate {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards;
  animation-delay: var(--delay, 0s);
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@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;
  }
}


/* WHAT YOU GET – PRO DESIGN */
.what-you-get-pro {
  padding: 90px 20px;
  background: #ffffff;
}

/* HEADER */
.pro-header {
  max-width: 820px;
  margin: 0 auto 70px;
}

.pro-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #0b0f1a;
  margin-bottom: 15px;
}

.pro-header p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* FEATURES LIST */
.pro-features {
  max-width: 900px;
  margin: 0 auto;
}

/* FEATURE ROW */
.pro-feature {
  position: relative;
  padding-left: 45px;
  margin-bottom: 45px;
}

.feature-line {
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 100%;
  background: #0d6efd;
  border-radius: 2px;
}

/* CONTENT */
.feature-content h4 {
  font-size: 22px;
  font-weight: 600;
  color: #0b0f1a;
  margin-bottom: 8px;
}

.feature-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* ANIMATION */
.animate {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeSlideUp 0.8s ease forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .pro-header h2 {
    font-size: 28px;
  }
  .pro-feature {
    padding-left: 30px;
  }
  .feature-content h4 {
    font-size: 20px;
  }
}

/* FINAL CTA – PROFESSIONAL */
.final-cta {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0b0f1a, #121a3a);
  color: #ffffff;
  text-align: center;
}

.cta-box {
  max-width: 850px;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-box p {
  font-size: 17px;
  line-height: 1.7;
  color: #d6d9f0;
  margin-bottom: 35px;
}

/* CTA BUTTONS */
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.cta-btn {
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* PRIMARY */
.cta-btn.primary {
  background: #0d6efd;
  color: #fff;
}

.cta-btn.primary:hover {
  background: #0b5ed7;
  transform: translateY(-3px);
}

/* OUTLINE */
.cta-btn.outline {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.cta-btn.outline:hover {
  background: #ffffff;
  color: #0b0f1a;
  transform: translateY(-3px);
}

/* TRUST LINE */
.cta-trust {
  font-size: 14px;
  color: #cfd3ff;
}

/* ANIMATION */
.animate {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cta-box h2 {
    font-size: 30px;
  }
  .cta-box p {
    font-size: 15px;
  }
}

/* DISCLAIMER */
.legal-disclaimer {
  background: #ffffff;
  padding: 40px 20px;
  border-top: 1px solid #e5e7eb;
}

.legal-disclaimer h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0b0f1a;
}

.legal-disclaimer p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  max-width: 1000px;
}
