html {
  width: 100%;
  overflow-x: hidden;
}
.banner {
  position: relative;
  width: 100%;
  min-height: 80vh;
  background: linear-gradient(rgba(22, 22, 22, 0.8), rgba(19, 44, 79, 0.9)),
    url('/img/industry.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;

  padding-bottom: 30px;
}

/*  */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #fff;
  color: #333;
  position: relative;
    width: 100%;
    min-width: 100%;
}

section {
  padding: 60px 10%;
}

h1,
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

p {
  font-size: 1.1rem;
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.text-navy {
  color: #2c599d;
}

.text-orange {
  color: #f98125;
}

.cta-button {
  background: #f98125;
  color: #fff;
  border: none;
  padding: 16px 32px;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.1);
}

/* Layouts */
.hero-section,
.info-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.light-blue-bg {
  background-color: #F8F9FA;
  padding: 4rem 1rem;
}

.features-section.light-bg {
  background-color: #f0f7fd;
  padding: 80px 0;
}

.features-wrapper {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  /* let the child grow equally */
  justify-content: space-between;
  gap: 40px;
}

.features-image,
.features-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}


.features-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 50%;
  height: 100%;
  margin-top: 300px;
}

.features-image img {
  width: 100%;
  max-width: 90%;
  height: auto;
  object-fit: contain;
}


.features-content {
  flex: 1;
  max-width: 50%;
  display: flex;
  margin-right: 80px;
  flex-direction: column;
  justify-content: center;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.feature-card {
  background: #fff;
  padding: 24px 20px;
  border-radius: 16px;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.05),
    0 12px 24px rgba(0, 0, 0, 0.08);
  /* Soft but realistic lift */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  z-index: 1;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 6px 8px rgba(0, 0, 0, 0.06),
    0 20px 40px rgba(0, 0, 0, 0.1);
  /* Stronger lift on hover */
}

.feature-card i {
  font-size: 2rem;
  color: #f98125;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.feature-card:hover i {
  transform: scale(1.1);
}

.feature-card::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 10%;
  right: 10%;
  height: 10px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  z-index: -1;
  filter: blur(4px);
  opacity: 0.7;
}


.feature-card i {
  font-size: 2rem;
  color: #f98125;
  animation: subtlePop 2s ease infinite alternate;
}

@keyframes subtlePop {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

.feature-card p {
  font-size: 0.95rem;
  margin: 0;
  color: #333;
}

.feature-subtext {
  margin-bottom: -10;
  /* reduce spacing */
}


@media (max-width: 992px) {
  .features-wrapper {
    flex-direction: column;
  }

  .features-image,
  .features-content {
    max-width: 100%;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);

  }
}

@media (max-width: 600px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  font-style: italic;
  color: #444;
}

.dashboard-image {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: block;
  border: 1px solid #ddd;
}

@media (max-width: 768px) {

  .hero-section,
  .info-section {
    flex-direction: column;
    text-align: center;
  }
}

.pricing-section {
  padding: 80px 5%;
  background-color: #f8f9fa;
  text-align: center;
}

.pricing-heading {
  font-size: 2.1rem;
  margin-bottom: 3rem;
}


.cta-button {
  background-color: #f98125;
  color: white;
  padding: 0.7rem 1.5rem;
  border: none;
  font-size: 1.2rem;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.cta-button:hover {
  background-color: #2c599d;
}

.cta-button1 {
  background-color: #2c599d;
  color: white;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background 0.3s;
}

.cta-button1:hover {
  background-color: #f98125;
}

.cta-buttonspec {
  background-color: #f98125;
  color: white;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background 0.3s;
  margin-top: 70px;
}

.cta-buttonspec:hover {
  background-color: #2c599d;
}

/* Comic Strip Section */
.comic-strip-section {
  padding: 4rem 2rem;
  background-color: #fefefe;
  text-align: center;
}

.comic-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.comic-strip img {
  width: 100%;
  max-width: 550px;
}


/* TESTIMONIALS SECTION */
.testimonials-section {
  background-color: #ffffff;
  /* changed from light blue to white */
  padding: 80px 20px;
  text-align: center;
  margin-top: -100px;
}

.testimonials-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.testimonial-card {
  background-color: #2c599d;
  color: white;
  width: 320px;
  padding: 40px 24px 30px;
  border-radius: 18px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card2 {
  background-color: #f98125;
  color: white;
  width: 320px;
  padding: 40px 24px 30px;
  border-radius: 18px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.quote-mark {
  font-size: 3.5rem;
  position: absolute;
  top: 12px;
  left: 20px;
  opacity: 0.9;
  font-weight: bold;
}

.testimonial-text {
  margin-top: 50px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  margin-top: 30px;
  gap: 12px;
}

.author-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial-footer .author-info strong,
.testimonial-footer .author-info span {
  display: block;
}


.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid white;
  object-fit: cover;
  animation: floatAvatar 4s ease-in-out infinite;
}

@keyframes floatAvatar {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-4px);
  }
}

.author-info span {
  display: block;
  font-size: 0.85rem;
  color: #cce0ff;
  text-align: center;
}

.author-info strong,
.author-info span {
  display: block;
}

/* LOGO SECTION */
.trusted-by-section {
  background: #ffffff;
  /* consistent with testimonials now */
  padding: 60px 0;
  text-align: center;
}

.logo-slider {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 30px;
  word-spacing: 90px;
}

.logo-slider img {
  height: 150px;
  object-fit: contain;
  opacity: 0.95;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-slider img:hover {
  transform: scale(1.05);
  opacity: 1;
}

/* INFO SECTION */
.info-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 10%;
  gap: 40px;
  flex-wrap: wrap;
}

.info-text {
  flex: 1;
  max-width: 50%;
}

.info-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.info-text p {
  font-size: 1.15rem;
  line-height: 1.7;
}

.info-image {
  flex: 1;
  max-width: 50%;
  display: flex;
  justify-content: center;
}

.info-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 991px) {
  .info-section {
    flex-direction: column;
    text-align: center;
  }

  .info-text,
  .info-image {
    max-width: 100%;
  }

  .info-text h1 {
    font-size: 2rem;
  }

  .info-text p {
    font-size: 1rem;
  }
}

/* Pricing Section with Alternating Colors */
.pricing-section {
  padding: 4rem 1rem;
  text-align: center;
  background: white;
}

.pricing-section h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 3rem;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  flex: 1 1 280px;
  max-width: 300px;
  padding: 2rem;
  border-radius: 8px;
  transition: var(--transition);
}

/* Alternating card colors */
.pricing-card:nth-child(odd) {
  background: var(--primary);
  color: white;
}

.pricing-card:nth-child(even) {
  background: var(--light);
  color: var(--dark);
}

.pricing-card:nth-child(4n+1) {
  background: var(--accent);
  color: white;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.pricing-card .price {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
}

.pricing-card ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  padding-left: 1.5rem;
}

.pricing-card:nth-child(even) ul li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card ul li:before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
}

.pricing-card:nth-child(odd) ul li:before,
.pricing-card:nth-child(4n+1) ul li:before {
  color: white;
}

.pricing-card:nth-child(even) ul li:before {
  color: var(--accent);
}

.price-small {
  font-size: 0.9rem;
  opacity: 0.8;
  display: block;
  margin-top: -0.5rem;
}

.btn-orange {
  background: #f98125;
  color: black;
  text-decoration: none;
  border: none;
  padding: 16px 32px;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s ease;
  font-weight: 500;
}