 /* ===========================
   Root & Base Styles
=========================== */
:root {
  --primary-color: #005695;
  --accent-color: #68bc46;
   --primary-color-new: #79b5e0;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #fff;
  overflow-x: hidden;
  padding-top: 80px;
}

.text-primary-color { color: var(--primary-color) !important; }
.text-accent-color { color: var(--primary-color-new) !important; }

/* ===========================
   Buttons
=========================== */
.btn-primary-color {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  transition: all 0.3s ease;
}
.btn-primary-color:hover { background-color: #00447a; color:#f7f9fb }

.btn-accent {
  background-color: var(--accent-color);
  color: #fff;
  border: none;
  font-weight: 600;
  padding: 10px;
  transition: all 0.3s ease;
}
.btn-accent:hover { background-color: #58a53c; }

.btn-outline-light {
  border: 1px solid #fff;
  color: #fff;
  transition: all 0.3s ease;
}
.btn-outline-light:hover {
  background-color: #fff;
  color: var(--primary-color);
}

/* ===========================
   Navbar
=========================== */
.logo { height: 36px; width: auto; }

.navbar-transparent {
  background: transparent;
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}
.navbar-scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.navbar-light .nav-link {
  color: var(--primary-color);
  font-weight: 500;
  transition: color 0.3s ease;
}
.navbar-light .nav-link:hover { color: var(--accent-color); }

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,86,149,0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===========================
   Hero Section
=========================== */
.hero-section {
  background-color: #fafafa;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to bottom right, rgba(0,86,149,0.04) 25%, transparent 25%),
    linear-gradient(to top left, rgba(104,188,70,0.04) 25%, transparent 25%),
    linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%);
  background-size: 60px 60px, 60px 60px, 100% 100%;
  background-repeat: repeat;
  z-index: 0;
}
.hero-section .container { position: relative; z-index: 2; }
.hero-img img { width: 100%; transition: transform 0.4s ease; }
.hero-img:hover img { transform: scale(1.03); }

/* ===========================
   Trusted Logos
=========================== */
.trusted-section {
  background: linear-gradient(to bottom, #fff 0%, #fafafa 60%, #fff8f6 100%);
  border-top: 1px solid rgba(0,0,0,0.05);
}
.trusted-section p { color: #444; letter-spacing: 0.3px; }
.brand-logo {
  max-height: 40px;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.brand-logo:hover { opacity: 1; transform: scale(1.05); }

/* ===========================
   Review Section
=========================== */
.review-section {
  background: radial-gradient(circle at center top, rgba(0,86,149,0.95) 0%, #000 100%);
  color: #fff;
  border-radius: 10px;
  margin: 40px auto;
  padding: 80px 0;
  box-shadow: 0 0 9px rgba(0,0,0,0.3);
}
.review-section .badge-img { height: 60px; transition: transform 0.3s ease; }
.review-section .badge-img:hover { transform: scale(1.05); }
.review-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.review-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
}
.avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-color);
}

/* ===========================
   Why Section
=========================== */
.why-section {
  background: linear-gradient(to bottom, #ffffff 0%, #f9f9f9 100%);
}
.why-card {
  background-color: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}
.why-card:hover { transform: translateY(-5px); box-shadow: 0 6px 18px rgba(0,86,149,0.15); }
.icon-box {
  width: 80px; height: 80px;
  background-color: rgba(0,86,149,0.1);
  color: var(--primary-color);
  font-size: 2rem;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
.why-card:hover .icon-box {
  background-color: var(--accent-color);
  color: #fff;
  transform: scale(1.1);
}

/* ===========================
   Value Section
=========================== */
.value-section {
  background: radial-gradient(circle at top, var(--primary-color) 0%, #003b6a 100%);
  color: #fff;
  border-radius: 10px;
  margin: 40px auto;
  padding: 80px 0;
  box-shadow: 0 0 9px rgba(0,0,0,0.4);
}
.feature-card {
  background-color: rgba(17, 28, 44, 0.555);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-color);
  box-shadow: 0 6px 18px rgba(104,188,70,0.25);
}

/* ===========================
   Performance Section
=========================== */
.performance-section {
  background: linear-gradient(to bottom, #ffffff 0%, #f7f9fb 100%);
}
.perf-tab {
  border: 1px solid #ccc;
  background: #fff;
  color: #555;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.perf-tab + .perf-tab { margin-left: 8px; }
.perf-tab.active, .perf-tab:hover {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}
.chip {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 25px;
  background: #fff;
  color: #333;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.chip:hover { border-color: var(--accent-color); color: var(--accent-color); }

/* ===========================
   Case Study Section
=========================== */
.case-section { background: linear-gradient(to bottom, #fff 0%, #f9f9f9 100%); }
.score-badge {
  position: absolute; top: 20px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  width: 48px; height: 48px; line-height: 48px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(104,188,70,0.3);
}
.case-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.case-card:hover { transform: translateY(-5px); }
.case-avatar {
  width: 80px; height: 40px;
  padding: 2px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-color);
}

/* ===========================
   Solutions Section
=========================== */
.solutions-section {
  background: linear-gradient(to bottom, #ffffff 0%, #f9f9f9 100%);
}
.solution-card {
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 3px 10px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}
.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 22px rgba(0,86,149,0.15);
  border-color: var(--accent-color);
}
.solution-icon {
  width: 90px; height: 90px;
  margin: 0 auto;
  border-radius: 50%;
  background-color: rgba(0,86,149,0.1);
  color: var(--primary-color);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  transition: all 0.3s ease;
}
.solution-card:hover .solution-icon {
  background-color: var(--accent-color);
  color: #fff;
  transform: scale(1.1);
}
.arrow-link {
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.arrow-link:hover { color: var(--accent-color); transform: translateX(4px); }

/* ===========================
   Dashboard Section
=========================== */
.dashboard-section {
  background: linear-gradient(to bottom, #ffffff 0%, #f7f9fb 100%);
}
/* Tag Buttons */
.tag {
  display: inline-block;
  background-color: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 25px;
  padding: 8px 16px;
  color: #333;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}
.tag:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}
.tag.active {
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
  box-shadow: 0 4px 10px rgba(0,86,149,0.25);
}

/* Image transitions */
.dashboard-img-wrapper img {
 
   max-width: 900px;
  height: 500px;
  border-radius: 16px;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-out {
  opacity: 0;
  transform: scale(0.97);
}
.fade-in {
  opacity: 1;
  transform: scale(1);
}

/* Caption */
#dashboardDesc {
  transition: opacity 0.5s ease;
  max-width: 700px;
  margin: 0 auto;
}
.fade-text {
  opacity: 0;
}


/* ===========================
   Partner Section
=========================== */
.partner-section {
  background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}
.partner-label {
  display: inline-block;
  background-color: rgba(0,86,149,0.0);
  color: var(--primary-color);
  border: 0px solid var(--primary-color);
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 4px 0px;
}
.partner-section ul li { font-size: 1rem; color: #444; margin-bottom: 10px; }
.growth-chart {
  position: absolute; bottom: -25px; right: -20px;
  width: 180px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}
.growth-chart:hover { transform: scale(1.05); }

/* ===========================
   CTA Section
=========================== */
.cta-section {
  background-color: var(--primary-color);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}
.cta-section h2 { font-size: 2rem; font-weight: 600; }
.cta-section p { font-size: 1rem; color: rgba(255,255,255,0.85); }

/* ===========================
   Pricing Section
=========================== */
.pricing-section {
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}
.price-card {
  background-color: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 12px;
  padding: 35px 25px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  display: flex; flex-direction: column; justify-content: space-between;
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: #68bc46;
  box-shadow: 0 6px 20px rgba(0,86,149,0.15);
}
.price-card:hover .btn {
    background-color: #68bc46 !important;
    border-color: #68bc46 !important;
    color: #fff !important;
  }
.featured {
  border: 2px solid var(--accent-color);
  position: relative;
}
.badge-popular {
  position: absolute; top: -12px; right: 20px;
  background: var(--accent-color);
  color: #fff;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 20px;
}
.price-card ul { padding-left: 0; }
.price-card ul li { margin-bottom: 10px; font-size: 0.95rem; }

/* ===========================
   FAQ Section
=========================== */
.faq-section { background: linear-gradient(to bottom, #ffffff 0%, #f9f9f9 100%); }
.accordion-button {
  font-weight: 600;
  color: var(--primary-color);
  background-color: #fff;
  border: none;
  transition: all 0.3s ease;
}
.accordion-button:not(.collapsed) {
  background-color: rgba(0,86,149,0.08);
  color: var(--primary-color);
  box-shadow: none;
}
.accordion-button:focus {
  box-shadow: 0 0 0 0.15rem rgba(104,188,70,0.25);
}
.accordion-body { color: #555; line-height: 1.6; }
.accordion-item {
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 8px;
  overflow: hidden;
}

/* ===========================
   Contact Section
=========================== */
.contact-section { background: linear-gradient(to bottom, #ffffff 0%, #f9f9f9 100%); }
.contact-info p { font-size: 1rem; margin-bottom: 10px; }
.contact-info i { font-size: 1rem; }
.social-icons a {
  color: var(--primary-color);
  font-size: 1.2rem;
  transition: color 0.3s ease;
}
.social-icons a:hover { color: var(--accent-color); }
.contact-form {
  background-color: #fff;
  border: 1px solid rgba(0,0,0,0.05);
}
.form-control {
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 10px 14px;
  transition: border-color 0.3s ease;
}
.form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.15rem rgba(104,188,70,0.25);
}
.inline-logo {
  height: 36px;
  width: auto;
  vertical-align: middle;
  margin: 0 4px;
}

/* ===========================
   Footer
=========================== */
.footer-section {
  background-color: var(--primary-color);
  color: #fff;
  font-size: 0.95rem;
}
.footer-section h6 { font-size: 1rem; }
.footer-links li { margin-bottom: 6px; }
.footer-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-links a:hover { color: var(--accent-color); }
.footer-divider { border-color: rgba(255,255,255,0.1); }
.social-icons a { color: rgba(255,255,255,0.9); font-size: 1.1rem; transition: color 0.3s ease; }
.social-icons a:hover { color: var(--accent-color); }

/* Demo Modal */

.bg-primary-color {
    background-color: #00447a !important;
  }
  .btn-accent {
    background-color: #68bc46;
    border: none;
    color: #fff;
    transition: all 0.3s ease;
  }
  .btn-accent:hover {
    background-color: #56a33a;
  }
  .modal-content {
    border-radius: 16px;
  }

  /* Hero Image animation */

    /* Floating animation */
  .floating {
    animation: floatAnimation 6s ease-in-out infinite;
  }

  @keyframes floatAnimation {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-15px);
    }
    100% {
      transform: translateY(0px);
    }
  }

  /* Optional: add slight shadow breathing for depth */
  .hero-img img {
    transition: box-shadow 0.5s ease;
    animation: shadowPulse 6s ease-in-out infinite;
  }

  @keyframes shadowPulse {
    0%, 100% {
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    }
    50% {
      box-shadow: 0 16px 35px rgba(0, 0, 0, 0.35);
    }
  }

  /* Growth Chart animation */

  /* Smooth floating animation for growth chart */
  .growth-chart {
    position: absolute;
 
    animation: floatUpDown 5s ease-in-out infinite;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.2));
  }

  @keyframes floatUpDown {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-12px);
    }
    100% {
      transform: translateY(0);
    }
  }

  /* Optional subtle scale pulse for extra depth */
  .growth-chart:hover {
    animation: floatUpDown 5s ease-in-out infinite, pulseScale 4s ease-in-out infinite;
  }

  @keyframes pulseScale {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.03);
    }
  }




  /* Zoom-in animation (runs once) */
  .zoom-in-once {
    animation: zoomInOnce 1.2s ease-out forwards;
    transform: scale(0.8);
    opacity: 0;
  }

  @keyframes zoomInOnce {
    0% {
      transform: scale(0.8);
      opacity: 0;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

 /* Go to Top Button */
  #btnGoTop {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #fbfbfb; /* primary color */
    color: #005695;
    border: none;
    outline: none;
    font-size: 1.5rem;
    display: none;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
  }

  #btnGoTop:hover {
    background-color: #68bc46; /* accent color */
    color:#fff;
    transform: translateY(-3px);
  }

 @media (max-width: 992px)  {
    .dashboard-img-wrapper img {
    width: 100%;
    max-width: 900px;
    height: 500px;
    border-radius: 16px;
    transition: opacity 0.5s ease, transform 0.5s ease;
}
  }

 @media (max-width: 992px)  {

 
    .navbar {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
}
  
 
  .image-w-h{ width:80px; height: auto;}  