/* ------------------- Global Styles ------------------- */
:root {
  --primary-color: #006eff;
  --primary-soft: #e3efff;
  --dark-color: #0b1b31;
  --text-color: #333333;
  --bg-light: #f5f9ff;
  --accent-green: #00c853;
  --border-color: #e1e7f0;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 10px 30px rgba(11, 27, 49, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--text-color);
  background-color: #ffffff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.section-space {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (min-width: 992px) {
  .section-space {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

/* ------------------- Navbar ------------------- */
.main-header .navbar {
  padding-top: 18px;
  padding-bottom: 18px;
  transition: all 0.25s ease;
  background-color: #ffffff;
  z-index: 999;
}

.main-header .navbar.scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
  box-shadow: 0 6px 20px rgba(11, 27, 49, 0.08);
}

/* Logo Image */
.brand-logo-img {
  width: 150px;
  display: flex;
  align-items: center;
}

.brand-logo-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Remove old gradient logo styles */
.brand-logo,
.brand-icon {
  display: none;
}

/* Navigation Links */
.navbar-nav .nav-link {
  font-weight: 500;
  padding: 8px 12px;
  color: #4a566f;
  font-size: 14px;
  position: relative;
  transition: all 0.25s ease;
}

@media (min-width: 992px) {
  .navbar-nav .nav-link {
    margin-left: 6px;
    margin-right: 6px;
  }
}

/* Hover underline animation */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 20px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 60%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

/* CTA Button inside Navbar */
.nav-cta-btn {
  font-size: 13px;
  padding: 9px 20px;
  border-radius: 999px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary-color), #008cff);
  color: #ffffff !important;
  box-shadow: 0 8px 18px rgba(0, 110, 255, 0.25);
  transition: all 0.3s ease;
  border: none;
}

.nav-cta-btn:hover {
  background: linear-gradient(135deg, #0054c4, #0078ff);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 110, 255, 0.35);
  color: #ffffff !important;
}

/* Mobile toggler button */
.navbar-toggler {
  border: none;
  outline: none;
}

.navbar-toggler-icon {
  filter: brightness(0) saturate(100%);
}

/* Small screens navbar */
@media (max-width: 991.98px) {
  .main-header .navbar {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .navbar-nav {
    padding-top: 10px;
  }

  .nav-cta-btn {
    margin-top: 6px;
    width: 100%;
    text-align: center;
  }
}

/* ------------------- Hero Section ------------------- */
.hero-section {
  padding-top: 110px;
  padding-bottom: 80px;
  background: radial-gradient(
    circle at top left,
    #e6f1ff 0,
    #ffffff 50%,
    #f5f9ff 100%
  );
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid var(--primary-soft);
  background-color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 14px;
}

.hero-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--dark-color);
  line-height: 1.3;
}

.hero-title span {
  color: var(--primary-color);
}

.hero-subtitle {
  margin-top: 16px;
  font-size: 14px;
  color: #55627b;
  max-width: 520px;
}

.hero-cta {
  margin-top: 22px;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.hero-points li {
  font-size: 13px;
  color: #4a566f;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}

.hero-points i {
  color: var(--accent-green);
  font-size: 14px;
  margin-right: 8px;
}

.hero-image-box {
  position: relative;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.hero-main-card {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--primary-soft);
}

.hero-main-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 14px;
}

.hero-main-card h4 i {
  color: var(--primary-color);
}

.hero-stats {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-stats li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px dashed #edf1f8;
}

.hero-stats li:last-child {
  border-bottom: none;
}

.hero-stats span {
  font-size: 12px;
  color: #7b879c;
}

.hero-stats strong {
  font-size: 14px;
  color: var(--primary-color);
}

.hero-floating-card {
  position: absolute;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 10px 12px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-floating-top {
  top: -20px;
  right: -10px;
}

.hero-floating-bottom {
  bottom: -24px;
  left: -8px;
}

.hero-floating-card i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}

.hero-floating-card h5 {
  font-size: 13px;
  margin: 0 0 2px;
  color: var(--dark-color);
}

.hero-floating-card p {
  font-size: 11px;
  margin: 0;
  color: #7b879c;
}

/* Hero responsive */
@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 100px;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta .btn {
    margin-bottom: 8px;
  }

  .hero-floating-card {
    display: none;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 32px;
  }
}

@media (min-width: 992px) {
  .hero-section {
    padding-top: 130px;
    padding-bottom: 100px;
  }
  .hero-title {
    font-size: 38px;
  }
}

/* ------------------- About Section ------------------- */
.about-section {
  background-color: #ffffff;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-item {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background-color: #ffffff;
  border: 1px solid #edf1f8;
  box-shadow: 0 8px 20px rgba(15, 36, 71, 0.04);
}

.about-item i {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: #e9f2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}

.about-item h5 {
  font-size: 14px;
  margin: 0 0 4px;
  color: var(--dark-color);
}

.about-item p {
  font-size: 13px;
  margin: 0;
  color: #6c7a96;
}

@media (max-width: 991.98px) {
  .about-section .section-heading {
    text-align: center;
  }

  .about-highlights {
    max-width: 480px;
    margin: 0 auto;
  }
}

/* ------------------- Features Section ------------------- */
.features-section {
  background-color: var(--bg-light);
}

.feature-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  border: 1px solid #edf1f8;
  box-shadow: 0 12px 24px rgba(15, 36, 71, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 32px rgba(15, 36, 71, 0.1);
  border-color: var(--primary-color);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary-color), #22a6ff);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 20px;
  box-shadow: 0 6px 16px rgba(0, 110, 255, 0.25);
}

.feature-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 13px;
  color: #6c7a96;
  margin-bottom: 12px;
  line-height: 1.55;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  font-size: 12px;
  color: #4a566f;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.feature-list li::before {
  content: "•";
  font-size: 14px;
  color: var(--primary-color);
}

@media (min-width: 768px) {
  .feature-card {
    padding: 22px 20px;
  }
}

@media (min-width: 992px) {
  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .feature-card h4 {
    font-size: 17px;
  }
}

/* ------------------- Industries Section ------------------- */
.industries-section {
  background-color: #ffffff;
}

.industry-card {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid #edf1f8;
  padding: 16px 12px;
  box-shadow: 0 6px 18px rgba(15, 36, 71, 0.05);
  text-align: left;
  transition: all 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 26px rgba(15, 36, 71, 0.08);
}

.industry-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background-color: #e7f1ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  color: var(--primary-color);
  font-size: 16px;
}

.industry-card h5 {
  font-size: 13px;
  margin: 0;
  color: var(--dark-color);
}

@media (max-width: 575.98px) {
  .industry-card {
    text-align: center;
  }

  .industry-icon {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ------------------- Why Choose Section ------------------- */
.why-section {
  background: radial-gradient(
    circle at top right,
    #e7f1ff 0,
    #ffffff 50%,
    #f5f9ff 100%
  );
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #4a566f;
  margin-bottom: 8px;
}

.why-list i {
  color: var(--accent-green);
  margin-top: 3px;
}

.why-metrics-box {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 20px;
  border: 1px solid #edf1f8;
  box-shadow: var(--shadow-soft);
}

.why-metric {
  padding: 10px 0;
  border-bottom: 1px dashed #edf1f8;
}

.why-metric:last-child {
  border-bottom: none;
}

.why-metric h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary-color);
  margin: 0 0 4px;
}

.why-metric p {
  font-size: 13px;
  margin: 0;
  color: #6c7a96;
}

.why-note {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  background-color: #f5f9ff;
}

.why-note i {
  color: var(--primary-color);
  margin-top: 3px;
}

.why-note p {
  margin: 0;
  font-size: 12px;
  color: #4a566f;
}

@media (max-width: 991.98px) {
  .why-section .section-heading {
    text-align: center;
  }

  .why-metrics-box {
    margin-top: 10px;
  }
}

/* ------------------- Benefits Section ------------------- */
.benefits-section {
  background-color: #ffffff;
}

.benefit-card {
  border-radius: var(--radius-lg);
  border: 1px solid #edf1f8;
  padding: 18px 16px;
  box-shadow: 0 8px 20px rgba(15, 36, 71, 0.04);
  background-color: #ffffff;
  height: 100%;
}

.benefit-card i {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.benefit-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 6px;
}

.benefit-card p {
  font-size: 13px;
  color: #6c7a96;
  margin: 0;
}

/* ------------------- Screenshots Section ------------------- */
.screenshots-section {
  background-color: var(--bg-light);
}

.screenshot-card {
  border-radius: var(--radius-lg);
  border: 1px solid #edf1f8;
  padding: 14px 14px 16px;
  background-color: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 36, 71, 0.04);
  height: 100%;
  transition: 0.3s ease;
}

.screenshot-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 26px rgba(15, 36, 71, 0.1);
}

.screenshot-thumb {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 10px;
  background: #e8efff;
}

.screenshot-card h5 {
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--dark-color);
}

.screenshot-card h5 i {
  color: var(--primary-color);
}

.screenshot-card p {
  font-size: 12px;
  color: #6c7a96;
  margin: 0;
}


/* ------------------- Pricing Section ------------------- */
.pricing-section {
  background-color: #ffffff;
}

.pricing-card {
  background: linear-gradient(150deg, #ffffff, #f5f9ff);
  border-radius: 24px;
  padding: 26px 24px;
  box-shadow: 0 14px 30px rgba(15, 36, 71, 0.08);
  border: 1px solid #edf1f8;
  transition: 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 36, 71, 0.12);
}

.pricing-badge {
  display: inline-block;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background-color: #ffe8e8;
  color: #ff4c4c;
  font-weight: 600;
  margin-bottom: 8px;
}

.pricing-card h3 {
  font-size: 18px;
  color: var(--dark-color);
  font-weight: 700;
}

.pricing-card h3 i {
  color: var(--primary-color);
}

.pricing-desc {
  font-size: 13px;
  color: #6c7a96;
  margin-top: 6px;
}

.pricing-price-box {
  margin-top: 16px;
  margin-bottom: 14px;
}

.pricing-label {
  font-size: 12px;
  color: #7b879c;
}

.pricing-price {
  font-size: 22px;
  color: var(--primary-color);
  font-weight: 800;
  margin: 4px 0;
}

.pricing-note {
  font-size: 12px;
  color: #6c7a96;
  margin: 0;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

.pricing-features li {
  font-size: 13px;
  color: #4a566f;
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
  align-items: flex-start;
}

.pricing-features i {
  color: var(--accent-green);
  margin-top: 3px;
}

/* ------------------- Contact Section ------------------- */
.contact-section {
  background-color: var(--bg-light);
}

.contact-info-box {
  margin-top: 10px;
}

.contact-info-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.contact-info-item i {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  background-color: #e7f1ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 15px;
}

.contact-info-item h5 {
  font-size: 14px;
  margin: 0;
  color: var(--dark-color);
}

.contact-info-item p {
  font-size: 13px;
  margin: 2px 0 0;
  color: #55627b;
}

.contact-info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.contact-form-card {
  background-color: #ffffff;
  border-radius: 22px;
  padding: 22px 20px;
  border: 1px solid #edf1f8;
  box-shadow: 0 14px 32px rgba(15, 36, 71, 0.08);
}

.contact-form-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-color);
}

.contact-form-card h4 i {
  color: var(--primary-color);
}

.contact-form-card p {
  font-size: 13px;
  color: #6c7a96;
}

.contact-form-card .form-control {
  border-radius: 999px;
  border: 1px solid #dde3f0;
  font-size: 13px;
  padding: 8px 14px;
}

.contact-form-card textarea.form-control {
  border-radius: 16px;
}

.contact-form-card .form-label {
  font-size: 12px;
  color: #4a566f;
}

.contact-form-note {
  font-size: 11px;
  color: #7b879c;
  margin-top: 8px;
}

@media (max-width: 991.98px) {
  .contact-section .section-heading {
    text-align: center;
  }

  .contact-info-box {
    max-width: 480px;
    margin: 0 auto 20px;
  }

  .contact-form-card {
    max-width: 520px;
    margin: 0 auto;
  }
}

.btn-submit-main {
  background: linear-gradient(135deg, #1268fb, #0a4acb);
  color: #fff;
  padding: 12px 20px;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(18, 104, 251, 0.3);
}

.btn-submit-main:hover {
  background: linear-gradient(135deg, #0a4acb, #0840aa);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(10, 74, 203, 0.35);
  color: #fff;
}


/* ------------------- Footer ------------------- */
.site-footer {
  background-color: var(--dark-color);
  color: #cad3e8;
  padding-top: 40px;
  padding-bottom: 22px;
  margin-top: 40px;
}

.footer-about h5 {
  font-size: 15px;
  color: #ffffff;
  margin-bottom: 8px;
}

.footer-about p {
  font-size: 13px;
  color: #a9b4d0;
  max-width: 420px;
}

.footer-links h6,
.footer-contact h6 {
  font-size: 13px;
  color: #ffffff;
  margin-bottom: 8px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 4px;
}

.footer-links a {
  font-size: 13px;
  color: #a9b4d0;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-contact p {
  font-size: 13px;
  margin: 0 0 4px;
  color: #a9b4d0;
}

.footer-contact i {
  margin-right: 6px;
  color: #6f8cff;
}

.footer-bottom {
  border-top: 1px solid #2c3450;
  margin-top: 18px;
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.footer-bottom p {
  font-size: 12px;
  color: #8c97b7;
}

.footer-bottom-sub span {
  color: #ffffff;
}

@media (min-width: 992px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: center;
  }
}

/* ------------------- Reveal Animations ------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: all 0.5s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
