

/* 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;
  }
}


/* b2b info section */
.b2b-info-section {
  padding: 90px 20px;
  background: #ffffff;
}

.b2b-info-section .container {
  max-width: 1000px;   /* narrower for better reading */
  margin: 0 auto;
}

/* Heading */
.b2b-info-section .section-heading {
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 50px;
  line-height: 1.3;
}

/* Content wrapper */
.info-content {
  max-width: 900px;
  margin: 0 auto;
}

/* Paragraphs */
.info-content p {
  font-size: 17px;          /* slightly bigger */
  line-height: 1.9;         /* smoother reading */
  color: #4a4a4a;
  margin-bottom: 26px;
  text-align: justify;      /* removes zig-zag effect */
  animation: fadeUp 0.6s ease forwards;
}

/* Links */
.internal-link {
  color: #0d6efd;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.internal-link:hover {
  border-bottom: 1px solid #0d6efd;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .b2b-info-section .section-heading {
    font-size: 28px;
  }

  .info-content p {
    font-size: 15.5px;
    line-height: 1.8;
    text-align: left;   /* better for mobile */
  }
}


/* b2b works */

.b2b-process-section {
  padding: 90px 20px;
  background: #ffffff;
}

/* Center heading */
.process-header.center {
  max-width: 750px;
  margin: 0 auto 60px;
  text-align: center;
}

.process-header {
  max-width: 700px;
  margin-bottom: 60px;
}

.section-heading {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.section-subtext {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* Horizontal layout */
.process-row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
}

/* Step box */
.process-step {
  flex: 1;
  padding: 0 25px;
  text-align: left;
}

.step-number {
  font-size: 18px;
  font-weight: 700;
  color: #0d6efd;
  margin-bottom: 12px;
}

.process-step h5 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* Connecting line */
.process-line {
  width: 1px;
  background: #e5e7eb;
}

/* Subtle interaction */
.process-step:hover h5 {
  color: #0d6efd;
}

/* Responsive */
@media (max-width: 992px) {
  .process-row {
    flex-direction: column;
  }

  .process-line {
    width: 100%;
    height: 1px;
    margin: 25px 0;
  }

  .process-step {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .section-heading {
    font-size: 28px;
  }
}

/* What’s Included Section */
.b2b-included-section {
  padding: 90px 20px;
  background: #f9fafb;
}

.b2b-included-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Heading */
.section-heading {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.section-subheading {
  text-align: center;
  font-size: 16px;
  color: #666;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

/* Grid */
.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card */
.included-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: left;
  transition: all 0.35s ease;
  position: relative;
}

/* subtle top accent */
.included-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #0d6efd;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.included-card:hover::before {
  opacity: 1;
}

.included-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.08);
}

/* Card Content */
.included-card h5 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #1a1a1a;
}

.included-card p {
  font-size: 15.5px;
  color: #555;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 992px) {
  .included-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .included-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    font-size: 28px;
  }
}

/* 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;
  }
}

/* indiamart */

.b2b-ready-section {
  padding: 90px 20px;
  background: #ffffff;
}

.section-heading {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  color: #0b0f1a;
  margin-bottom: 15px;
}

.section-subheading {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px;
  font-size: 16px;
  color: #555;
}

.ready-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.ready-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.ready-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px 26px;
  text-align: center; /* 🔥 CENTER ALL CONTENT */
  transition: all 0.35s ease;
}

.ready-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(13, 110, 253, 0.15);
}
/* Text */
.ready-card h5 {
  font-size: 18px;
  font-weight: 600;
  color: #0b0f1a;
  margin-bottom: 8px;
}

.ready-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* ICON CENTER */
.icon-wrap {
  width: 54px;
  height: 54px;
  border: 2px solid #0d6efd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px; /* 🔥 CENTER ICON */
  transition: all 0.3s ease;
}

.icon-wrap svg {
  width: 24px;
  height: 24px;
  stroke: #0d6efd;
  fill: none;
  stroke-width: 1.8;
}

/* Hover effect */
.ready-card:hover .icon-wrap {
  background: #0d6efd;
}

.ready-card:hover .icon-wrap svg {
  stroke: #ffffff;
}
/* CENTER IMAGE WRAPPER */
.ready-center {
  flex: 1.2;                 /* 🔥 give more space to center */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* CENTER IMAGE */
.ready-center img {
  height: 720px;          /* 🔥 increase height */
  width: auto;            /* keep natural width */
  max-width: 100%;
  object-fit: contain;
  animation: floatImage 4s ease-in-out infinite;
}

/* Subtle floating animation */
@keyframes floatImage {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .ready-center {
    order: -1;               /* image on top in tablet/mobile */
    margin-bottom: 30px;
  }

   .ready-center img {
    height: 420px;
  }
}

@media (max-width: 576px) {
   .ready-center img {
    height: 320px;
  }
}
/* Responsive */
@media (max-width: 992px) {
  .ready-layout {
    grid-template-columns: 1fr;
  }

  .ready-center {
    order: -1;
    margin-bottom: 30px;
  }
}


/* PRICING SECTION */
.pricing-section {
  padding: 90px 20px;
  background: #ffffff;
  text-align: center;
}

.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.pricing-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 45px 35px;
  width: 360px;
  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: 15px;
}

.price {
  font-size: 42px;
  font-weight: 700;
  color: #0d6efd;
}

.billing {
  display: block;
  font-size: 14px;
  color: #777;
  margin-bottom: 25px;
}

.features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.features li {
  font-size: 15px;
  color: #444;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.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: all 0.3s ease;
}

.pricing-btn:hover {
  background: #0d6efd;
  color: #fff;
}

/* Highlight */
.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;
}

/* Responsive */
@media (max-width: 768px) {
  .highlight {
    transform: scale(1);
  }
}


/* FINAL CTA */
/* 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);
}

/* WHATSAPP BUTTON */
.cta-btn.whatsapp {
  background: #25d366;
  color: #fff;
}

.cta-btn.whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-3px);
}

/* OUTLINE (optional) */
.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;
  }
  .cta-btn {
    padding: 12px 28px;
    font-size: 15px;
  }
}


/* DISCLAIMER */
.disclaimer-section {
  padding: 50px 20px;
  background: #ffffff;
  border-top: 1px solid #eee;
}

.disclaimer-section h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.disclaimer-section p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  max-width: 900px;
}
