* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, sans-serif
}

@font-face {
  font-family: 'normal';
  src: url('./assets/fonts/Poppins/Poppins-Regular.ttf');
  font-weight: 400;
}

@font-face {
  font-family: 'bold';
  src: url('./assets/fonts/Poppins/Poppins-Bold.ttf');
  font-weight: bold;
}

.bold_ff {
  font-family: bold;
}

.normal_ff {
  font-family: normal;
}

html {
  scroll-behavior: smooth;
}

.text_center {
  text-align: center !important;
}

body {
  background: #f8fafc;
  color: #0f172a
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px
}

.btn-outline-primary {
  color: #000000;
  border-color: #1C5FCF;
  border: 2px solid #1C5FCF;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: #4848AA;
  border-color: #4848AA;
  color: #ffffff;
  border: 2px solid #4848AA;
}

/* ================= HEADER STICKY ================= */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

/* Shadow when scrolling */
header.scrolled {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* ================= NAV LINKS ================= */
.nav-links a {
  position: relative;
  padding: 6px 2px;
  transition: color 0.3s ease;
}

/* Active link */
.nav-links a.active {
  color: #2563eb;
  font-weight: 600;
}

/* Underline effect */
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #2563eb;
  border-radius: 2px;
}



.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0
}

.logo {
  font-size: 26px;
  font-weight: 700;
  color: #2563eb
}

.nav-links a {
  margin: 0 14px;
  text-decoration: none;
  color: #334155;
  font-size: 14px
}

.login-btn {
  border: 1px solid #2563eb;
  background: none;
  padding: 6px 14px;
  border-radius: 6px;
  color: #2563eb
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 0;
  gap: 40px
}

.hero-text h1 {
  font-size: 80px;
  line-height: 1.2
}

.w-50 {
  width: 50% !important;
}

.hero-text span {
  color: #2563eb
}

.hero-text p {
  color: #475569;
  margin-top: 14px;
  font-size: 23px;
}

.hero-img img {
  max-width: 480px;
  width: 100%
}

.primary-btn {
  margin-top: 24px;
  background: #2563eb;
  color: #fff;
  padding: 14px 28px;
  border: none;
  border-radius: 8px
}

/* ================= PROBLEM ================= */
.problem {
  padding: 10px 20px;
  background: #ffffff;
  text-align: center;
}

.problem h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #020617;
}

.problem-text {
  max-width: 720px;
  margin: 0 auto 28px;
  font-size: 20px;
  color: #475569;
  line-height: 1.6;
}

.problem-quote {
  font-size: 22px;
  font-weight: 600;
  color: #2563eb;
  line-height: 1.4;
}


/* ================= JOURNEY ================= */
.journey {
  background: #f8fafc;
}

.journey-subtitle {
  max-width: 760px;
  margin: 0 auto 60px;
  font-size: 20px;
  color: #475569;
  line-height: 1.6;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.journey-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px;
  text-align: left;
  transition: all 0.3s ease;
}

.journey-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

/* Highlight middle card */
.journey-card.highlight {
  border-color: #f59e0b;
  background: #fffbeb;
}

/* Icons */
.journey-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
}

.journey-icon.blue {
  color: #2563eb;
}

.journey-icon.orange {
  color: #f97316;
}

.journey-icon.green {
  color: #22c55e;
}

.journey-card h4 {
  font-size: 15px;
  margin-bottom: 8px;
  color: #020617;
}

.journey-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .journey-card {
    text-align: center;
  }

  .w-50 {
    width: 100% !important;
  }
}

/* ================= JOURNEY CARD STATES ================= */

/* Default card */
.journey-card {
  background: #f8fafc;
  border: 1.5px solid #dbeafe;
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
}

/* Title default */
.journey-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #020617;
  transition: color 0.3s ease;
}

/* Hover effect (generic) */
.journey-card:hover {
  background: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.blue_highlight {
  border: 1px solid #1C5FCF26;
}

.orange_highlight {
  border: 1px solid #fdba74;
}

.green_highlight {
  border: 1px solid #D3DFF4;
}

.blue_highlight:hover {
  border: 1px solid #467bed;
  color: #2563eb;
}

.orange_highlight:hover {
  border: 1px solid #f5ad35;
  color: #f5ad35;
}

.green_highlight:hover {
  border: 1px solid #b0e3d6;
  color: #4cc9a1;
}

.blue_highlight:hover h4 {
  color: #2563eb;
}

.orange_highlight:hover h4 {
  color: #f5ad35;
}

.green_highlight:hover h4 {
  color: #4cc9a1;
}





/* SECTIONS */
.section {
  padding: 10px 20px;
  text-align: center
}

.section-title {
  font-size: 32px
}

.section-sub {
  color: #475569;
  margin-bottom: 40px
}

.light {
  background: #f1f5f9
}

/* CARDS */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px
}

.card {
  background: #fff;
  padding: 28px;
  border-radius: 14px
}

.card img {
  width: 48px;
  margin-bottom: 14px
}

.highlight {
  border: 2px solid #2563eb
}

/* ================= FEATURES ================= */
.features {
  background: #f8fafc;
}

.section-subtitle {
  max-width: 720px;
  margin: 0 auto 50px;
  font-size: 20px;
  color: #475569;
}



.feature-card {
  background: #ffffff;
  border: 1px solid #1C5FCF26;
  border-radius: 16px;
  padding: 28px;
  text-align: left;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.highlight_1:hover {
  border: 1px solid #a9c4f0;
}

.highlight_2:hover {
  border: 1px solid #a9e6c7;
}

.highlight_3:hover {
  border: 1px solid #c0d5e8;
}

.highlight_4:hover {
  border: 1px solid #bba3d9;
}

.highlight_5:hover {
  border: 1px solid #a6d5e1;
}

.highlight_6:hover {
  border: 1px solid #f0e67cd9;
}

.feature-card h4 {
  font-size: 15px;
  margin: 14px 0 8px;
  color: #020617;
}

.feature-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

/* Icon box */
.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Icon colors */
.feature-icon.blue {
  background: #e0edff;
  color: #2563eb;
}

.feature-icon.green {
  background: #dcfce7;
  color: #22c55e;
}

.feature-icon.gray {
  background: #f1f5f9;
  color: #334155;
}

.feature-icon.purple {
  background: #f3e8ff;
  color: #a855f7;
}

.feature-icon.teal {
  background: #ccfbf1;
  color: #14b8a6;
}

.feature-icon.yellow {
  background: #fef9c3;
  color: #ca8a04;
}

/* Responsive */
@media (max-width: 768px) {
  .feature-card {
    text-align: center;
  }
}

/* ================= WHY US ================= */
.why-us {
  background: #ffffff;
}

.why-us .section-subtitle {
  margin-bottom: 50px;
  font-size: 20px;
  color: #475569;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin: auto;
}

.why-item {
  text-align: center;
}

.why-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 14px;
  background: #22c55e;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
}

.why-item h4 {
  font-size: 15px;
  margin-bottom: 6px;
  color: #020617;
}

.why-item p {
  font-size: 16px;
  color: #475569;
  line-height: 1.5;
}


/* ================= FAQ ================= */
.faq-section {
  padding: 30px 20px;
  background: #ffffff;
}

.faq-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
}

.faq-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.faq-list {
  max-width: 540px;
}

.faq-card {
  border-top: 1px solid #334155;
  padding: 28px 0;
  cursor: pointer;
}

.faq-card:last-child {
  border-bottom: 1px solid #334155;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 26px;
  font-weight: 700;
  color: #020617;
}

.faq-icon {
  font-size: 24px;
  transition: transform 0.3s ease;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 20px;
  color: #475569;
  line-height: 1.6;
  transition: max-height 0.4s ease;
}

/* ACTIVE STATE */
.faq-card.active .faq-answer {
  max-height: 120px;
  margin-top: 16px;
}

.faq-card.active .faq-icon {
  transform: rotate(45deg);
}

/* RIGHT IMAGE */
.faq-img {
  width: 100%;
  max-width: 420px;
  justify-self: end;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .faq-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .faq-list {
    max-width: 100%;
  }

  .faq-img {
    margin: 40px auto 0;
  }
}

/* NEWSLETTER */
/* ================= NEWSLETTER ================= */
.newsletter-bar {
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #cbd5f5;
  padding: 30px 20px;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.newsletter-text h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #fff;
}

.newsletter-text p {
  font-size: 14px;
  opacity: 0.85;
  max-width: 500px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  padding: 12px;
  width: 350px;
  border-radius: 6px;
  border: none;
  background: #141442;
  color: #fff;
}

.newsletter-form button {
  padding: 12px 20px;
  color: #fff;
  cursor: pointer;
}

/* ================= FOOTER ================= */
.footer {
  background: #020617;
  color: #cbd5f5;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 40px;
  padding: 50px 0;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 15px;
  margin-bottom: 14px;
}

.footer-col p {
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  font-size: 13px;
}

.footer-col ul li {
  margin-bottom: 10px;
  opacity: 0.85;
  cursor: pointer;
}

.footer-col ul li:hover {
  color: #38bdf8;
}

.contact li {
  cursor: default;
  margin-left: -30px;
}

.footer_content li {
  cursor: default;
  margin-left: -30px !important;
}

/* ================= FOOTER BOTTOM ================= */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.socials img {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  font-size: 12px;
  cursor: pointer;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .newsletter-inner {
    text-align: center;
    justify-content: center;
  }

  .newsletter-form {
    flex-direction: column;
    width: 100%;
  }

  .newsletter-form input {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 12px;
  }
}


/* FLOATING */
.floating {
  position: fixed;
  right: 20px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.floating div {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center
}

.chat img {
  width: 40px !important;
  background: transparent !important;
}

.chat {
  background: transparent !important;
}

.ai img {
  width: 30px;
}

.contact_img {
  width: 24px;
  vertical-align: middle;

}

/* ================= INDUSTRIES ================= */
.industries {
  text-align: center;
  background: #ffffff;
}

.industry-icon {
  font-size: 28px;
  color: #2563eb;
  margin-bottom: 12px;
}

.section-subtitle {
  max-width: 720px;
  margin: 0 auto 50px;
  color: #475569;
  font-size: 20px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.industry-card {
  background: #ffffff;
  border: 1px solid #1C5FCF26;
  border-radius: 14px;
  padding: 26px;
  text-align: left;
  transition: all 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #1D468AB8;
  cursor: pointer;
}

.industry-card:hover h4 {
  margin: 12px 0 8px;
  font-size: 16px;
  color: #232576F0;
}

.industry-card h4 {
  margin: 12px 0 8px;
  font-size: 16px;
}

.industry-card p {
  font-size: 14px;
  color: #475569;
}

/* Icons */
.icon img {
  width: 38px;
}

/* 
.icon.blue { background: #e0edff; color: #2563eb; }
.icon.orange { background: #fff1e6; color: #f97316; }
.icon.red { background: #fee2e2; color: #ef4444; }
.icon.green { background: #dcfce7; color: #22c55e; }
.icon.purple { background: #f3e8ff; color: #a855f7; }
.icon.teal { background: #ccfbf1; color: #14b8a6; } */

/* CTA */
.industry-cta {
  margin-top: 40px;
}

.secondary-btn {
  background: transparent;
  border: 2px solid #2563eb;
  color: #2563eb;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.secondary-btn:hover {
  background: #2563eb;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .industry-card {
    text-align: center;
  }

  .industry-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 26px;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 28px;
  }
}


/* RESPONSIVE */
@media(max-width:768px) {

  .hero,
  .faq-container {
    flex-direction: column;
    grid-template-columns: 1fr;
    text-align: center
  }

  .nav-links {
    display: none
  }

  .nav_btn {
    display: none
  }

  .faq-img {
    max-width: 420px;
    width: 100%;
    margin-left: 0rem !important;
  }
}