/* Color Palette & Typography */
:root {
    --primary-color:   #0e5cb8;
    --secondary-color: #f97316;
    --primary-blue:    var(--primary-color, #0e5cb8);
    --primary-orange:  var(--secondary-color, #f97316);
    --orange-color:    var(--secondary-color, #f97316);
    --header-bg:       #ffffff;
    --dark-text:       #1f2937;
    --light-text:      #6b7280;
    --bg-color:        #f4f6fa;
    --sidebar-width:   250px;
    --font-heading:    'Montserrat', sans-serif;
    --font-body:       'Inter', sans-serif;
}

body.page-landing {
  font-family: var(--font-body);
  color: var(--primary-color);
  background-color: var(--bg-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.hero-title,
.feature-title,
.bottom-tagline,
.navbar-brand,
.nav-link,
.btn,
.step-number {
  font-family: var(--font-heading);
}

p,
.hero-subtitle,
.feature-desc,
.step-desc,
.footer-desc,
.footer-text,
.footer-link,
.text-muted {
  font-family: var(--font-body);
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--primary-color) !important;
}

/* Custom Class for Buttons to match the input image */
.btn {
  font-weight: 600;
  border-radius: 13px;
  padding: 8px 20px;
  transition: all 0.3s ease;
}

.btn-orange {
  background-color: var(--orange-color);
  color: #ffffff;
  border: none;
}
.btn-orange:hover {
  background-color: var(--orange-color);
  opacity: 0.9;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-blue {
  background-color: var(--primary-color);
  color: #ffffff;
  border: none;
}
.btn-blue:hover {
  background-color: var(--primary-color);
  opacity: 0.9;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline-blue {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}
.btn-outline-blue:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

/* General Layout and Responsiveness */
.container {
  max-width: auto;
}

/* Header and Navigation - Solid Color */
.navbar {
  background-color: #ffffff !important;
  background: #ffffff !important;
  padding-top: 12px;
  padding-bottom: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 1030;
}

.navbar-brand img {
  max-height: 45px;
}

.nav-link {
  text-decoration: none;
  color: var(--primary-color) !important;
  margin: 0 5px;
  font-weight: 700;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 8px;
}

.nav-link.active::after, .nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 3px;
  background-color: var(--orange-color);
  border-radius: 2px;
}
.nav-link:not(.active):hover::after {
  display: block;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 30px 0 100px;
  min-height: 50vh;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  z-index: 1;
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
  opacity: 0.8;
}
.hero-bg-1, .hero-bg-2 {
  position: absolute;
  width: 100%;
  height: 100%;
}
.hero-bg-1 {
  bottom: 0;
  left: 0;
  object-fit: cover;
  object-position: bottom left;
}

.hero-title {
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
}

.hero-subtitle {
  color: var(--primary-color);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 30px;
  font-weight: 400;
  max-width: 90%;
}

.hero-img-col {
  padding-top: 30px;
}

.hero-img-col img {
  border-radius: 13px;
}

/* Feature Cards */
.features-card {
  padding: 10px 0 0;
  background-color: white;
  position: relative;
  z-index: 2;
}

.feature-item {
  height: 100%;
  padding: 20px;
  transition: transform 0.3s ease;
}
.feature-item:hover {
  transform: translateY(-8px);
}

.feature-icon-wrapper {
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-title {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.feature-desc {
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.7;
}

/* Custom Icons layout for features */
.feature-icon-wrapper i.main-icon {
  color: var(--primary-color);
}
.feature-icon-wrapper i.accent-icon {
  color: var(--orange-color);
  font-size: 0.5em;
  position: absolute;
}
.bar {
  position: absolute;
  bottom: 10px;
  width: 12px;
  border-radius: 2px 2px 0 0;
}
.bar-1 { left: 0; height: 35px; background-color: var(--orange-color); }
.bar-2 { left: 16px; height: 50px; background-color: var(--primary-color); }
.bar-3 { left: 32px; height: 40px; background-color: var(--orange-color); }
.bar-4 { left: 48px; height: 60px; background-color: var(--primary-color); }
.bar-base {
  position: absolute;
  bottom: 5px;
  left: -5px;
  width: 70px;
  height: 5px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

/* Bottom Tagline */
.bottom-tagline {
  color: var(--primary-color);
  font-weight: 800;
  font-size: 2.0rem;
  text-align: center;
  padding: 30px 0 30px;
  background-color: #F8F9FA;
  margin-bottom: 0;
  margin-top: 40px;
}

/* Form Styles */
.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(26, 86, 184, 0.25);
}

/* Responsive */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-section {
    min-height: auto;
    padding: 60px 0;
    text-align: center;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-img-col {
    margin-top: 50px;
  }
  .hero-text-col .d-flex {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
}

/* Steps & Connectors */
.step-number {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  flex-shrink: 0;
  border-radius: 50%;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.step-number-1 { background-color: var(--orange-color); }
.step-number-2 { background-color: var(--primary-color); }
.step-number-3 { background-color: #28a745; }

.step-connector {
  font-size: 4rem;
  color: #dee2e6;
  opacity: 0.8;
}

/* Scroll Offset for Fixed Navbar Scrollspy */
section {
  scroll-margin-top: 80px;
}

/* Footer Element Styles */
.footer-link {
  color: var(--primary-color) !important;
  transition: all 0.3s ease;
}
.footer-link:hover {
  color: var(--orange-color) !important;
  transform: translateX(3px);
  display: inline-block;
}

.social-icon {
  transition: all 0.3s ease;
}
.social-icon:hover {
  background-color: var(--primary-color) !important;
  color: #ffffff !important;
  transform: translateY(-3px);
}

/* Back to Top Button */
#btn-back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
  z-index: 999;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding: 0;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}