.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Section Title */
.section-title {
  text-align: center;
  font-size: 36px;
  line-height: 1.4;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 40px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 150px;
  height: 2px;
  background-color: #333;
  margin: 10px auto 0;
}

/* Flex Layout */
.content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap; /* Responsive হওয়ার জন্য */
}

/* Image Side */
.image-container {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.main-image {
  width: 100%;
  border-radius: 30px; /* ছবিতে ওই সুন্দর রাউন্ড শেপটার জন্য */
  display: block;
}

.slider-dots {
  margin-top: 15px;
}

.dot {
  height: 10px;
  width: 10px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
}

.dot.active {
  background-color: #f39c12; /* সেই কমলা রঙের ডটটি */
}

/* Text Side */
.text-content {
  flex: 1;
  min-width: 300px;
}

.text-content h3 {
  font-size: 36px;
  margin-bottom: 20px;
  max-width: 600px;
  line-height: 48px;
  text-transform: uppercase;
  color: #58595b;
  font-weight: 600;
}

.text-content p {
  font-size: 18px;
  line-height: 36px;
  font-weight: 600;
  color: #000;
}

/* --- Responsive Design --- */

/* বড় ট্যাবলেট এবং ছোট ল্যাপটপের জন্য (1024px এর নিচে) */
@media (max-width: 1024px) {
  .container {
    max-width: 95%;
    padding: 30px 15px;
  }

  .text-content h3 {
    font-size: 30px;
    line-height: 40px;
  }

  .text-content p {
    font-size: 16px;
    line-height: 28px;
  }
}

/* ট্যাবলেট এবং মোবাইল ফোনের জন্য (768px এর নিচে) */
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column; /* ইমেজ উপরে আর লেখা নিচে চলে আসবে */
    gap: 30px;
    text-align: center; /* ছোট স্ক্রিনে লেখা মাঝখানে থাকলে ভালো দেখায় */
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .text-content h3 {
    font-size: 26px;
    line-height: 34px;
    max-width: 100%; /* লেখা যাতে পুরো চওড়া হয় */
    margin: 0 auto 15px;
  }

  .text-content p {
    font-size: 16px;
    line-height: 26px;
    text-align: center; /* মোবাইলে justify থেকে center বেশি ভালো লাগে */
  }

  .main-image {
    border-radius: 20px; /* ছোট স্ক্রিনে রেডিয়াস একটু কমিয়ে দিলে ব্যালেন্স থাকে */
  }
}

/* ছোট মোবাইলের জন্য (480px এর নিচে) */
@media (max-width: 480px) {
  .section-title {
    font-size: 22px;
  }

  .image-container {
    min-width: 200px;
  }

  .text-content h3 {
    font-size: 20px;
    line-height: 28px;
  }

  .text-content {
    min-width: 200px;
  }

  .text-content p {
    font-size: 14px;
    line-height: 24px;
  }

  .dot {
    height: 8px;
    width: 8px;
  }
}
