/* Balcony Safety Nets Section */
.balcony-nets-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.balcony-image-box {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.balcony-image-box img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.balcony-image-box:hover img {
  transform: scale(1.06);
}

.balcony-content-box h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0d6efd;
  margin-bottom: 20px;
}

.balcony-content-box p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

.balcony-features {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.balcony-features li {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}

.balcony-btn {
  background: linear-gradient(135deg, #0d6efd, #084298);
  color: #fff;
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.balcony-btn:hover {
  background: linear-gradient(135deg, #084298, #0d6efd);
  color: #fff;
  transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .balcony-image-box img {
    height: auto;
  }

  .balcony-content-box h2 {
    font-size: 28px;
  }
}







/* ===== MAIN SECTION ===== */
.blueBalconySection {
  padding: 90px 0;
  background: linear-gradient(135deg, #eef5ff, #f7fbff);
}

/* ===== LEFT CONTENT ===== */
.blueContentWrap {
  background: #ffffff;
  padding: 55px;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 20px 55px rgba(0, 64, 133, 0.12);
  transition: transform 0.4s ease;
}

.blueContentWrap:hover {
  transform: translateY(-6px);
}

/* ===== TITLE ===== */
.blueTitle {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 22px;
  color: #0b2d5c;
}

.blueTitle span {
  color: #0a58ff;
}

/* ===== TEXT ===== */
.blueContentWrap p {
  line-height: 1.9;
  color: #333;
  margin-bottom: 15px;
}

/* ===== SEO GRID ===== */
.blueSeoGrid {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.blueSeoGrid span {
  background: #eef4ff;
  border-left: 4px solid #0a58ff;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14.5px;
  transition: background 0.3s ease;
}

.blueSeoGrid span:hover {
  background: #dfeaff;
}

/* ===== RIGHT MEDIA ===== */
.blueMediaWrap {
  background: #ffffff;
  padding: 18px;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(0, 64, 133, 0.15);
}

/* ===== FIXED IMAGE ===== */
.blueImageFrame {
  width: 100%;
  height: 340px;
  border-radius: 16px;
  overflow: hidden;
}

.blueImageFrame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blueImageFrame:hover img {
  transform: scale(1.08);
}

/* ===== USES BOX ===== */
.blueUsesBox {
  margin-top: 20px;
}

.blueUsesBox h5 {
  color: #0a58ff;
  font-weight: 700;
  margin-bottom: 10px;
}

.blueUsesBox ul {
  list-style: none;
  padding: 0;
}

.blueUsesBox li {
  padding-left: 22px;
  margin-bottom: 8px;
  position: relative;
  color: #333;
}

.blueUsesBox li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0a58ff;
  font-weight: bold;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .blueSeoGrid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .blueContentWrap {
    padding: 35px;
  }

  .blueTitle {
    font-size: 28px;
  }

  .blueImageFrame {
    height: 260px;
  }
}



.balconyFaqSection {
  background: #f4f8ff;
  padding: 80px 0;
}

.faqHeader h2 {
  font-weight: 800;
  color: #0a58ff;
}

.faqHeader span {
  color: #003b99;
}

.faqHeader p {
  max-width: 700px;
  margin: 10px auto 40px;
  color: #555;
}

.balconyFaqAccordion .accordion-item {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.balconyFaqAccordion .accordion-button {
  font-weight: 600;
  background: #ffffff;
  color: #0a58ff;
}

.balconyFaqAccordion .accordion-button:not(.collapsed) {
  background: #eaf1ff;
  color: #003b99;
}

.balconyFaqAccordion .accordion-body {
  line-height: 1.8;
  color: #333;
}
