/* Auth Card Styles for Login/Signup */
.auth-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(44,62,80,0.13), 0 1.5px 6px rgba(44,62,80,0.07);
  transition: box-shadow 0.3s, transform 0.3s;
  margin-top: 30px;
  margin-bottom: 30px;
}
.auth-card:hover {
  box-shadow: 0 12px 40px rgba(44,62,80,0.18), 0 2px 8px rgba(44,62,80,0.10);
  transform: translateY(-2px) scale(1.01);
}
#auth .nav-tabs .nav-link.active {
  background: #f8e71c;
  color: #333;
  border-radius: 8px 8px 0 0;
  font-weight: 600;
}
#auth .nav-tabs .nav-link {
  border: none;
  color: #37517e;
  font-weight: 500;
}
#auth .form-control {
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  box-shadow: none;
  font-size: 1.05em;
}
#auth .form-control:focus {
  border-color: #f8e71c;
  box-shadow: 0 0 0 2px #f8e71c33;
}
#auth .btn-primary {
  background: #37517e;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1em;
  box-shadow: 0 2px 8px rgba(44,62,80,0.08);
  transition: background 0.2s, box-shadow 0.2s;
}
#auth .btn-primary:hover {
  background: #2c3e50;
  box-shadow: 0 4px 16px rgba(44,62,80,0.13);
}
#auth .btn {
  border-radius: 8px;
}
#auth .text-end a {
  color: #37517e;
  text-decoration: none;
  font-size: 0.98em;
}
#auth .text-end a:hover {
  text-decoration: underline;
  color: #f8e71c;
}

  
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Arial', sans-serif;
      background-color: #ffffff;
      color: #333;
      line-height: 1.6;
    }
    
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }
    
    .pricing-header {
      text-align: center;
      margin-bottom: 40px;
    }
    
    .pricing-header h1 {
      font-size: 2.5rem;
      color: #333;
      margin-bottom: 15px;
      font-weight: 600;
    }
    
    .pricing-header p {
      font-size: 1.1rem;
      color: #666;
    }
    
    .pricing-cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }
    
    .pricing-card {
      flex: 1;
      min-width: 250px;
      background-color: white;
      border-radius: 10px;
      box-shadow: 0 2px 15px rgba(0,0,0,0.1);
      padding: 30px;
      position: relative;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease;
    }
    
    .pricing-card.popular {
      border: 2px solid #f8e71c;
      z-index: 1;
    }
    
    @media (min-width: 768px) {
      .pricing-card.popular {
        transform: scale(1.02);
      }
    }
    
    .popular-badge {
      position: absolute;
      top: -10px;
      right: 20px;
      background-color: #f8e71c;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    .popular-badge span {
      font-size: 20px;
      color: #333;
    }
    
    .plan-header {
      margin-bottom: 20px;
    }
    
    .plan-header h2 {
      font-size: 1.4rem;
      color: #333;
      margin: 0;
      font-weight: 600;
    }
    
    .plan-header h2 span {
      font-weight: 700;
    }
    
    .plan-header p {
      font-size: 1rem;
      color: #777;
      margin-top: 5px;
    }
    
    .free-plan h2 span {
      color: #4CAF50;
    }
    
    .pro-plan h2 span {
      color: #f8e71c;
    }
    
    .price {
      margin: 20px 0 30px;
    }
    
    .price-amount {
      font-size: 3rem;
      font-weight: 700;
      color: #333;
      line-height: 1;
    }
    
    .price-period {
      font-size: 1rem;
      color: #777;
      margin-left: 5px;
    }
    
    .annual-note {
      font-size: 0.9rem;
      color: #777;
      margin-bottom: 20px;
    }
    
    .features {
      flex-grow: 1;
      margin-bottom: 20px;
    }
    
    .feature {
      margin-bottom: 15px;
      display: flex;
      align-items: center;
    }
    
    .feature-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      margin-right: 10px;
      color: white;
      background-color: #4CAF50;
      font-size: 12px;
    }
    
    .feature-text {
      font-size: 1rem;
      color: #555;
    }
    
    .cta-button {
      display: block;
      text-align: center;
      background-color: #f8e71c;
      color: #333;
      text-decoration: none;
      padding: 12px;
      border-radius: 6px;
      font-weight: 600;
      margin-top: 20px;
      font-size: 1rem;
      transition: all 0.3s ease;
    }
    
    .cta-button:hover {
      background-color: #e5d400;
      transform: translateY(-2px);
    }
    
    @media (max-width: 768px) {
      .pricing-card {
        min-width: 100%;
        margin-bottom: 20px;
      }
      
      .pricing-header h1 {
        font-size: 2rem;
      }
      
      .price-amount {
        font-size: 2.5rem;
      }
    }

    /* Global styles */
    body {
      font-family: 'Arial', sans-serif;
      overflow-x: hidden;
    }

    /* Navbar styles */
    .navbar-brand {
      display: flex;
      align-items: center;
    }

    /* Hero section 
    background-color: #37517e;*/

    #hero {
      padding: 80px 0 40px;
      color: #fff;
      background: linear-gradient(135deg, #4b6cb7, #182848);;
    }

    .hero-img {
      margin-top: 20px;
    }

    .iframe-container {
      position: relative;
      overflow: hidden;
      padding-top: 56.25%; 
      width: 100%;
    }

    .iframe-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
      border-radius: 8px;
    }

    .btn-get-started {
      display: inline-block;
      background-color: #f8e71c;
      color: #333;
      padding: 10px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      margin-top: 20px;
      transition: all 0.3s ease;
    }

    .btn-get-started:hover {
      background-color: #e6d618;
      transform: translateY(-2px);
    }

    /* Feature sections */
    .feature-card {
      height: 100%;
      transition: transform 0.3s ease;
      border-radius: 10px;
    }

    .feature-card:hover {
      transform: translateY(-5px);
    }

    /* Image comparison section */
    .comparison-image {
      width: 100%;
      height: 300px;
      object-fit: cover;
      border-radius: 8px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }

    /* Pricing cards */
    .pricing-card {
      height: 100%;
      transition: all 0.3s ease;
      border-radius: 10px;
    }

    .pricing-card:hover {
      transform: translateY(-5px);
    }

    .popular-plan {
      transform: scale(1.02);
      border: 2px solid #f8e71c;
      z-index: 2;
    }

    .popular-badge {
      position: absolute;
      top: -10px;
      right: 20px;
      background-color: #f8e71c;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    /* FAQ section */
    .faq-item {
      border-bottom: 1px solid #e0e0e0;
    }

    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      padding: 0 20px;
    }

    .faq-answer.active {
      max-height: 300px;
      padding: 0 20px 20px;
    }

    .faq-toggle {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background-color: #eee;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: transform 0.3s ease;
    }

    .faq-question.active .faq-toggle {
      transform: rotate(180deg);
    }

    /* Authentication section */
    #auth {
      background-color: #f8f9fa;
    }

    /* Responsive adjustments */
    @media (max-width: 991px) {
      .hero-content {
        text-align: center;
      }
      
      .hero-buttons {
        justify-content: center !important;
      }
      
      .btn-get-started {
        margin: 10px;
      }
      
      .pricing-cards-container {
        gap: 20px;
      }
      
      .popular-plan {
        transform: none;
        margin-top: 20px;
        margin-bottom: 20px;
      }
    }

    @media (max-width: 768px) {
      #hero {
        padding-top: 100px;
      }
      
      h1 {
        font-size: 2rem;
      }
      
      h2 {
        font-size: 1.5rem;
      }
      
      .comparison-image {
        height: 200px;
        margin-bottom: 20px;
      }
      
      .steps-container {
        flex-direction: column;
      }
      
      .step-number {
        margin-bottom: 10px;
      }
    }

    @media (max-width: 576px) {
      .container {
        padding-left: 20px;
        padding-right: 20px;
      }
      
      .platform-logo {
        display: none;
      }
      
      .pricing-card {
        margin-bottom: 20px;
      }
    }
  
    /* Footer styles */
    /*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #37423b;
  font-size: 14px;
  background: #eef0ef;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #f9faf9;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #0a0909;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #3480eb;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  width: 50%;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #0a0909;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  text-decoration: none;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #3480eb
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  text-align: left;
  border: 1px solid #e0e5e2;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #3480eb;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #3480eb;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
}

#footer .credits a {
  color: #3480eb;
  transition: 0.3s;
}

#footer .credits a:hover {
  color: #3480eb;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #3480eb;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #3480eb;
  color: #fff;
  text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {

  #footer .footer-top .footer-contact,
  #footer .footer-top .footer-links,
  #footer .footer-top .footer-newsletter {
    margin-bottom: 20px;
  }

}
