/* Typography */
body {
  font-family: 'Open Sans', sans-serif;
  color: #212529;
  background-color: #F8F9FA;
  line-height: 1.6;
  overflow-x: hidden;
}
html {
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #2C3E50;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}

/* Buttons */
.btn-primary {
  background-color: #1ABC9C;
  border: none;
}
.btn-primary:hover {
  background-color: #17A589;
}
.btn-outline-primary{
  color: #1ABC9C;
  border-color: #1ABC9C;
}
.btn-outline-primary:hover{
  color: #fff;
  border-color: #17A589;
  background-color: #17A589;
}

.btn-accent {
  background-color: #F39C12;
  color: #fff;
}
.btn-accent:hover {
  background-color: #E67E22;
}


/* NAVBAR STYLES */
.site-header {
  background-color: #fff;
  border-bottom: 1px solid #eaeaea;
  padding: 0.75rem 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.nav-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 40px;
  display: block;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  color: #212529;
  font-weight: 600;
  transition: color 0.2s ease;
  font-size: 1rem;
}

.main-nav a:hover {
  color: #1ABC9C;
}

.nav-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #212529;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 1rem 1.25rem;
  background-color: #fff;
  border-top: 1px solid #eee;
}

.mobile-nav a {
  padding: 0.75rem 0;
  font-weight: 600;
  color: #212529;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav.show {
  display: flex;
}

/* Responsive Nav */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
}



/* CTA Bar */
.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1050;
}
.sticky-cta .btn {
  padding: 12px 24px;
  font-weight: 600;
}

/* Section Padding */
.section {
  padding: 60px 0;
}

/* Cards */
.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.card-img-top {
  height: 220px;
  object-fit: cover;
  object-position: center;
}
.team-img {
  height: 200px;
  width: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  margin-top: 20px;
}


/* Icons */
.icon-box {
  font-size: 2rem;
  color: #1ABC9C;
  margin-bottom: 15px;
}

/* Testimonials */
.testimonial {
  background-color: #fff;
  border-left: 5px solid #1ABC9C;
  padding: 20px;
  border-radius: 10px;
}
.testimonial {
  transition: all 0.3s ease-in-out;
  border: 1px solid #e5e5e5;
}
.testimonial:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  transform: translateY(-5px);
}

.testimonial p {
  font-size: 1.125rem; /* ~18px */
  color: #333;
}

.testimonial h6 {
  font-weight: 600;
}


/* Final CTA Section */
.final-cta {
  background-color: #2C3E50;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}
.final-cta h2 {
  color: #fff;
}
.final-cta .btn {
  background-color: #F39C12;
  border: none;
}
.final-cta .btn:hover {
  background-color: #E67E22;
}
footer {
  padding-bottom: 280px;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  .section {
    padding: 40px 0;
  }
}

.bg-deep-blue {
  background-color: #0b2c3f;
  color: white;
}
.bg-deep-blue .btn-accent {
  background-color: #00b894;
  color: #fff;
  border: none;
}
.bg-deep-blue .btn-accent:hover {
  background-color: #009e7f;
}


.hidden {
  display: none !important;
}
.text-accent {
  color: #00b894; /* or your brand accent color */
}

.feature-icon{
      font-size: 2rem;
      color: #00b894;
      margin-bottom: 15px;
}

    .card-pricing {
      border-radius: 1rem;
      transition: all 0.3s ease;
    }
    .card-pricing:hover {
      transform: translateY(-5px);
      box-shadow: 0 0.75rem 1.5rem rgba(0,0,0,0.1);
    }
    .pricing-highlight {
      background-color: #198754;
      color: #fff;
    }
    .check-icon {
      color: #198754;
      margin-right: 6px;
    }
    .feature-list li {
      margin-bottom: 0.5rem;
    }
    
    .icon-check {
      color: #198754;
      margin-right: 8px;
    }
    .badge-discount {
      background-color: #ffc107;
      color: #000;
    }
    .secure-icon {
      font-size: 1.25rem;
      color: #0d6efd;
    }
    
  .optin-form {
    margin-top: 20px;
  }
  .optin-form input[type="text"] {
    padding: 10px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  .optin-form input[type="email"] {
    padding: 10px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  .optin-form button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    margin-left: 10px;
    cursor: pointer;
  }
  .form-message {
    margin-top: 15px;
    font-size: 1em;
    padding: 10px;
    border-radius: 5px;
  }
  .form-message.success {
    background-color: #e6f9ec;
    color: #2d7d46;
    border: 1px solid #a1e2b3;
  }
  .form-message.error {
    background-color: #fce8e6;
    color: #b81c1c;
    border: 1px solid #e0a1a1;
  }