* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #f5f7fa;
}

/* Navbar */
.navbar {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo a {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  text-decoration: none;
}

/* Menu */
.menu {
  display: flex;
  gap: 28px;
  align-items: center;
}

.menu a {
  text-decoration: none;
  color: #374151;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #2563eb;
}

/* CTA Button */
.menu .btn {
  padding: 10px 18px;
  background: #2563eb;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
}

.menu .btn:hover {
  background: #1e40af;
}

/* Mobile Menu Toggle */
#menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-icon span {
  background: #111827;
  height: 3px;
  width: 25px;
  margin: 4px 0;
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .menu {
    position: absolute;
    top: 70px;
    right: 20px;
    background: #ffffff;
    flex-direction: column;
    width: 220px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    display: none;
  }

  #menu-toggle:checked + .menu-icon + .menu {
    display: flex;
  }

  .menu-icon {
    display: flex;
  }
}

/*hero banner*/
.hero {
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
  padding: 80px 20px;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Content */
.hero-tag {
  display: inline-block;
  background: #e0e7ff;
  color: #1e40af;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: #2563eb;
}

.hero-content p {
  font-size: 18px;
  color: #374151;
  margin-bottom: 30px;
  max-width: 520px;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.btn-primary {
  background: #2563eb;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary:hover {
  background: #1e40af;
}

.btn-secondary {
  border: 2px solid #2563eb;
  color: #2563eb;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.btn-secondary:hover {
  background: #2563eb;
  color: #fff;
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 30px;
}

.hero-stats div {
  text-align: left;
}

.hero-stats strong {
  font-size: 22px;
  color: #111827;
}

.hero-stats span {
  display: block;
  font-size: 14px;
  color: #6b7280;
}

/* Image */
.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content p {
    margin: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }
}

/*about us*/
.about {
  padding: 90px 20px;
  background: #ffffff;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Image */
.about-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

/* Content */
.section-tag {
  display: inline-block;
  background: #e0e7ff;
  color: #1e40af;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.about-content h2 {
  font-size: 40px;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-content h2 span {
  color: #2563eb;
}

.about-content p {
  font-size: 17px;
  color: #374151;
  margin-bottom: 25px;
  max-width: 520px;
}

/* List */
.about-list {
  list-style: none;
  margin-bottom: 30px;
}

.about-list li {
  font-size: 16px;
  color: #374151;
  margin-bottom: 12px;
}

/* Button */
.about-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #2563eb;
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.about-btn:hover {
  background: #1e40af;
}

/* Responsive */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-content p {
    margin: auto;
  }

  .about-list {
    display: inline-block;
    text-align: left;
  }
}

/*services*/
.services {
  padding: 100px 20px;
  background: #f8fafc;
}

.services-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header h2 {
  font-size: 40px;
  color: #111827;
  margin-bottom: 15px;
}

.services-header h2 span {
  color: #2563eb;
}

.services-header p {
  font-size: 17px;
  color: #4b5563;
  max-width: 700px;
  margin: auto;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.service-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Icon */
.service-icon {
  width: 56px;
  height: 56px;
  background: #e0e7ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: #2563eb;
}


/* Text */
.service-card h3 {
  font-size: 20px;
  color: #111827;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-header h2 {
    font-size: 32px;
  }
}
.read-more
{
    text-decoration: none;
}

/*process*/
.value {
  padding: 110px 20px;
  background: #ffffff;
}

.value-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

/* Content */
.value-content h2 {
  font-size: 42px;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 20px;
}

.value-content h2 span {
  color: #2563eb;
}

.value-intro {
  font-size: 18px;
  color: #374151;
  margin-bottom: 35px;
  max-width: 560px;
}

/* Points */
.value-points {
  margin-bottom: 40px;
}

.value-point {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}

.value-point svg {
  width: 22px;
  height: 22px;
  fill: #2563eb;
  margin-top: 4px;
}

.value-point h4 {
  font-size: 18px;
  color: #111827;
  margin-bottom: 4px;
}

.value-point p {
  font-size: 15px;
  color: #4b5563;
}

/* Button */
.value-btn {
  display: inline-block;
  padding: 15px 34px;
  background: #2563eb;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

.value-btn:hover {
  background: #1e40af;
}

/* Visual */
.value-visual img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}

/* Responsive */
@media (max-width: 900px) {
  .value-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .value-intro {
    margin: auto;
  }

  .value-point {
    justify-content: center;
  }
}
/*testimonial*/

.testimonials {
  padding: 110px 20px;
  background: #f8fafc;
}

.testimonials-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* Header */
.testimonials-header h2 {
  font-size: 40px;
  color: #111827;
  margin-bottom: 15px;
}

.testimonials-header h2 span {
  color: #2563eb;
}

.testimonials-header p {
  color: #4b5563;
  font-size: 17px;
  max-width: 650px;
  margin: auto;
}

/* Slider */
.testimonial-slider {
  overflow: hidden;
  margin-top: 60px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

/* Testimonial */

.testimonials {
  padding: 110px 20px;
  background: #f8fafc;
}

.testimonials-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* Header */
.testimonials-header h2 {
  font-size: 40px;
  color: #111827;
  margin-bottom: 12px;
}

.testimonials-header h2 span {
  color: #2563eb;
}

.testimonials-header p {
  font-size: 17px;
  color: #4b5563;
  max-width: 650px;
  margin: auto;
}

/* Slider */
.testimonial-slider {
  overflow: hidden;
  margin-top: 60px;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

/* Card */
.testimonial-card {
  min-width: 360px;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  text-align: left;
}

/* Text */
.testimonial-text {
  font-size: 17px;
  color: #111827;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* Profile */
.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-profile img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.testimonial-profile strong {
  display: block;
  font-size: 16px;
  color: #111827;
}

.testimonial-profile span {
  font-size: 14px;
  color: #6b7280;
}

/* Controls */
.testimonial-controls {
  margin-top: 35px;
}

.testimonial-controls button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: #e0e7ff;
  color: #2563eb;
  font-size: 26px;
  cursor: pointer;
  margin: 0 6px;
}

.testimonial-controls button:hover {
  background: #2563eb;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 900px) {
  .testimonial-card {
    min-width: 300px;
  }
}

@media (max-width: 600px) {
  .testimonials-header h2 {
    font-size: 32px;
  }
}

/*faqs*/
.faqs {
  padding: 100px 20px;
  background: #ffffff;
}

.faqs-container {
  max-width: 900px;
  margin: auto;
}

.faqs-header {
  text-align: center;
  margin-bottom: 60px;
}

.faqs-header h2 {
  font-size: 40px;
  color: #111827;
  margin-bottom: 12px;
}

.faqs-header h2 span {
  color: #2563eb;
}

.faqs-header p {
  font-size: 17px;
  color: #4b5563;
  max-width: 680px;
  margin: auto;
}

.faq-list {
  border-top: 1px solid #e5e7eb;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-question {
  width: 100%;
  padding: 22px 10px;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question:hover {
  color: #2563eb;
}

.icon {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 10px 22px;
  font-size: 16px;
  color: #4b5563;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 220px;
}

.faq-item.active .icon {
  transform: rotate(45deg);
}

/*footer*/

.site-footer {
  background: #0f172a;
  color: #cbd5f5;
  padding: 80px 20px 30px;
  font-size: 15px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-logo {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-text {
  line-height: 1.7;
  color: #94a3b8;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 18px;
  color: #ffffff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #94a3b8;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: #38bdf8;
}

/* Contact List */
.contact-list li {
  display: flex;
  gap: 12px;
  align-items: center;
}

.contact-list svg {
  width: 18px;
  height: 18px;
  fill: #38bdf8;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid #1e293b;
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #94a3b8;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

/*about-page*/
.about-hero {
  position: relative;
  width: 100%;
  min-height: 340px;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Decorative blur shape */
.about-hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255,255,255,0.15), transparent);
  top: -120px;
  right: -120px;
  filter: blur(20px);
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.about-hero-content {
  position: relative;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  color: #fff;
  animation: fadeUp 1s ease forwards;
}

/* Breadcrumb */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 18px;
  border-radius: 30px;
  backdrop-filter: blur(6px);
  font-size: 14px;
  margin-bottom: 18px;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
}

.breadcrumb a:hover {
  opacity: 1;
}

.breadcrumb span {
  color: #ddd;
}

/* Title */
.about-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

/* Subtitle */
.about-hero p {
  font-size: 18px;
  color: #e0e0e0;
  line-height: 1.6;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero {
    min-height: 280px;
  }

  .about-hero h1 {
    font-size: 34px;
  }

  .about-hero p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .breadcrumb {
    font-size: 13px;
    padding: 6px 14px;
  }
}

.aurora-about-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f7f9fc, #eef2f7);
  font-family: 'Segoe UI', sans-serif;
}

.aurora-about-wrapper {
  max-width: 1200px;
  margin: auto;
}

.aurora-about-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.aurora-about-tag {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.aurora-about-header h2 {
  font-size: 36px;
  color: #1f2933;
  margin-bottom: 15px;
}

.aurora-about-header p {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.6;
}

.aurora-about-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.aurora-about-text h3 {
  font-size: 22px;
  color: #111827;
  margin-bottom: 10px;
}

.aurora-about-text p {
  color: #374151;
  line-height: 1.7;
  margin-bottom: 25px;
}

.aurora-about-text ul {
  list-style: none;
  padding: 0;
}

.aurora-about-text ul li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #1f2933;
}

.aurora-about-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  display: grid;
  gap: 25px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.aurora-about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.aurora-about-stat {
  text-align: center;
}

.aurora-about-stat h4 {
  font-size: 32px;
  color: #2563eb;
  margin-bottom: 6px;
}

.aurora-about-stat span {
  font-size: 14px;
  color: #6b7280;
}

/* Responsive */
@media (max-width: 900px) {
  .aurora-about-content {
    grid-template-columns: 1fr;
  }

  .aurora-about-header h2 {
    font-size: 30px;
  }
}

.zen-contact-section {
  padding: 90px 20px;
  background: linear-gradient(135deg, #f9fafb, #eef2f7);
  font-family: 'Segoe UI', sans-serif;
}

.zen-contact-wrapper {
  max-width: 1100px;
  margin: auto;
}

.zen-contact-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
}

.zen-contact-tag {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 14px;
}

.zen-contact-header h2 {
  font-size: 36px;
  color: #111827;
  margin-bottom: 15px;
}

.zen-contact-header p {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.6;
}

.zen-contact-container {
  display: flex;
  justify-content: center;
}

.zen-contact-form {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 650px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.zen-form-row {
  display: flex;
  gap: 20px;
}

.zen-form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  width: 100%;
}

.zen-form-group label {
  font-size: 14px;
  margin-bottom: 6px;
  color: #374151;
}

.zen-form-group input,
.zen-form-group textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 15px;
  outline: none;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.zen-form-group input:focus,
.zen-form-group textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.zen-contact-btn {
  background: #2563eb;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s ease, transform 0.2s ease;
}

.zen-contact-btn:hover {
  background: #1e40af;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .zen-form-row {
    flex-direction: column;
  }

  .zen-contact-header h2 {
    font-size: 30px;
  }

  .zen-contact-form {
    padding: 30px 25px;
  }
}

.orbit-terms-section {
  padding: 90px 20px;
  background: #f9fafb;
  font-family: 'Segoe UI', sans-serif;
  color: #1f2933;
}

.orbit-terms-wrapper {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  border-radius: 22px;
  padding: 50px;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.08);
}

.orbit-terms-header {
  text-align: center;
  margin-bottom: 50px;
}

.orbit-terms-header h1 {
  font-size: 38px;
  margin-bottom: 15px;
}

.orbit-terms-header p {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.7;
}

.orbit-terms-content {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.orbit-terms-block h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #2563eb;
}

.orbit-terms-block p {
  font-size: 15px;
  line-height: 1.8;
  color: #374151;
}

.orbit-terms-block ul {
  padding-left: 20px;
}

.orbit-terms-block ul li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #374151;
}

.orbit-terms-footer {
  margin-top: 50px;
  text-align: center;
  font-size: 14px;
  color: #6b7280;
}

/* Responsive */
@media (max-width: 768px) {
  .orbit-terms-wrapper {
    padding: 35px 25px;
  }

  .orbit-terms-header h1 {
    font-size: 30px;
  }
}

.nova-service-section {
  padding: 90px 20px;
  background: #f8fafc;
  font-family: 'Segoe UI', sans-serif;
  color: #1f2933;
}

.nova-service-wrapper {
  max-width: 1200px;
  margin: auto;
}

.nova-service-hero {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.nova-service-badge {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 15px;
}

.nova-service-hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.nova-service-hero p {
  font-size: 17px;
  color: #4b5563;
  line-height: 1.7;
}

.nova-service-intro {
  max-width: 900px;
  margin: 0 auto 60px;
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
}

.nova-service-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.nova-service-content h2 {
  font-size: 24px;
  color: #2563eb;
  margin: 35px 0 12px;
}

.nova-service-content p {
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #374151;
}

.nova-service-list {
  padding-left: 20px;
  margin-bottom: 25px;
}

.nova-service-list li {
  margin-bottom: 8px;
  font-size: 15px;
}

.nova-service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.nova-service-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.nova-service-card h3 {
  margin-bottom: 15px;
  font-size: 20px;
}

.nova-service-card ul {
  padding-left: 18px;
}

.nova-service-card ul li {
  margin-bottom: 8px;
  font-size: 14.5px;
}

.nova-service-cta {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #fff;
  border-radius: 18px;
  padding: 30px;
  text-align: center;
}

.nova-service-cta h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.nova-service-cta p {
  font-size: 15px;
  margin-bottom: 20px;
}

.nova-service-btn {
  display: inline-block;
  background: #ffffff;
  color: #1e40af;
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.nova-service-btn:hover {
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 900px) {
  .nova-service-grid {
    grid-template-columns: 1fr;
  }

  .nova-service-hero h1 {
    font-size: 34px;
  }
}

.nova-faqx-section {
  background: linear-gradient(180deg, #f9fbff, #ffffff);
  padding: 80px 20px;
}

.nova-faqx-container {
  max-width: 900px;
  margin: auto;
}

.nova-faqx-header {
  text-align: center;
  margin-bottom: 50px;
}

.nova-faqx-tag {
  display: inline-block;
  background: #e6f0ff;
  color: #1a4fd8;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.nova-faqx-header h2 {
  font-size: 34px;
  margin-bottom: 12px;
  color: #1f2937;
}

.nova-faqx-header p {
  font-size: 16px;
  color: #6b7280;
  max-width: 650px;
  margin: auto;
}

.nova-faqx-list {
  display: grid;
  gap: 16px;
}

.nova-faqx-item {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 22px;
  border: 1px solid #e5e7eb;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.nova-faqx-item:hover {
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.nova-faqx-item summary {
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #111827;
}

.nova-faqx-item summary::-webkit-details-marker {
  display: none;
}

.nova-faqx-item summary::after {
  content: "+";
  font-size: 22px;
  color: #2563eb;
  transition: transform 0.3s ease;
}

.nova-faqx-item[open] summary::after {
  content: "−";
}

.nova-faqx-item p {
  margin-top: 12px;
  font-size: 15px;
  color: #4b5563;
  line-height: 1.7;
}

@media (max-width: 600px) {
  .nova-faqx-header h2 {
    font-size: 26px;
  }
}
