* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f2f3f5;
}

section {
  scroll-margin-top: 130px;
  /* height of your navbar */
}

/* Top Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #121212;
  padding: 10px 20px;
  color: #fff;
  position: sticky;
  top: 0px;
  z-index: 1000;
}

/* Left side */
.navbar-left {
  display: flex;
  align-items: center;
  gap: 15px;
}
.navbar-left p{
  font-size: 35px;
  font-weight: 600;
  color: #12DAA8;
}

.navbar-left img {
  width: 130px;
}

/* Hamburger button - hidden on desktop */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 20px;
}

.search-bar input {
  font-size: 18px;
  border-radius: 30px;
  outline: none;
  border: none;
  padding: 7px 20px;
  border: 1px solid #a9aebf;
}

/* Right side */
.navbar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.lang-select {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  user-select: none;
}

.signin-btn {
  background-color: #12DAA8;
  border: none;
  padding: 12px 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  user-select: none;
  font-size: 16px;
}

.signin-btn:hover {
  background-color: #f2f3f5;
}

/* Breadcrumb styling */
.breadcrumb {
  width: 100%;
}

.breadcrumb img {
  width: 100%;
}

/* Responsive - mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: inline-block;
  }

  .navbar-left p {
    font-size: 30px;
    font-weight: 700;
  }

  .breadcrumb h1 {
    font-size: 30px;
    text-align: center;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: #003366;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    z-index: 10;
  }

  .nav-links.open {
    max-height: 300px;
    /* enough height for menu items */
  }

  .nav-links a {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .navbar-right {
    gap: 10px;
  }

  .navbar-left img {
    width: 123px;
  }
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 20px;
}

.head-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.head-card {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 2% 0;
}

/* Left content */
.content {
  flex: 2;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  padding: 40px;
  margin-right: 30px;
}

.content a {
  text-decoration: none;
  color: #000;
}

.content section {
  margin-bottom: 30px;
}

.content h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* Right sidebar */
.sidebar {
  flex: 1;
  width: 100%;
  position: sticky;
  top: 63px;
  align-self: flex-start;
  background: white;
  padding: 5px 20px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 10px;
  z-index: 1100;
}

.sidebar .nav-link {
  display: block;
  padding: 10px 15px;
  /* margin-bottom: 10px; */
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
  border-radius: 6px;
  transition: background-color 0.2s, color 0.2s;
}

.sidebar .nav-link.active {
  background-color: #12DAA8;
  color: #fff;
}

.sidebar .nav-link:hover {
  background-color: #12DAA8;
  color: #fff;
}

/* Scroll smooth */
html {
  scroll-behavior: smooth;
}

@media screen and (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .sidebar {
    max-width: 100%;
    margin-top: 20px;
    flex-direction: column;
    position: static;
  }

  .content {
    margin-right: 0px;
    padding: 30px 10px;
  }
}

.key-features {
  margin-top: 40px;
  border-radius: 8px;
}

.key-features h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #222;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  gap: 15px;
}

.feature-item i {
  font-size: 20px;
  color: #007bff;
  flex-shrink: 0;
}

.feature-item h3 {
  font-size: 20px;
  margin: 0 0 6px;
  color: #333;
}

.feature-item p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .feature-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-item i {
    font-size: 24px;
    margin-bottom: 8px;
  }
}

.content ul {
  list-style-type: none;
  margin-left: auto;
  margin-right: auto;
}

.content ul li {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
  position: relative;
}

.content ul li strong {
  color: #000000;
  /* Highlight the key terms */
}

#faqs {
  margin-top: 50px;
}

#faqs h2 {
  font-size: 28px;
  margin-bottom: 25px;
}

.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background-color: #eaf7ff;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 18px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 18px;
  color: #000;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background-color: #d6ebff;
}

.faq-question::after {
  content: "+";
  font-size: 24px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px 20px 20px;
  display: none;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

.footer {
  background-color: #0b1221;
  color: #b0b3b8;
  padding: 30px 20px;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top p {
  font-size: 35px;
  font-weight: 700;
  color: #12DAA8;
}

.footer-logo {
  height: 40px;
  user-select: none;
}

.footer-nav {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.age-icon {
  border: 2px solid white;
  border-radius: 50%;
  padding: 6px 12px;
  font-weight: 700;
  font-size: 16px;
  color: white;
  user-select: none;
}

.helpline-logo {
  height: 40px;
  user-select: none;
}

hr {
  border: none;
  border-top: 1px solid #2a2f45;
  margin: 20px 0;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.country-select {
  background-color: #1a2034;
  color: white;
  border: none;
  padding: 10px 14px;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  min-width: 180px;
  user-select: none;
}

.country-select option {
  color: #fff;
}

.footer-text {
  flex: 1;
  min-width: 280px;
  line-height: 1.5;
  color: #a9aebf;
}

.footer-text a {
  color: #5ab0ff;
  text-decoration: none;
}

.footer-text a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-top {
    justify-content: center;
    gap: 30px;
  }

  .footer-nav {
    justify-content: center;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-text {
    margin-top: 15px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.profile-card {
  border-radius: 5px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  cursor: pointer;
}

.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 10px 25px 50px #12DAA8(0, 0, 0, 0.15);
}

.profile-img {
  width: 100%;
  object-fit: cover;
  position: relative;
}

.profile-card-banner {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  position: relative;
  cursor: pointer;
}

.profile-img-banner {
  width: 100%;
  object-fit: cover;
}
.head-image-right{
  width: 35%;
}

.head-image {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 65%;
  background-color: transparent;
}

.head-image img {
  width: 100%;
  border-radius: 10px;
}

.head-image:hover {
  transform: translateY(-5px);
  box-shadow: 10px 25px 50px #F26621(0, 0, 0, 0.15);
}


@media (max-width: 768px) {
  .profile-card {
    width: 47%;
  }

  .head-image img {
    width: 100%;
  }

  .head-section {
    flex-direction: column;
  }
  .head-image-right{
  width: 100%;
}

.head-image {
  width: 100%;
}
}

.next-btn {
  margin-top: 2%;
  display: flex;
  justify-content: center;
}

.next-btn a {
  text-decoration: none;
  margin: auto;
}

.main-section h1 {
  text-align: center;
  font-size: 2rem;
}

.main-section p {
  text-align: center;
  width: 90%;
  margin: 2% auto;
}

@media (max-width: 576px) {
  .main-section h1 {
    text-align: center;
    font-size: 1.6rem;
  }
  .head-image {
    min-width: 310px;
}
.username{
  font-size: 0.7rem;
}
.profile-info {
    padding: 6px 0px;
    width: 91px;
}
}




    .reviews-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
      text-align: center;
    }

    .reviews-section h2 {
      font-size: 2rem;
      margin-bottom: 20px;
      color: #111;
    }

    .reviews-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .review-card {
      background: #fff;
      border-radius: 15px;
      padding: 25px;
      box-shadow: 0 8px 18px rgba(0,0,0,0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .review-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 24px rgba(0,0,0,0.12);
    }

    .review-avatar {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 15px;
    }

    .reviewer-name {
      font-weight: 600;
      margin-bottom: 8px;
      font-size: 1.1rem;
      color: #222;
    }

    .reviewer-role {
      font-size: 0.9rem !important;
      color: #000000 !important;
      margin-bottom: 15px;
    }

    .review-text {
      font-size: 1.2rem  !important;
      color: #444 !important;
      margin-bottom: 15px;
    }

    .stars {
      color: #f8b400;
      font-size: 2rem !important;
    }

    @media (max-width: 600px) {
      .reviews-section h2 {
        font-size: 2rem;
      }
      .review-card {
        padding: 20px;
      }
    }

    .exlore-more{
      outline: none;
      border: none;
      background-color: #12DAA8;
      padding: 10px 20px;
      border-radius: 5px;
      cursor: pointer;
        color: #fff;
        font-size: 17px;
        font-weight: 500;
    }
    .exlore-more:hover{
      background-color: #12DAA8df;
    }