/* Student ID Section Styling */
.id-card-section {
  padding: 100px 20px;
  background-color: #fcfcfc;
}

.id-card-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px; /* স্পেস বাড়ানোর জন্য */
}

/* Left Side Styling */
.id-card-left {
  flex: 1;
}

.badge {
  background-color: #e0f2f2;
  color: #0b5b67;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  display: inline-block;
}

.id-card-left h2 {
  font-size: 38px;
  color: #0b5b67;
  margin-bottom: 15px;
}

.id-card-left .highlight-text {
  color: #ff6b35; /* অরেঞ্জ হাইলাইট */
}

.id-card-left > p {
  color: #777;
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.6;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.benefit-icon {
  font-size: 24px;
  background: white;
  padding: 15px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefit-icon i {
  color: #ff6b35;
}

.benefit-text h3 {
  font-size: 18px;
  color: #0b5b67;
  margin-bottom: 5px;
}

.benefit-text p {
  color: #888;
  font-size: 14px;
  line-height: 1.5;
}

/* Right Side Styling (ID Cards) */
.id-card-right {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cards-wrapper {
  position: relative;
  display: flex;
  gap: 30px;
  transform: rotate(10deg); /* কার্ডগুলোকে একটু বাঁকানোর জন্য */
}

.id-card {
  background: white;
  width: 260px;
  height: 400px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #f1f1f1;
}

.id-card.back {
  transform: rotate(-15deg); /* কার্ড দুটির মধ্যে এঙ্গেল তৈরি করার জন্য */
  left: -40px; /* একটু ওভারল্যাপ */
}

/* কার্ডের ভেতরের ডেকোরেশন */
.card-decor {
  position: absolute;
  width: 100px;
  height: 100px;
  background-color: #d2e9e9;
  border-radius: 50%;
  opacity: 0.2;
  z-index: 1;
}

.top-left {
  top: -40px;
  left: -40px;
}
.bottom-right {
  bottom: -40px;
  right: -40px;
}
.top-right {
  top: -40px;
  right: -40px;
}
.bottom-left {
  bottom: -40px;
  left: -40px;
}

/* কার্ডের কন্টেন্ট */
.id-card .logo-box {
  font-weight: bold;
  color: #0b5b67;
  font-size: 20px;
  margin-bottom: 30px;
  z-index: 2;
}

.id-card .student-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ff6b35;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  margin-bottom: 20px;
  z-index: 2;
}

.student-name {
  color: #0b5b67;
  font-size: 20px;
  margin-bottom: 10px;
  z-index: 2;
}

.student-id {
  color: #888;
  font-size: 14px;
  margin-bottom: 20px;
  z-index: 2;
}

.student-contact {
  color: #999;
  font-size: 12px;
  margin-top: auto;
  z-index: 2;
}

/* কার্ডের পেছনের কন্টেন্ট */
.back h4 {
  color: #0b5b67;
  margin-bottom: 20px;
  z-index: 2;
}

.back ul {
  list-style: none;
  width: 100%;
  padding: 0;
  z-index: 2;
}

.back li {
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.blue {
  background-color: #0b5b67;
}
.dot.orange {
  background-color: #ff6b35;
}

.back .signature {
  margin-top: 40px;
  font-family: "Courier New", monospace; /* হাতের লেখার মতো দেখানোর জন্য */
  color: #0b5b67;
  font-style: italic;
  z-index: 2;
}

.back .qr-code {
  width: 80px;
  height: 80px;
  background-color: #e0f2f2;
  border: 1px solid #0b5b67;
  color: #0b5b67;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  margin-top: auto;
  font-weight: bold;
  z-index: 2;
}

/* =================================
   ID CARD SECTION RESPONSIVE
================================= */

/* ---------- Laptop / Small Desktop ---------- */
@media (max-width: 1100px) {
  .id-card-container {
    gap: 50px;
  }

  .id-card-left h2 {
    font-size: 32px;
  }
}

/* ---------- Tablet ---------- */
@media (max-width: 900px) {
  .id-card-container {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .id-card-left {
    max-width: 650px;
  }

  .benefits-list li {
    justify-content: center;
    text-align: left;
  }

  .col-img img {
    max-width: 450px;
    width: 100%;
  }
}

/* ---------- Mobile ---------- */
@media (max-width: 600px) {
  .id-card-section {
    padding: 70px 0;
  }

  .id-card-left h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  .id-card-left > p {
    font-size: 15px;
  }

  .badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .benefits-list {
    gap: 20px;
  }

  .benefit-icon {
    padding: 12px;
    font-size: 20px;
  }

  .benefit-text h3 {
    font-size: 16px;
  }

  .benefit-text p {
    font-size: 13px;
  }

  .col-img img {
    width: 100%;
    max-width: 320px;
  }
}

/* ---------- Small Mobile ---------- */
@media (max-width: 400px) {
  .id-card-left h2 {
    font-size: 22px;
  }

  .benefits-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
