
/* Section */
.sectors-section {
  overflow: hidden;
  padding: 60px 0;
  position: relative;
  background: #fff;
}

.sectors-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 12px;
  z-index: 20;
  color: var(--brown-color);
  font-size: 70px;
  font-weight: 700;
  line-height: 1.2;
}

.section-title em {
  color: var(--subtitle-color);
}

.section-description {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
  color: #000000;
  z-index: 20;
}

/* Carousel */
.carousel {
  position: relative;
  width: 100%;
  z-index: 10;
  padding: 0 40px;
  /* 👈 desktop sides padding */
  box-sizing: border-box;
}

.viewport {
  overflow: hidden;
  width: 100%;
}

.track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
  will-change: transform;
}

.card {
  flex: 0 0 calc((100% - (3 * 24px)) / 4);
  /* 4 visible by default */
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  position: relative;
  text-decoration: none;
  color: inherit;
  min-width: 0;
  /* flex overflow fix */
}

.sector-image {
  height: 300px;
  overflow: hidden;
}

.sector-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sector-tag-1 {
  position: absolute;
  top: 30px;
  left: 25px;
  background: #fff;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

.sector-tag-1 svg {
  margin-top: 4px;
}

.sector-tag {
  position: absolute;
  top: 30px;
  left: 62px;
  background: #fff;
  padding: 8px 14px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  z-index: 10;
  transition: opacity 0.25s;
}

.arrow.left {
  left: 10px;
  /* padding ke andar */
}

.arrow.right {
  right: 10px;
  /* padding ke andar */
}

.arrow.hidden {
  display: none;
}

/* Background Decoration */
.sectors-background {
  position: absolute;
  top: 35%;
  left: 0;
  right: 0;
  pointer-events: none;
  opacity: 1;
}

.background-svg {
  width: 150%;
  height: auto;
  margin-left: -10%;
}

/* Tablet */
@media (max-width: 991px) {
  .card {
    flex: 0 0 calc((100% - 24px) / 2);
    /* 2 visible */
  }
}

/* Mobile */
@media (max-width: 767px) {
  .carousel {
    padding: 0 20px;
    /* mobile sides padding */
  }

  .card {
    flex: 0 0 100%;
    /* 1 visible */
  }

  .sector-image {
    height: 220px;
  }

  .section-title {
    font-size: 36px;
  }

  .sectors-background {
    top: 45%;
  }
}



























































.single-blog-section {
  width: 100%;
  display: flex;
  justify-content: center;
}

.blog-section-main-single {
  width: 60%;
  margin: 0;
  padding: 40px 0;
}

.blog-thumb {
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 20px;
}

.blog-thumb img {
  width: 100%;
  height: 380px;
  border-radius: 20px;
  display: block;
  object-fit: cover;
}

.blog-subtitle {
  color: #000;
  font-family: outfit, sans-serif;
  font-size: 30px;
  font-weight: 700;
  margin-top: 50px;
  margin-bottom: 15px;
}

.blog-meta-line {
  display: flex;
  align-items: center;
  margin-top: 15px;
  font-size: 12px;
  text-transform: uppercase;
  gap: 8px;
  flex-wrap: nowrap;
}

.blog-meta-line span {
  color: #3a3a3a;
  font-weight: 500;
}

.blog-meta-author {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-meta-author svg {
  flex-shrink: 0;
}

.blog-meta-sep {
  margin: 0 4px;
}

.page-blog-content {
  margin-top: 50px;
}

.page-blog-content h4 {
  font-size: 30px;
  color: #000;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-blog-content p {
  font-size: 16px;
  color: #363636;
  line-height: 1.7;
}

/* ✅ Mobile Responsive Fix */
@media (max-width: 600px) {

  .single-blog-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .blog-section-main-single {
    width: 100%;
  }

  .blog-meta-line {
    flex-wrap: wrap;
    width: 50%;
    line-height: 1;
  }

  .blog-subtitle {
    font-size: 22px;
    margin-top: 30px;
  }

  .blog-thumb img {
    height: 180px;
  }

  .page-blog-content h4 {
    font-size: 22px;
  }

  .page-blog-content p {
    font-size: 14px;
  }
}