/* Help Page Specific Styles */

/* Hero Banner */
.help-hero-banner {
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.help-hero-content {
  display: flex;
  max-width: 100%;
  height: 450px;
}

.help-img-container {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.help-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.help-info-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.help-info-content {
  background-color: rgba(28, 46, 88, 0.8);
  color: white;
  text-align: center;
  padding: 40px;
  border-radius: 50%;
  width: 300px;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(226, 20, 108, 0.3);
}

.help-info-content h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 10px;
}

.help-info-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 15px;
}

.help-number {
  font-size: 32px;
  font-weight: 700;
  background-color: white;
  color: #1c2e58;
  padding: 5px 25px;
  border-radius: 30px;
}

/* Help Services Section */
.help-services-section {
  padding: 60px 0;
  background-color: #fff5f8;
}

.section-title {
  font-size: 26px;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-bottom: 40px;
}

.help-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.help-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.help-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.help-card-icon {
  margin: 0 auto 20px;
  width: 160px; /* increased from 80px */
  height: 180px; /* increased from 80px */
  display: flex;
  align-items: center;
  justify-content: center;
}

.help-card-icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.help-card-title {
  font-size: 22px;
  font-weight: 400;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.3;
}

.help-card-text {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.help-card-link {
  color: #1c2e58;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  margin-top: auto;
}

.help-card-link:hover {
  text-decoration: underline;
}

/* Contact Section */
.contact-section {
  padding: 60px 0;
  background-color: #fff5f8;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 15px;
}

.contact-content {
  display: flex;
  align-items: center;
  background-color: #fae6ec;
  border-radius: 12px;
  overflow: hidden;
  /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); */
}

.contact-image-container {
  flex: 0 0 35%;
  height: 100%;
  background-color: transparent;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-image {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.contact-info-container {
  flex: 0 0 65%;
  padding: 90px;
}

.contact-title {
  font-size: 30px;
  font-weight: 1000;
  color: #333;
  margin-bottom: 15px;
}

.contact-description {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

.contact-description a {
  color: #1c2e58;
  text-decoration: none;
  font-weight: 500;
}

.contact-description a:hover {
  text-decoration: underline;
}

.contact-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 50px;
  font-size: 22px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.contact-btn i {
  font-size: 22px;
}

/* Button Styles */
.phone-btn {
  background-color: #1c2e58;
  color: white;
}

.phone-btn:hover {
  background-color: #1c2e58;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(226, 20, 108, 0.3);
}

.appointment-btn,
.chat-btn,
.map-btn {
  background-color: white;
  color: #1c2e58;
  border-color: #1c2e58;
}

.appointment-btn:hover,
.chat-btn:hover,
.map-btn:hover {
  background-color: #fff5f8;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(226, 20, 108, 0.2);
}

/* Charges Section */
.charges-section {
  padding: 60px 0;
  background-color: #fef8fa;
}

.charges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.charge-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}

.charge-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(226, 20, 108, 0.1);
}

.charge-icon {
  width: 160px;
  height: 160px;
  margin-bottom: 20px;
}

.charge-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.charge-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.charge-text {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* Help Topics Section */
.help-topics-section {
  padding: 60px 0;
  background-color: #ffeff5;
}

.help-topics-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.topic-item {
  background-color: white;
  border-radius: 8px;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}

.topic-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(226, 20, 108, 0.1);
}

.topic-icon {
  width: 90px;
  height: 90px;
  margin-bottom: 15px;
}

.topic-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.topic-name {
  font-size: 18px;
  font-weight: 500;
  color: #444;
}

/* Popup Styles */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.popup-overlay.active {
  display: block;
  opacity: 1;
}

.popup-container {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  z-index: 9999;
  opacity: 0;
  transition: all 0.3s ease;
}

.popup-container.active {
  display: block;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.popup-content {
  background-color: white;
  border-radius: 12px;
  width: 900px;
  max-width: 95vw;
  max-height: 90vh;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  overflow: hidden;
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  border: none;
  background-color: #f0f0f0;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
}

.popup-close:hover {
  background-color: #e0e0e0;
  transform: rotate(90deg);
}

.popup-body {
  flex: 1;
  padding: 40px;
  overflow-y: auto;
}

.popup-logo {
  position: absolute;
  top: 20px;
  right: 60px;
  width: 60px;
  height: auto;
}

/* Mobile Popup Specific */
.mobile-popup {
  text-align: center;
  padding: 20px;
}

.mobile-image {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
}

.phone-input {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}

.phone-input input {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

.number-pad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 300px;
  margin: 0 auto;
}

.number-pad button {
  padding: 15px;
  border: 1px solid #ddd;
  background-color: #f5f5f5;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.number-pad button:hover {
  background-color: #e0e0e0;
}

/* Appointment Form */
.appointment-form {
  margin-top: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}

.form-note {
  font-size: 12px;
  color: #666;
  margin-top: 5px;
}

.captcha {
  background-color: #f0f0f0;
  padding: 10px;
  text-align: center;
  margin-bottom: 10px;
  border-radius: 5px;
  font-family: monospace;
  font-size: 18px;
  letter-spacing: 5px;
}

.form-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.btn-primary,
.btn-secondary {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #e2146c;
  color: white;
}

.btn-primary:hover {
  background-color: #c71259;
}

.btn-secondary {
  background-color: #f0f0f0;
  color: #333;
}

.btn-secondary:hover {
  background-color: #e0e0e0;
}

/* Live Chat Popup */
.live-chat-content {
  text-align: center;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.chat-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.chat-info h2 {
  font-size: 28px;
  color: #1c2e58;
  margin-bottom: 5px;
}

.chat-info h3 {
  font-size: 20px;
  color: #e2146c;
}

.chat-description {
  background-color: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  margin-top: 20px;
}

/* Map Popup */
.map-container {
  margin-top: 20px;
}

.search-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.search-bar input,
.search-input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.search-btn {
  padding: 10px 20px;
  background-color: #e2146c;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.map-image {
  width: 100%;
  height: 400px;
  object-fit: contain;
  border: 1px solid #ddd;
  border-radius: 10px;
}

.map-filters {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 16px;
  border: 1px solid #ddd;
  background-color: white;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active {
  background-color: #e2146c;
  color: white;
  border-color: #e2146c;
}

/* Service Table */
.service-table {
  overflow-x: auto;
  margin-top: 20px;
}

.service-table table {
  width: 100%;
  border-collapse: collapse;
}

.service-table th,
.service-table td {
  padding: 12px;
  text-align: left;
  border: 1px solid #ddd;
}

.service-table th {
  background-color: #f8f9fa;
  font-weight: 600;
}

/* Fraud Prevention */
.fraud-video {
  margin: 20px 0;
}

.fraud-video iframe {
  width: 100%;
  height: 315px;
  border-radius: 10px;
}

.fraud-content {
  margin-top: 30px;
}

.fraud-tips ul {
  list-style: none;
  padding: 0;
}

.fraud-tips li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 25px;
}

.fraud-tips li:before {
  content: "•";
  color: #e2146c;
  font-weight: bold;
  position: absolute;
  left: 8px;
}

/* Charge Calculator */
.service-select,
.location-select,
.area-select,
.category-select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 20px;
}

.charge-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.charge-option {
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.charge-option.selected {
  border-color: #e2146c;
  background-color: #fff5f8;
}

.charge-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

/* FAQ */
.faq-content {
  margin-top: 20px;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  padding: 15px;
  background-color: #f8f9fa;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  font-size: 14px;
  margin: 0;
  flex: 1;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 15px;
  display: none;
  background-color: white;
}

.faq-answer.active {
  display: block;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .help-services-grid,
  .help-topics-grid {
    padding: 0 20px;
  }
}

@media (max-width: 992px) {
  .help-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .help-topics-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-options {
    flex-direction: column;
  }

  .contact-left,
  .contact-right {
    width: 100%;
  }

  .help-info-content {
    width: 250px;
    height: 250px;
    padding: 30px;
  }

  .help-info-content h1 {
    font-size: 24px;
  }

  .help-info-content h2 {
    font-size: 30px;
  }

  .help-number {
    font-size: 26px;
  }

  .contact-content {
    flex-direction: column;
  }

  .contact-image-container {
    flex: 0 0 100%;
    width: 100%;
    padding: 30px;
  }

  .contact-image {
    max-width: 300px;
  }

  .contact-info-container {
    flex: 0 0 100%;
    width: 100%;
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .help-hero-content {
    height: 300px;
  }

  .help-info-content {
    width: 200px;
    height: 200px;
    padding: 20px;
  }

  .help-info-content h1 {
    font-size: 20px;
  }

  .help-info-content h2 {
    font-size: 24px;
  }

  .help-number {
    font-size: 22px;
    padding: 3px 20px;
  }

  .charges-grid {
    grid-template-columns: 1fr;
  }

  .help-topics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-buttons {
    grid-template-columns: 1fr;
  }

  .contact-title {
    font-size: 22px;
  }

  .contact-description {
    font-size: 15px;
  }

  .popup-content {
    width: 95vw;
    flex-direction: column;
  }

  .popup-body {
    padding: 20px;
  }

  .popup-logo {
    position: static;
    margin: 20px auto;
    width: 50px;
  }

  .form-buttons {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .help-services-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 24px;
    padding: 0 15px;
  }

  .help-card-text {
    min-height: auto;
  }

  .contact-info-container {
    padding: 20px;
  }

  .contact-title {
    font-size: 20px;
  }

  .contact-btn {
    padding: 12px 15px;
    font-size: 14px;
  }
}

/* বিকাশ হেল্প ড্রপডাউন মেনু - বড় করা এবং সাজানো */

/* ড্রপডাউন কন্টেইনার */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-item {
  color: white;
  text-decoration: none;
  font-size: 20px;
  font-weight: 400;
  white-space: nowrap;
  
}


/* ড্রপডাউন বাটন */
.nav-dropdown .dropdown {
  position: relative;
  cursor: pointer;
}

/* মূল ড্রপডাউন মেনু - বড় করা */
.help-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px; /* বড় করা হয়েছে */
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  padding: 30px; /* বড় করা হয়েছে */
  margin-top: 15px;
  z-index: 1000;
}

/* হোভার করলে ড্রপডাউন দেখানো */
.nav-dropdown:hover .help-dropdown-menu {
  display: flex;
}

/* মূল কন্টেইনার লেআউট */
.help-dropdown-container {
  display: flex;
  width: 100%;
}

/* বাম দিকের মেনু আইটেম কলাম */
.help-menu-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-right: 30px; /* বড় করা হয়েছে */
}

/* মেনু আইটেম রো - স্ট্রেইট করা */
.help-menu-row {
  display: flex;
  margin-bottom: 25px; /* বড় করা হয়েছে */
  justify-content: space-between; /* আইটেমগুলো সমান দূরত্বে সাজানো */
}

/* প্রতিটি মেনু আইটেম */
.help-menu-item {
  flex: 1;
  text-decoration: none;
  color: #333;
  font-size: 15px; /* বড় করা হয়েছে */
  padding: 0 15px; /* বড় করা হয়েছে */
  transition: color 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left; /* বাম দিকে সাজানো */
}

.help-menu-item:hover {
  color: #1c2e58;
}

/* ডান দিকের কুইক লিংক কলাম */
.help-quick-links-column {
  width: 280px; /* বড় করা হয়েছে */
  padding-left: 30px; /* বড় করা হয়েছে */
  border-left: 1px solid #f0f0f0;
}

/* প্রতিটি কুইক লিংক */
.help-quick-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  padding: 12px; /* বড় করা হয়েছে */
  margin-bottom: 20px; /* বড় করা হয়েছে */
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 15px; /* বড় করা হয়েছে */
}

.help-quick-link:hover {
  background-color: #fff5f8;
  color: #1c2e58;
}

.help-quick-link i {
  margin-right: 15px; /* বড় করা হয়েছে */
  color: #1c2e58;
  font-size: 20px; /* বড় করা হয়েছে */
  width: 24px;
  text-align: center;
}

/* ট্রায়াঙ্গেল ইন্ডিকেটর */
.help-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid white;
}

/* স্ট্রেইট করার জন্য অতিরিক্ত স্টাইল */
.help-menu-row:nth-child(1) .help-menu-item:nth-child(1),
.help-menu-row:nth-child(2) .help-menu-item:nth-child(1),
.help-menu-row:nth-child(3) .help-menu-item:nth-child(1),
.help-menu-row:nth-child(4) .help-menu-item:nth-child(1),
.help-menu-row:nth-child(5) .help-menu-item:nth-child(1) {
  width: 25%; /* এক চতুর্থাংশ জায়গা নিবে */
}

/* রেস্পন্সিভ ডিজাইন */
@media (max-width: 1200px) {
  .help-dropdown-menu {
    width: 900px;
  }
}

@media (max-width: 992px) {
  .help-dropdown-menu {
    width: 700px;
  }

  .help-menu-row {
    flex-wrap: wrap;
  }

  .help-menu-item {
    flex: 0 0 50%;
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .help-dropdown-menu {
    width: 90vw;
    left: 5vw;
    transform: none;
  }

  .help-dropdown-container {
    flex-direction: column;
  }

  .help-menu-column {
    padding-right: 0;
  }

  .help-menu-item {
    flex: 0 0 50%;
  }

  .help-quick-links-column {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
    padding-top: 20px;
    border-left: none;
    border-top: 1px solid #f0f0f0;
  }
}

@media (max-width: 576px) {
  .help-menu-item {
    flex: 0 0 100%;
  }
}
