html {
  scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #0B1E4A;
    color: white;
}

header {
    background-color: #0B1E4A;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center; /* <-- This is key */
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 64px;
    margin-right: 10px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle div {
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
}

nav {
    display: flex;
    align-items: center; /* <-- Center links vertically */
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

nav a:hover {
    text-decoration: underline;
}

.get-money-back {
    padding: 10px 20px;
    background-color: transparent;
    border: 2px solid white;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    transition: background 0.3s, color 0.3s;
}

.get-money-back:hover {
    background-color: white;
    color: #0B1E4A;
}

.container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.text-section {
    max-width: 600px;
    margin-bottom: 30px;
}

.text-section h1 {
    font-size: 60px;
    line-height: 1.2;
}

.text-section h1 span.yellow {
    color: #FFC600;
}

.text-section p {
    margin-top: 20px;
    font-size: 20px;
    line-height: 1.6;
}

.form-section {
    background: white;
    color: #0B1E4A;
    padding: 30px;
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto; /* ✨ Center the form horizontally */
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.form-section h2 {
    margin-top: 0;
    font-size: 24px;
    text-align: center;
}

.form-section p {
    text-align: center;
    font-size: 14px;
    margin-bottom: 30px;
}

.form-section input,
.form-section select,
.form-section textarea {
    width: 100%;
    padding: 12px 10px;
    margin-bottom: 15px;
    border: none;
    background: #f5f5f5;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
}

.form-section select {
    appearance: none;
}

.form-section textarea {
    resize: vertical;
}

.form-section button {
    background-color: #FFC600;
    border: none;
    padding: 15px;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.form-section button:hover {
    background-color: #e6b200;
}

/* Mobile styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #0B1E4A;
        position: absolute;
        top: 70px;
        left: 0;
        padding: 20px;
        max-height: 0;
    }

    nav.active {
        display: flex;
        max-height: 500px;
    }

    header {
        padding: 20px;
        flex-direction: row;
        align-items: center;
    }

    .container {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .text-section h1 {
        font-size: 36px;
    }

    .text-section p {
        font-size: 16px;
    }

    .form-section {
        width: 100%;
    }
    .container {
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
      padding: 20px;
      margin: 0 auto;
    }

    .text-section {
      width: 100%;
      max-width: 100%;
      padding: 0 10px;
      box-sizing: border-box;
      text-align: center;
    }

    .form-section {
      width: 100%;
      max-width: 100%;
      padding: 20px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .form-section input,
    .form-section textarea,
    .form-section button {
      width: 100%;
      box-sizing: border-box;
    }
}

.simple-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 80px;
    background: transparent;
}

.stat-block {
    text-align: center;
}

.stat-block h3 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin: 0;
}

.stat-block p {
    font-size: 14px;
    color: #ccc;
    margin-top: 8px;
}

/* Dividers between stats */
.divider {
    width: 1px;
    height: 50px;
    background-color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
    .simple-stats {
        flex-direction: column;
        gap: 20px;
    }

    .divider {
        width: 50%;
        height: 1px;
    }
}.why-us-section {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
}

.why-us-title h2 {
    font-size: 36px;
    color: #0B1E4A;
    margin-bottom: 10px;
}

.why-us-title p {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.why-us-item {
    background: #f9f9f9;
    padding: 40px 20px 30px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.why-us-item:hover {
    transform: translateY(-5px);
}

.icon-circle {
    width: 70px;
    height: 70px;
    background-color: #d1dff6; /* Soft light blue */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-circle img {
    width: 32px;
    height: 32px;
}

.why-us-item h3 {
    font-size: 22px;
    color: #0B1E4A;
    margin-bottom: 10px;
}

.why-us-item p {
    font-size: 15px;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }
}
.steps-section {
    background: #0B1E4A; /* Dark blue */
    padding: 80px 20px;
    text-align: center;
}

.steps-title h2 {
    font-size: 36px;
    color: white; /* White title */
    margin-bottom: 10px;
}

.steps-title p {
    font-size: 16px;
    color: #ccc; /* Light gray subtext */
    margin-bottom: 50px;
}

.steps-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: white;
    opacity: 0.2;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-bottom: 50px;
}

.step-marker {
    width: 50px;
    height: 50px;
    background: white; /* Circle is white */
    color: #0B1E4A; /* Text inside circle is blue */
    font-weight: bold;
    font-size: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.step-content {
    background: white; /* Box is white */
    padding: 20px 25px;
    border-radius: 12px;
    margin-top: 20px;
    width: 100%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.step-content h3 {
    color: #0B1E4A; /* Heading dark blue */
    margin-bottom: 10px;
    font-size: 20px;
}

.step-content p {
    color: #555;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .steps-timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
  }

  .step-marker {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  .step-content {
    margin-top: 40px;
    padding-top: 20px;
    max-width: 90%;
  }
}


.about-section {
    background: #f7faff url('about-us.png') no-repeat right center;
    background-size: auto 90%; /* << this is the important change */
    background-repeat: no-repeat;
    background-position: 75% center; /* move a bit more toward center */
    padding: 100px 20px;
    min-height: 600px; /* control the overall height */
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 600px;
}


.about-text {
    flex: 1;
    max-width: 550px;

}

.about-text h2 {
    font-size: 40px;
    color: #0B1E4A;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text strong {
    color: #0B1E4A;
}

.about-text-overlay h2,
.about-text-overlay p,
.about-text-overlay strong {
  color: #0B1E4A;
}

/* Optional: Make it adapt nicely on phones */
@media (max-width: 768px) {
  .about-text-overlay {
    padding: 20px;
    background: rgba(255, 255, 255, 0.8); /* semi-transparent white */
    padding: 30px;
    border-radius: 12px;
  }
}

/* Responsive */
@media (max-width: 768px) {
    .about-section {
        background-position: center top;
        background-size: cover;
        padding: 80px 20px;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        max-width: 90%;
    }
}
.cta-button {
    display: inline-block;
    background-color: #FFC600; /* same yellow */
    color: #0B1E4A; /* dark blue text */
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #e6b200; /* slightly darker yellow on hover */
    transform: translateY(-3px);
}
.testimonials-section {
    background-color: #0B1E4A;
    padding: 100px 20px;
    color: white;
    text-align: center;
    overflow-x: hidden;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-title {
    font-size: 36px;
    margin-bottom: 40px;
    color: #FFC600;
}

.testimonials-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: #FFC600 #0B1E4A;
}

.testimonials-scroll::-webkit-scrollbar {
    height: 8px;
}

.testimonials-scroll::-webkit-scrollbar-thumb {
    background: #FFC600;
    border-radius: 10px;
}

.testimonials-scroll::-webkit-scrollbar-track {
    background: #0B1E4A;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    min-width: 280px;
    max-width: 300px;
    flex: 0 0 auto;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: left;
}

.stars {
    font-size: 20px;
    color: #FFC600;
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.5;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-title {
        font-size: 28px;
    }
}
.blacklist-check-section {
    background-color: #f7faff;
    padding: 80px 20px;
    text-align: center;
}

.blacklist-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.blacklist-text h2 {
    font-size: 32px;
    color: #0B1E4A;
    margin-bottom: 15px;
}

.blacklist-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.blacklist-button {
    display: inline-block;
    background-color: #FF3B3B;
    color: #0B1E4A;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.blacklist-button:hover {
    background-color: #e6b200;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .blacklist-text h2 {
        font-size: 26px;
    }
}
.footer-section {
    background-color: #0B1E4A;
    color: white;
    padding: 60px 30px 30px 30px;
    font-size: 14px;
}

.footer-top {
    text-align: center;
    margin-bottom: 40px;
    font-size: 15px;
    line-height: 1.6;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 30px auto;
}

.footer-column {
    flex: 1 1 220px; /* slightly wider for better mobile */
    min-width: 220px; /* important: prevent too narrow columns */
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

.footer-column p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.social-links li a:hover {
    color: #FFC600;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: white;
    font-size: 13px;
    text-decoration: none;
}

.legal-links a:hover {
    text-decoration: underline;
}

/* ======= MOBILE FIX ======= */
@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        align-items: center;
        gap: 40px; /* added spacing between blocks */
    }

    .footer-column {
        width: 100%;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .legal-links {
        flex-direction: column;
        gap: 10px;
    }
}
@keyframes breathe {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.breathe {
  animation: breathe 1.5s ease-in-out infinite;
}

#form {
  scroll-margin-top: 100px; /* Adjust this number */
}
.faq-section {
  background: #ffffff; /* white background */
  color: #000000; /* black text */
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.faq-title {
  font-size: 36px;
  font-weight: bold;
}
.faq-updated {
  font-size: 14px;
  color: #666666;
  margin-bottom: 30px;
}
.faq-item {
  border-bottom: 1px dashed #cccccc;
  padding: 20px 0;
  cursor: pointer;
}
.faq-question-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-question {
  font-size: 18px;
  margin: 0;
}
.faq-plus {
  font-size: 24px;
  color: #0B1E4A;
  font-weight: bold;
  transition: transform 0.2s;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding-top 0.4s ease;
  font-size: 16px;
  color: #333333;
  line-height: 1.5;
}
.faq-item.active .faq-answer {
  max-height: 500px; /* enough height for long answers */
  padding-top: 10px;
}
.faq-item.active .faq-plus {
  transform: rotate(45deg);
}
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #FFD700;
  border: none;
  width: 70px; /* slightly bigger */
  height: 70px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s, opacity 0.3s;
  opacity: 0.8;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0; /* No padding */
}
#backToTop:hover {
  background-color: #FFC300;
  opacity: 1;
}
#backToTop svg {
  width: 32px;
  height: 32px;
  display: block;
}
.terms-section {
  padding: 60px 20px;
  background-color: #0B1E4A;
  color: white;
}

.terms-container {
  max-width: 900px;
  margin: 0 auto;
}

.terms-container .last-updated {
  text-align: right;
  font-size: 14px;
  color: #cccccc;
  margin: 0 0 10px 0;
}

.terms-container > h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: left;
}

.terms-container > h2 {
  font-size: 24px;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 10px;
  text-align: left;
}

.terms-container > p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}
.privacy-section {
  padding: 60px 20px;
  background-color: #0B1E4A;
  color: white;
}

.privacy-container {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-container .last-updated {
  text-align: right;
  font-size: 14px;
  color: #cccccc;
  margin: 0 0 10px 0;
}

.privacy-container > h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: left;
}

.privacy-container > h2 {
  font-size: 24px;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 10px;
  text-align: left;
}

.privacy-container > p,
.privacy-container ul {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: left;
}
.intl-tel-input,
.iti {
  width: 100%;
  margin-bottom: 16px;
  box-sizing: border-box;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: #f0f0f0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  cursor: pointer;
}

.iti--separate-dial-code .iti__selected-dial-code {
  padding-left: 4px;
  padding-right: 4px;
  color: #555;
  font-weight: normal;
  white-space: nowrap;
}
.form-section .intl-tel-input {
  display: block;
  width: 100%;
}
.form-section .intl-tel-input input[type="tel"] {
  padding: 12px 10px;
  width: 100%;
  box-sizing: border-box;
}
