:root{--page-title-display:none;}/* Start custom CSS *//* কাস্টম সিএসএস - Islami Sharia লোগোর কালার ব্যবহার করে */
:root {
  /* লোগো থেকে নেওয়া হেক্স কোড */
  --primary-color: #005FA3; /* লোগোর নীল রঙ (টেক্সট এবং নিচের অংশ) */
  --accent-color: #E32322;  /* লোগোর লাল রঙ (বাংলা টেক্সট এবং বিন্দু) */
  --highlight-color: #F15A24; /* লোগোর কমলা রঙ (উপরের ডানার অংশ) */
  --text-color: #2D3748;
  --bg-color: #FFFFFF;
  --box-bg: #F8FAFC;
  --border-color: #E2E8F0;
}

.hajj-guide-container {
  max-width: 900px;
  margin: 0 auto;
  font-family: 'SolaimanLipi', 'Noto Sans Bengali', Arial, sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color);
  padding: 35px;
  line-height: 1.8;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-top: 5px solid var(--primary-color);
}

.bismillah {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 25px;
  color: var(--accent-color);
}

.hajj-guide-container h2 {
  text-align: center;
  color: var(--primary-color);
  font-size: 26px;
  margin-bottom: 30px;
  border-bottom: 2px dashed var(--highlight-color);
  padding-bottom: 15px;
}

.hajj-guide-container h3 {
  color: #FFFFFF;
  font-size: 20px;
  margin-top: 40px;
  margin-bottom: 18px;
  background-color: var(--primary-color);
  padding: 12px 20px;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 95, 163, 0.2);
}

.hajj-guide-container h4 {
  color: var(--primary-color);
  font-size: 18px;
  margin-top: 25px;
  margin-bottom: 15px;
  padding-left: 10px;
  border-left: 4px solid var(--accent-color);
}

.dua-section {
  background-color: var(--box-bg);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--highlight-color);
  transition: transform 0.2s ease;
}

.dua-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.dua-title {
  font-weight: bold;
  margin-bottom: 10px;
  display: block;
  color: var(--primary-color);
}

.dua-arabic {
  font-size: 19px;
  color: #1A202C;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.6;
}

.dua-meaning {
  font-size: 16px;
  color: #4A5568;
}

.content-block {
  margin-bottom: 20px;
  padding: 15px;
  background-color: #FFF5F5; /* হালকা লালচে ব্যাকগ্রাউন্ড হাইলাইটের জন্য */
  border-radius: 8px;
  border-left: 4px solid var(--accent-color);
}

.info-list {
  list-style-type: none;
  padding-left: 0;
}

.info-list li {
  margin-bottom: 14px;
  padding-left: 15px;
  font-size: 16px;
  position: relative;
}

.info-list li::before {
  content: "•";
  color: var(--highlight-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.section-divider {
  border: 0;
  height: 2px;
  background-image: linear-gradient(to right, rgba(0, 95, 163, 0), rgba(0, 95, 163, 0.3), rgba(0, 95, 163, 0));
  margin: 45px 0;
}

/* মোবাইল রেসপন্সিভ ডিজাইন */
@media (max-width: 768px) {
  .hajj-guide-container {
    padding: 20px 15px;
    border-radius: 0;
    box-shadow: none;
  }
  
  .hajj-guide-container h2 {
    font-size: 22px;
  }
  
  .hajj-guide-container h3 {
    font-size: 18px;
    padding: 10px 15px;
  }
  
  .dua-arabic {
    font-size: 17px;
  }
}/* End custom CSS */