section.blog_section {
  position: relative;
  padding: 80px 0;
  background: radial-gradient(900px 420px at 10% 0%, rgba(99, 102, 241, 0.08), transparent 70%),
    radial-gradient(900px 420px at 90% 0%, rgba(34, 197, 94, 0.08), transparent 70%),
    linear-gradient(180deg, #ffffff 0%, #f6f7fb 100%);
}

.blog_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}



.blog-card-box {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  overflow: hidden;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.blog-card-box:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 122, 26, 0.45);
  box-shadow: 0 26px 52px rgba(15, 23, 42, 0.14);
}

.blog_thumb_box {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

.blog_thumb_box img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  transition: transform 0.3s ease;
}

.blog-card-box:hover .blog_thumb_box img {
  transform: scale(1.03);
}

.blog_content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 4px 4px 10px;
}

.blog-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: #64748b;
  font-weight: 600;
}

.blog-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-meta__item i {
  color: #22c55e;
  font-size: 13px;
}

.blog-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.35;
}

.blog_content p {
  color: #475569;
  font-size: 15px;
  line-height: 26px;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog_content a {
  color: #ff7a1a;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog_content a:hover {
  color: #22c55e;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  align-items: center;
}

.blog-pagination.is-hidden {
  display: none;
}

.blog-page-btn {
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: #ffffff;
  color: #0f172a;
  border-radius: 10px;
  padding: 8px 14px;
  font-weight: 600;
  transition: all 0.2s ease;
  min-width: 40px;
}

.blog-page-numbers {
  display: flex;
  gap: 10px;
}

.blog-page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.blog-page-btn:hover {
  border-color: #22c55e;
  color: #22c55e;
  transform: translateY(-1px);
}

.blog-page-btn.is-active {
  background: #22c55e;
  border-color: #22c55e;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.25);
}




section.blog-article-hero-section {
  background: radial-gradient(900px 420px at 10% 0%, rgba(99, 102, 241, 0.12), transparent 70%),
    radial-gradient(900px 420px at 90% 0%, rgba(34, 197, 94, 0.12), transparent 70%),
    linear-gradient(180deg, #ffffff 0%, #f6f7fb 100%);
  padding: 70px 0 60px;
}

.blog-detail-list {
  display: flex;
  gap: 12px;
  margin-bottom: 15px !important;
  justify-content: center;
  padding-top: 20px !important;
}

.blog-detail-list li {
  position: relative;
  padding-right: 12px;
  font-size: 14px;
  color: #64748b;
  font-weight: 600;
}

.blog-detail-list li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 14px;
}

.blog-detail-list li:last-child::after {
  display: none;
}

.blog-hero-content-box {
  margin: auto;
  max-width: 930px;
  text-align: center;
}


.blog-hero-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  margin: 11px 0 10px 0;
}

.blog-hero-text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
  color: #475569;
}


.blog-detail_section {
  padding: 70px 0 90px;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.blog-detail_row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: start;
}

.blog_left-col {
  position: sticky;
  top: 90px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.06);
}


.blog_title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #0f172a;
}

.blog_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}

.blog_item {
  display: flex;
  gap: 12px;
  margin-bottom: 5px;
  align-items: center;
  padding: 10px;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: #f8fafc;
  border: 1px solid rgba(148, 163, 184, 0.2);
  cursor: pointer;
}

.blog_item:hover {

  transform: translateY(-4px);
  border-color: rgba(34, 197, 94, 0.4);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.blog_item img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.blog_content {
  display: flex;
  flex-direction: column;
}

.blog_date {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 4px;
  font-weight: 600;
}

.blog_content a {
  font-size: 15px;
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.3s ease;
  color: #0f172a;
}

.blog_content a:hover {
  color: #22c55e;
}


.blog-detailrow {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.blog-detail_meilss img {
  width: 100%;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
}

.blog-detail_meilss h2 {
  font-size: 26px;
  margin-bottom: 14px;
  color: #0f172a;
}

.blog-detail_meilss p {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 14px;
  color: #475569;
}

@media (max-width: 991px) {
  .blog-detail_row {
    grid-template-columns: 1fr;
  }

  .blog_left-col {
    position: static;
  }
}


/* concatd us  */
.hero-section-contact {
  padding: 90px 0;
  background: radial-gradient(900px 420px at 10% 0%, rgba(99, 102, 241, 0.08), transparent 70%),
    radial-gradient(900px 420px at 90% 0%, rgba(34, 197, 94, 0.08), transparent 70%),
    linear-gradient(180deg, #ffffff 0%, #f6f7fb 100%);
}

.schedule-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.text-content {
  display: flex;
  flex-direction: column;
  text-align: start;
}

.schedule-content-heading h1 {
  font-size: clamp(2.1rem, 4vw, 2.8rem);
  margin-bottom: 16px;
  color: #0f172a;
  font-weight: 700;
}

.schedule-content-heading p {
  font-size: 16px;
  line-height: 28px;
  color: #475569;
}

.images-contact img {
  width: 100%;
  object-fit: cover;
  border-radius: 22px;
}

.connect-form .form {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  padding: 40px;
  border-radius: 20px;
  width: 100%;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
  position: relative;
  overflow: hidden;
}

.connect-form .form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid rgba(255, 122, 26, 0.3);
  pointer-events: none;
}

.hsfc-Step__Content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.FormWrapper form {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.form_Row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
  width: 100%;
}

.form_Row:last-child {
  grid-template-columns: 1fr;
}

.TextField textarea {
  width: 100%;
}

.TextField {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.FieldLabel {
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  color: #0f172a;
  padding-top: 0;
  margin-bottom: 3px;
  font-family: 'Nunito Sans', sans-serif;
}

.form-select {
   padding: 12px 14px !important;
  border: 1px solid rgba(148, 163, 184, 0.6) !important;
  border-radius: 10px !important;
  font-size: 14px !important;
  outline: none !important;
  width: 100% !important;  
}
.connect-form_input,
.TextField textarea {
  padding: 12px 14px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  border-radius: 10px;
  font-size: 14px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #ffffff;
}

.connect-form_input:focus,
.TextField textarea:focus,
.form-select:focus {
  border-color: rgba(34, 197, 94, 0.8) !important;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
}

.TextField textarea {
  resize: none;
  min-height: 120px;
}

.connect-form h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #0f172a;
  text-align: center;
  padding: 10px 0 26px;
}

button#Button {
  font-size: 16px;
  font-family: 'Nunito Sans', sans-serif;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  width: 140px;
  padding: 10px 12px;
  border: none;
  outline: none;
  color: #fff;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 12px 24px rgba(34, 197, 94, 0.25);
}

button#Button:hover {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(34, 197, 94, 0.3);
}

/* =========================
   RESPONSIVE
========================= */


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

  .blog-detail_row {
    grid-template-columns: 1fr;
  }

  .blog_lift-col {
    position: relative;
    top: 0;
    margin-bottom: 30px;
  }

  .schedule-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .images-contact img {
    max-width: 100%;
  }

  .images-contact img {
    display: none;
  }
}

@media (max-width: 600px) {
  .blog_grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  section.blog_section {
    padding: 30px 0;
  }

  .blog_thumb_box img {
    height: 190px;
  }

  .blog-title {
    font-size: 20px;
    line-height: 1.3;
  }
}

@media (max-width: 576px) {
  .blog-detail_section {
    padding: 40px 0;
  }

  .blog-detail_meilss h2 {
    font-size: 22px;
  }

  .blog_list li a {
    font-size: 14px;
  }

  .hero-section-contact {
    padding: 50px 0;
  }

  .schedule-content-heading h1 {
    font-size: 32px;
  }

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

  .connect-form .form {
    padding: 25px;
  }
}
