body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #14151a;
  color: #ffffff;
}

header {
  background: #20232a;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  color: #fff;
  margin: 0 12px;
  text-decoration: none;
  font-weight: 500;
}

.hero {
  position: relative;
  height: 100vh;
  background: #14151a;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 0 40px;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}

.hero-text {
  max-width: 600px;
}

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.3;
  animation: fadeInUp 1s ease forwards;
}

.hero-text p {
  font-size: 1.4rem;
  margin-bottom: 30px;
  animation: fadeInUp 1.2s ease forwards;
}

.hero-icon {
  font-size: 120px;
  color: #3feee6;
  animation: float 3s ease-in-out infinite;
}

.cta-buttons button {
  background: #3feee6;
  color: #14151a;
  border: none;
  padding: 12px 24px;
  margin-right: 12px;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.cta-buttons button:hover {
  background: #23d8c4;
}

@keyframes fadeInUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.animate-text {
  animation: fadeInUp 1.2s ease forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cta-buttons button {
  background: #3feee6;
  color: #14151a;
  border: none;
  padding: 12px 24px;
  margin: 10px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.cta-buttons button:hover {
  background: #23d8c4;
}

.section {
  padding: 60px 20px;
  text-align: center;
  max-width: 1200px;
  margin: auto;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.card {
  background: #1d1f25;
  padding: 25px;
  border-radius: 10px;
  width: 260px;
  transition: 0.3s;
  box-shadow: 0 0 0 transparent;
  text-align: center;
}

.card i {
  font-size: 28px;
  color: #3feee6;
  margin-bottom: 10px;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 255, 255, 0.2);
}
.highlight-features {
  background: #181a1f;
  padding: 80px 20px;
  text-align: center;
}
.feature-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.feature-item {
  background: #1f232b;
  padding: 40px;
  border-radius: 10px;
  width: 300px;
  color: #fff;
  box-shadow: 0 0 20px rgba(0,255,255,0.05);
  transition: transform 0.3s;
}
.feature-item:hover {
  transform: translateY(-10px);
}
.feature-item i {
  font-size: 40px;
  color: #3feee6;
  margin-bottom: 15px;
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
.fade-in-left { animation: fadeInLeft 1s ease forwards; }
.fade-in-up { animation: fadeInUp 1s ease forwards; }
.fade-in-right { animation: fadeInRight 1s ease forwards; }

.testimonials {
  background: #181a1f;
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}

.testimonial-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background: #1d1f25;
  border-radius: 12px;
  padding: 30px;
  max-width: 320px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 255, 255, 0.05);
  text-align: left;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.quote-icon {
  font-size: 24px;
  color: #3feee6;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 16px;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user strong {
  color: #fff;
  font-size: 16px;
}

.testimonial-user span {
  color: #888;
  font-size: 14px;
}

.faq-section {
  background: #181a1f;
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
  color: #fff;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 40px;
  text-align: center;
}

.faq-item {
  border-bottom: 1px solid #2c2f36;
  padding: 20px 0;
}

.faq-question {
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: #e0e0e0;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #3feee6;
}

.faq-question .icon {
  font-size: 1.5rem;
  color: #3feee6;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  padding-left: 5px;
}

.faq-answer.open {
  max-height: 300px;
  opacity: 1;
  padding-top: 10px;
}

.faq-answer p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.6;
}

.disclaimer-section {
  background-color: #181a1f;
  padding: 80px 20px;
  text-align: center;
  color: #cccccc;
  font-family: 'Inter', sans-serif;
}

.disclaimer-container {
  max-width: 900px;
  margin: auto;
}

.disclaimer-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
}

.disclaimer-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: #bbbbbb;
  margin-bottom: 15px;
}


.contact-us-section {
  background-color: #181a1f;
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
  color: #fff;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.contact-form-left,
.contact-info-right {
  flex: 1;
  min-width: 280px;
}

.contact-form-left h3,
.contact-info-right h3 {
  color: #3feee6;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #2c2f36;
  background-color: #1d1f25;
  color: #fff;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form textarea {
  height: 120px;
  resize: vertical;
}

.contact-form button {
  background-color: #3feee6;
  color: #14151a;
  border: none;
  padding: 12px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #23d8c4;
}

.contact-info-right p {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.contact-info-right strong {
  color: #3feee6;
  font-weight: 600;
  display: inline-block;
  margin-top: 15px;
}

.call-button {
  display: inline-block;
  background-color: #3feee6;
  color: #14151a;
  text-align: center;
  text-decoration: none;
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 6px;
  margin-top: 10px;
  transition: background 0.3s ease;
}

.call-button:hover {
  background-color: #23d8c4;
}


footer {
  background-color: #20232a;
  padding: 20px 40px;
  text-align: center;
  color: #bbbbbb;
  font-size: 0.95rem;
  border-top: 1px solid #2c2f36;
}

.footer-links {
  background-color: #181a1f;
  text-align: center;
  padding: 15px 10px;
  border-top: 1px solid #2c2f36;
}

.footer-links a {
  color: #3feee6;
  text-decoration: none;
  margin: 0 12px;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #23d8c4;
}
