* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", serif;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  background: #1E1E1E;
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  z-index: 999;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo {
  height: 40px;
}
.header .logo img {
  height: 40px;
}
.header .nav {
  display: flex;
  gap: 2rem;
}
.header .nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
}
.header .nav-link:hover {
  color: #2B7FFF;
}

main {
  padding-top: 65px;
}

.hero {
  padding: 4rem 0;
}
.hero-title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  max-width: 1000px;
  line-height: 1.3;
}
.hero-title .highlight {
  color: #2B7FFF;
}
.hero-subtitle {
  color: #666;
  margin-bottom: 2rem;
}

.btn {
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}
.btn-primary {
  background: #2B7FFF;
  color: #fff;
}
.btn-primary:hover {
  background: rgb(0, 97.8679245283, 247);
}
.btn-diabled {
  opacity: 0.5;
  pointer-events: none;
}

.video-demo {
  padding: 4rem 0;
  background: #f9f9f9;
}
.video-demo .video-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.video-demo .video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.video-demo .video-wrapper .video-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-demo .video-wrapper .video-area video, .video-demo .video-wrapper .video-area iframe {
  width: 100%;
  height: 100%;
}
.video-demo .video-text h2 {
  margin-bottom: 1.5rem;
}
.video-demo .video-text p {
  margin-bottom: 2rem;
}

.faq {
  padding: 4rem 0;
}
.faq h2 {
  margin-bottom: 3rem;
}
.faq-item {
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.faq-question {
  width: 100%;
  padding: 1rem;
  text-align: left;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
}
.faq-question .icon {
  transition: transform 0.3s ease;
}
.faq-question.active .icon {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 1rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-answer.active {
  padding: 1rem;
  max-height: 500px;
}

.banner {
  background: #2B7FFF;
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}
.banner h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-banner {
  background: #fff;
}
.hero-banner .hero-banner {
  background: #2B7FFF;
  padding: 64px 40px;
  border-radius: 0 40px 0 40px;
  text-align: left;
}

.pricing {
  padding: 4rem 0;
  text-align: center;
}
.pricing h2 {
  text-align: left;
}
.pricing-card {
  background: #E85D1F;
  color: #fff;
  padding: 2rem;
  border-radius: 0 40px 0 40px;
  max-width: 300px;
  margin: 0 auto;
}
.pricing-card h3 {
  margin-bottom: 1rem;
}
.pricing-card .price {
  margin-bottom: 2rem;
}
.pricing-card .price .amount {
  font-size: 2.5rem;
  font-weight: bold;
}
.pricing-card .features {
  list-style: none;
  margin-bottom: 2rem;
}
.pricing-card .features li {
  margin-bottom: 0.5rem;
}

.contact {
  padding: 4rem 0;
  background: #f9f9f9;
}
.contact h2, .contact h3 {
  margin-bottom: 2rem;
}
.contact .contact-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.contact-form .form-group {
  position: relative;
}
.contact-form .form-group.full-width {
  grid-column: 1/-1;
}
.contact-form .form-group input, .contact-form .form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
}
.contact-form .form-group input:focus, .contact-form .form-group textarea:focus {
  outline: none;
  border-color: #2B7FFF;
}
.contact-form .form-group input:focus + label, .contact-form .form-group textarea:focus + label {
  color: #2B7FFF;
  transform: translateY(-1.5rem) scale(0.8);
}
.contact-form .form-group input:not(:placeholder-shown) + label, .contact-form .form-group textarea:not(:placeholder-shown) + label {
  transform: translateY(-1.5rem) scale(0.8);
}
.contact-form .form-group textarea {
  min-height: 150px;
  resize: vertical;
}
.contact-form .form-group label {
  position: absolute;
  left: 0.8rem;
  top: 0.8rem;
  background: #fff;
  padding: 0 0.4rem;
  transition: all 0.3s ease;
  pointer-events: none;
}

.footer {
  background: #1E1E1E;
  color: #fff;
  padding: 4rem 0;
}
.footer-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 4rem;
  align-items: start;
}
.footer-logo img {
  width: 150px;
}
.footer-links {
  display: grid;
  gap: 2rem;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
}
.footer-links a:hover {
  color: #2B7FFF;
}
.footer-links a:hover .social-icon {
  fill: #2B7FFF !important;
}
.footer-contact {
  display: grid;
  gap: 2rem;
}
.footer-contact a {
  color: #fff;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #2B7FFF;
}
.footer-contact .social-links {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}

@media (max-width: 768px) {
  .header .logo {
    height: 20px;
  }
  .header .logo img {
    height: 20px;
  }
  .video-content {
    grid-template-columns: 1fr !important;
  }
  .footer-content {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 2rem;
  }
  .footer-contact {
    text-align: center;
  }
  .footer-contact .social-links {
    justify-content: center;
  }
  .form-row {
    grid-template-columns: 1fr !important;
  }
  .hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    max-width: 1000px;
    line-height: 1.3;
  }
}

/* Modal styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  background-color: rgba(0, 0, 0, 0.5); /* Black background with transparency */
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  max-width: 400px;
  width: 80%;
}

.modal h2 {
  margin-bottom: 20px;
  color: #2b7fff;
}
.modal p {
  margin-bottom: 20px;
}

.modal button {
  background-color: #2b7fff;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.modal button:hover {
  background-color: darken(#2b7fff, 10%);
}


/*# sourceMappingURL=style.css.map */
