        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
          font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
          line-height: 1.6;
          color: #333;
          background: #f9f9f9;
        }

        a {
          text-decoration: none;
          color: inherit;
        }

       .site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo img {
  max-width: 50px;
  border-radius: 8px;
}

.logo span {
  font-size: 1.6rem;
  font-weight: 700;
}

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-menu ul li a {
  text-decoration: none;
  font-weight: 500;
  color: #333;
  padding: 8px 12px;
  transition: 0.3s;
  border-radius: 6px;
}

.nav-menu ul li a:hover {
  background: #007BFF;
  color: #fff;
}

.cta-btn {
  background: #ffdd57;
  color: #111 !important;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 700;
}


.cta-btn:hover {
  background: #ffc107;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #007BFF;
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-menu ul {
    position: fixed;
    top: 65px;
    right: -100%;
    width: 220px;
    background: #fff;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    display: none;
  }
  .nav-menu ul li{
    margin-bottom: 20px;
  }

  .nav-menu ul.active {
    right: 0;
    display: block;
  }

  .hamburger {
    display: flex;
  }
}

.hero {
  position: relative;
  background: url('../Images/bg-image.png') no-repeat center center / cover;
  min-height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  overflow: hidden;
}

/* Dark overlay for readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.65)
  );
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 40px 30px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  animation: fadeUp 0.8s ease;
}

/* Trust badge */
.hero-badge {
  display: inline-block;
  background: #000;
  color: #fff;
  font-size: 0.9rem;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.hero h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 28px;
  font-weight: 500;
  color: #333;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  border-radius: 12px;
  padding: 15px 36px;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-4px);
}

.btn-text {
  background: linear-gradient(135deg, #1e90ff, #0f70d4);
  box-shadow: 0 8px 20px rgba(30, 144, 255, 0.5);
}

.btn-video {
  background: linear-gradient(135deg, #ff4c4c, #cc3b3b);
  box-shadow: 0 8px 20px rgba(255, 76, 76, 0.5);
}

.agreement {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #222;
  user-select: none;
}

.agreement input {
  margin-right: 8px;
  transform: scale(1.2);
  cursor: pointer;
}

.agreement a {
  color: #e60000;
  font-weight: 700;
  text-decoration: underline;
}

.agreement a:hover {
  color: #000;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 40px 15px;
  }

  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 30px 18px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 1rem;
  }
}



        /* Container */
        .features-new {
          width: 90%;
          max-width: 1300px;
          margin: 40px auto;
          background: #f2f6fb;
          border-radius: 30px;
          padding: 50px 20px;

          display: flex;
          justify-content: space-between;
          align-items: flex-start;
          flex-wrap: wrap;
          gap: 35px;
          text-align: center;
        }

        /* Each Feature Card */
        .feature-item {
          flex: 1;
          min-width: 260px;
          padding: 10px;
        }

        /* Icons */
        .feature-icon {
          width: 65px;
          height: auto;
          margin-bottom: 15px;
        }

        /* Titles */
        .feature-item h2 {
          font-size: 28px;
          font-weight: 500;
          color: #0d1b4c;
          margin-bottom: 12px;
        }

        /* Paragraphs */
        .feature-item p {
          font-size: 16px;
          color: #333;
          line-height: 1.5;
          margin-bottom: 20px;
        }

        /* Responsive */
        @media (max-width: 900px) {
          .features-new {
            flex-direction: column;
            text-align: center;
          }
        }



        section {
          padding: 10px 20px;
          margin: auto;
        }

       .about-section {
  padding: 30px 20px;
  color: #222;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 30px;
  border-radius: 15px;
}

.about-image img {
    background-color: rgb(255, 255, 255);
    padding: 15px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px -4px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    max-width: 515px;
    object-fit: cover;
}

.about-content {
  flex: 1;
}

.about-content .section-title {
  font-size: 2.4rem;
  margin-bottom: 25px;
  font-weight: 700;
  line-height: 1.4;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #444;
}

/* Responsive */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    padding: 5px;
    gap: 0px;
  }

  .about-image img {
    max-width: 100%;
    margin-bottom: 25px;
  }

  .about-content .section-title {
    font-size: 2rem;
    text-align: center;
  }

  .about-content p {
    font-size: 1rem;
    text-align: center;
  }
}

.features-redesign {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  gap: 40px;
  color: #222;
}

.features-content {
  flex: 1 1 480px;
  max-width: 600px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-weight: 700;
  text-align: left;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.feature-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  padding: 25px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.feature-icon {
  font-size: 2.8rem;
  user-select: none;
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

.features-image {
  flex: 1 1 350px;
  max-width: 400px;
  display: flex;
  justify-content: center;
}

.features-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  object-fit: contain;
}

/* Responsive */
@media (max-width: 900px) {
  .features-redesign {
    flex-direction: column;
    align-items: center;
    margin: 40px auto;
  }

  .features-content {
    max-width: 100%;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    text-align: center;
  }
  
  .features-image {
    max-width: 90%;
    margin-top: 30px;
  }
}

.safety-section {
  background: #f2f6fb;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto 80px;
  color: #2e2e2e;
  border-radius: 15px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: white;
  padding: 20px 25px;
  border-radius: 12px;
  border-left: 6px solid #007BFF;
}


.timeline-icon {
  font-size: 2.8rem;
  margin-top: 4px;
  user-select: none;
  flex-shrink: 0;
}

.timeline-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.timeline-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* Responsive */
@media (max-width: 600px) {
  .timeline-item {
    flex-direction: column;
    padding: 18px 20px;
  }
  
  .timeline-icon {
    margin-bottom: 12px;
  }
  
  .timeline-content h3,
  .timeline-content p {
    text-align: center;
  }
}


.faqs-section {
  background: #f9f9f9;
  padding: 60px 20px;
}

.faqs-section .container {
  max-width: 900px;
  margin: auto;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 25px;
  font-size: 1.4rem;
  font-weight: 600;
  border: none;
  outline: none;
  cursor: pointer;
  background: #dddddd;
  color: #000;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #ffffff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: #f1faff;
  padding: 0 25px;
}

.faq-answer p {
  padding: 15px 0;
  margin: 0;
  color: #333;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }
  .faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .faq-answer p {
    padding: 12px 0;
  }
}



  .site-footer {
  background: #111;
  color: #eee;
  padding: 60px 20px 20px;
}

.footer-container {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: auto;
  gap: 20px;
  justify-content: space-between;
}

.footer-about {
  max-width: 100%;
}

.footer-logo {
  max-width: 120px;
  margin-bottom: 15px;
  border-radius: 8px;
}

.footer-about p {
  line-height: 1.6;
  font-size: 0.95rem;
  color: #ccc;
}

.footer-links,
.footer-contact,
.footer-newsletter {
  flex: 1 1 180px;
}

.footer-links h4,
.footer-contact h4,
.footer-newsletter h4 {
  font-size: 1.2rem;
  color: #ffdd57;
  margin-bottom: 15px;
}
.footer-links{
  display: flex;
  justify-content: space-around;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #ffdd57;
}

.footer-contact p {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-contact a {
  color: #ccc;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #ffdd57;
}

.social-icons a {
  font-size: 1.3rem;
  margin-right: 12px;
  color: #ccc;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #ffdd57;
}

.footer-newsletter form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-newsletter input[type="email"] {
  padding: 10px;
  border-radius: 6px;
  border: none;
  flex: 1;
}

.footer-newsletter button {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  background: #ffdd57;
  color: #111;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.footer-newsletter button:hover {
  background: #ffc107;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 15px;
  font-size: 0.9rem;
  color: #aaa;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .footer-about,
  .footer-links,
  .footer-contact,
  .footer-newsletter {
    max-width: 100%;
    text-align: center;
  }

  .footer-newsletter form {
    flex-direction: column;
  }

  .footer-newsletter input,
  .footer-newsletter button {
    width: 100%;
  }
  h2{
    line-height: 1.2 !important;
  }
}


@media (max-width: 768px) {
  .footer-links{
    flex-direction: column;
}
}