:root {
  --navy: #0C1B2A;
  --navy-mid: #112438;
  --navy-light: #1A3049;
  --teal: #1E7D5C;
  --teal-bright: #25A676;
  --teal-glow: #2ED88A;
  --gold: #C9A84C;
  --cream: #F7F3EC;
  --white: #FFFFFF;
  --text-primary: rgba(255, 255, 255, 0.92);
  --text-secondary: rgba(255, 255, 255, 0.55);
  --text-muted: rgba(255, 255, 255, 0.30);
  --border: rgba(255, 255, 255, 0.08);
  --border-teal: rgba(30, 125, 92, 0.3);
}



/* ── UTILITY ─────────────────────────────────────────── */


.slick-next::after,
.slick-prev::after {
  display: none !important;
}

.docs-grid .slider-prev-btn,
.docs-grid .slick-next {
  /* top: -180px !important; */
  bottom: -85px !important;
  top: unset;
  transform: translateX(-50%);
  right: 50%;
}


.docs-grid .slick-next {
  right: 45.5%;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 20px;
}

.section-tag::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--teal-bright);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}

.section-title em {
  font-style: italic;
  color: var(--teal-bright);
}

.section-body {
  max-width: 620px;
}




/* ── HERO ────────────────────────────────────────────── */

.drukgreen-hero-section .hero-content {
  align-items: center;
}

.hero-content-wrapper {
  max-width: 420px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  justify-content: center;
  padding: 0 80px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}

.hero-h1 {
  font-size: 48px;
  margin-bottom: 28px;
  color: #FFFFFF;
  font-weight: 600;
  line-height: 1.1;
}

.hero-h1 em {
  font-style: italic;
  color: var(--teal-bright);
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 480px;
}

/* Hero stats card */
.hero-stats {
  background: rgba(255, 255, 255, 0.093);
  border: 1px solid #ffffffa0;
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(4px);

}

.hero-stats-title {
  padding-bottom: 16px;
  border-bottom: 1px solid #ffffff4d;
  font-size: 13px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
}

.hero-stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid #ffffff4d;
}

.hero-stat:last-child {
  border-bottom: none;
}

.hero-stat-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-transform: capitalize;
}

.hero-stat-value {
  font-weight: 500;
  font-size: 17px;
  color: #fff;
}

/* ── ESG COMMITMENT (Opening) ────────────────────────── */
.esg-opening {
  background-color: #fff;
}

.esg-opening-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.esg-opening-left {
  max-width: 560px;
}

.esg-opening-left .drukgreen-heading-primary {
  margin-bottom: 30px;

}

.right-para-col-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}



.esg-opening-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;

}


.esg-highlight {
  padding: 45px 50px;
  background: #F0FBF5;
  border-left: 4px solid #0B9146;
  margin-top: -10px;
  border-radius: 30px;
}


/* ── ESG 3 PILLARS ───────────────────────────────────── */
.pillars-section {
  background: #FAFAFA;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pillars-inner {
  margin: 0 auto;
}

.pillars-header {
  max-width: 580px;
  margin-bottom: 30px;
}

.pillars-header {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.pillars-header .section-body {
  margin: 0 auto;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillar-card {
  position: relative;
  background: linear-gradient(125.06deg, #0B9146 1.95%, #243F80 94.81%);
  border-radius: 20px;
  padding: 30px;
  transition: border-color 0.3s, transform 0.3s;
  overflow: hidden;
}

.pillar-card:hover {
  border-color: var(--border-teal);
  transform: translateY(-4px);
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-bright));
  opacity: 0;
  transition: opacity 0.3s;
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-num {
  font-weight: 500;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
  position: absolute;
  right: 30px;
}

.pillar-icon {
  width: 70px;
  height: 70px;
  background: #0F6D4C;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  padding: 10px;
}

.pillar-card-title {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 16px;
}

.pillar-card-body {
  font-size: 14px;
  font-weight: 400;
  color: rgb(255, 255, 255, 0.7);
  line-height: 1.4;
  max-width: 320px;
}

/* ── ESG STRATEGY ────────────────────────────────────── */
.strategy-section {
  margin: 0 auto;
  background: linear-gradient(90deg, #0B9146 0%, #243F80 93.86%);
}


.txt-white {
  color: #fff !important;
}

.strategy-left .common-grdient-text.txt-white {
  -webkit-text-fill-color: unset;
}

.strategy-left .heading-radient-wrapper {
  margin-bottom: 30px;
}

.strategy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}


.strategy-right p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7) !important;
}


.strategy-mask-wrapper {
  border: 20px;
  position: relative;
  overflow: hidden;
  height: 450px;
  margin-top: 30px;
}

.strategy-mask-wrapper img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  border-radius: 20px;
}

/* ── ENVIRONMENTAL PRACTICES (Accordion) ─────────────── */
.env-section {
  background: #FAFAFA;
}

.env-inner {
  margin: 0 auto;
}

.env-inner .heading-radient-wrapper {
  max-width: 480px;
  margin-bottom: 30px;
}

.env-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.env-left {
  position: sticky;
  top: 120px;
}

.env-image {
  display: none;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background:
    url('../images/sustainability/env-bg.jpg') center/cover;
}

.env-image.active {
  display: block;
}

.accordion-item {
  border-bottom: 0.74px solid #E0E0E0;
}


.accordion-header svg {
  transform: rotate(0);
  transition: all 0.6s ease;
}


.accordion-item.open .accordion-header svg {
  transform: rotate(180deg);
}

.accordion-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  cursor: pointer;
  transition: color 0.25s;
}

.accordion-header:hover {
  color: var(--teal-bright);
}

.accordion-num {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: transparent;
  width: 36px;
  height: 36px;
  color: #0B9146;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid #0B9146;
  border-radius: 50%;
}

.accordion-item.open .accordion-num {
  background-color: #0B9146;
  color: #fff;
  border-color: #0B9146;
}

.accordion-title {
  color: #404040;
  font-weight: 500;
  font-size: 18px;
  flex: 1;
}

.accordion-chevron {
  width: 20px;
  height: 20px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.accordion-item.open .accordion-chevron {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-body-inner {
  padding: 0 0 30px 0;
}

/* ── CSR & COMMUNITY ─────────────────────────────────── */
.csr-section {
  background-color: #ffff;
}

env-right .csr-inner {
  margin: 0 auto;
}

.csr-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 30px;
  align-items: end;
}

.csr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.csr-card {
  background: linear-gradient(124.61deg, #0B9146 1.95%, #243F80 96.3%);
  border-radius: 20px;
  padding: 20px;
  transition: all 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.docs-card-inner {
  height: 100%;
}

.csr-card:hover {
  border-color: var(--border-teal);
  transform: translateY(-3px);
}

.csr-card-num,
.gov-card-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  margin-bottom: 35px;
  position: absolute;
  right: 30px;
}

.csr-card-icon {
  width: 70px;
  height: 70px;
  background-color: #0F6D4C;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.doc-card-icon {
  width: 60px;
  height: 60px;
  background-color: #0F6D4C;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.csr-card-icon img {
  width: 45px;
}

.doc-card-icon img {
  width: 22px;
}

.csr-card-title,
.gov-card-title {
  margin-bottom: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.csr-card-body,
.gov-card-body {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  max-width: 95%;
}

/* ── COMMUNITY & INCLUSION ───────────────────────────── */
.community-section {

  background-color: #FAFAFA;
}

.community-inner {
  margin: 0 auto;
}

.community-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
}


.community-para-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 30px;
}


.community-para-wrap p {
  margin-bottom: 20px;
  max-width: 580px;
}

.community-para-wrap p:first-child {
  margin-right: 30px;
}

.community-initiatives {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.initiative-card {
  background-color: #FFFFFF;
  border: 1px solid #DFDFDF;
  border-radius: 14px;
  padding: 30px;
}

.initiative-card-title {
  color: #404040;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.community-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.community-stat-block {
  padding: 30px;
  background: linear-gradient(96.82deg, #0B9146 1.22%, #243F80 98.72%);
  border-radius: 14px;
  margin-bottom: 15px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.community-card-icon {
  display: flex;
  align-items: center;
}

.community-stat-num {
  font-size: 48px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 8px;
}

.community-stat-label {
  font-size: 14px;
  color: rgb(255, 255, 255, 0.7);
  line-height: 1.3;
  max-width: 250px;
}

.community-stat-small {
  padding: 24px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.community-stat-small .community-stat-num {
  font-size: 1.6rem;
}

/* ── GOVERNANCE ──────────────────────────────────────── */
.gov-section {
  background-color: #FFFFFF;
}

.gov-inner {
  margin: 0 auto;
}

.gov-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.gov-header .section-body {
  /* max-width: 1000px; */
  max-width: 100%;
}

.gov-grid {
  /* display: grid;
  grid-template-columns: repeat(3, 1fr); */
  display: flex;
  flex-wrap: wrap;
  align-items: unset;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.gov-card {
  background: linear-gradient(125.06deg, #0B9146 1.95%, #243F80 94.81%);
  border-radius: 20px;
  padding: 30px;
  /* max-width: 440px; */
  position: relative;
}


.gov-card-label {
  margin-bottom: 20px;
}

.gov-card-title {
  margin-bottom: 14px;
}

.gov-card-body {
  max-width: 95%;
}

.gov-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  padding: 40px;
  background-color: #EFFBF4;
  border-radius: 20px;
  align-items: start;
}

.gov-note-icon {
  /* width: 200px; */
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #E8E5E5;
  padding-right: 40px;
}

.gov-note-icon img {
  width: 80px;
}

.gov-note-title {
  color: #404040;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 8px;
}

.gov-note-body {
  max-width: 95%;
}

/* ── REPORTS & DOWNLOADS ─────────────────────────────── */
.docs-section {
  background-color: #FAFAFA;
  padding-bottom: 120px;
}

.docs-inner {
  margin: 0 auto;
}

.docs-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.docs-header .section-body {
  max-width: 1000px;
}

.docs-grid {
  /* display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px; */
  position: relative;
}

.docs-grid .slick-track {
  display: flex;
}

.doc-card {
  background: linear-gradient(125.06deg, #0B9146 1.95%, #243F80 94.81%);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
  margin: 0 10px;
  height: auto;
}

.doc-card:hover {
  transform: translateY(-2px);
}




.doc-card-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.doc-card-desc {
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 24px;
  flex: 1;
}

.doc-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row-reverse;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: color 0.25s;
}

.doc-card-btn:hover {
  color: #ffffffa8;
}

.doc-card-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

/* ── SDG ALIGNMENT STRIP ─────────────────────────────── */
.sdg-strip {
  background-color: #fff;
}

.sdg-strip .drukgreen-heading-primary {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.sdg-inner {
  margin: 0 auto;
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.sdg-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

.sdg-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.sdg-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px;
  background-color: #EFFBF4;
  border-radius: 14px;
}

.sdg-badge {
  width: 90px;
  height: 90px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 500;
  color: #EFFBF4;
  flex-shrink: 0;
  background-color: #0B9146;
}



.sdg-item-text {
  color: #404040;
  font-size: 14px;
  font-weight: 500;
}

/* ── CLOSING CTA ─────────────────────────────────────── */
.closing {
  position: relative;
  background-color: #FAFAFA;
}

.closing-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 125, 92, 0.12), transparent 70%);
  filter: blur(80px);
}

.closing-inner {
  position: relative;
  z-index: 2;
  max-width: 580px;
  margin: 0 auto;
}


.closing-inner .heading-radient {
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.closing-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}

.closing-title em {
  font-style: italic;
  color: var(--teal-bright);
}

.closing-desc {
  max-width: 560px;
  margin: 30px auto 40px;
}

.closing .drukgreen-heading-primary {
  line-height: 1.2;

}


.btn-row {
  display: flex;
  gap: 16px;
  justify-content: center;
}


.esg-opening .hero-stats {
  display: none;
}



/* ── RESPONSIVE ──────────────────────────────────────── */

@media (min-width: 1919px) {
  .hero-tag {
    font-size: 17px;
  }

  .hero-h1 {
    font-size: 64px;
  }

  .hero-content-wrapper {
    max-width: 560px;
  }


  .hero-stats-title {
    font-size: 17px;
  }

  .hero-stat-label {
    font-size: 17px;
  }

  .hero-stat-value {
    font-size: 23px;
  }

  .esg-opening-left {
    max-width: 680px;
  }

  .pillars-header {
    max-width: 680px;
  }

  .piiler-num {
    font-size: 16px;
  }

  .pillar-icon {
    width: 90px;
    height: 90px;

  }

  .pillar-card-title {
    font-size: 24px;
  }

  .pillar-card-body {
    font-size: 19px;
    max-width: 420px;
  }

  .section-body {
    max-width: 720px;
  }

  .strategy-mask-wrapper {
    height: 600px;
  }

  .accordion-num,
  .gov-card-label {
    width: 48px;
    height: 48px;
  }

  .accordion-title {
    font-size: 24px;
  }

  .csr-card-num {
    font-size: 16px;
  }

  .csr-card-icon {
    width: 90px;
    height: 90px;
  }

  .doc-card-icon {
    width: 60px;
    height: 60px;
  }

  .doc-card-icon img {
    width: 30px;
    height: 30px;
  }

  .csr-card-icon img {
    width: 60px;
    height: 60px;
  }

  .csr-card-title,
  .gov-card-title {
    font-size: 24px;
  }

  .csr-card-body,
  .gov-card-body {
    font-size: 18px;
  }

  .community-para-wrap p {
    max-width: 720px;
  }

  .community-stat-num {
    font-size: 64px;
  }

  .community-stat-label {
    font-size: 18px;
    max-width: 320px;
  }

  .initiative-card-title {
    font-size: 24px;
  }

  .gov-note-title {
    font-size: 24px;
  }

  .sdg-badge {
    width: 120px;
    height: 120px;
    font-size: 64px;
  }

  .sdg-item-text {
    font-size: 18px;
  }
}

@media(max-width: 1199px) {
  /* .docs-grid {
    grid-template-columns: 1fr 1fr 1fr;
  } */

      .docs-grid .slider-prev-btn{
   left: 42%;
}

}

@media(max-width:1024px) {

  .hero-stat .hero-stat-wrapper svg {
    position: absolute;
    right: 0;
    display: none;
  }

  .hero-stat-num {
    display: none;
  }

  .hero-stats {
    display: none;
    position: relative;
  }

  .esg-opening .hero-stats {
    display: block !important;
    padding: 20px 30px;
  }

  .hero-stat .hero-stat-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 16px 0;
    gap: 15px;
    position: relative;
    justify-content: space-between;
    flex-direction: row-reverse;
  }

  .esg-opening .hero-stats {
    background-color: #FAFAFA;
    border: none;
    backdrop-filter: unset;
    position: relative;
    top: -75px;
    z-index: 10;
  }

  .dgpc-Sustainbility-page .esg-opening .esg-opening-grid {
    margin-top: -50px;
  }

  .esg-opening-left .drukgreen-heading-primaryj,
  .strategy-left .heading-radient-wrapper,
  .env-inner .heading-radient-wrapper {
    margin-bottom: 20px;
  }

  .pillars-header {
    gap: 20px;
  }



  .hero-stat,
  .hero-stat:last-child {
    padding: 0;
    border-bottom: 1px solid #E0E0E0;
  }

  .esg-opening .hero-stat-value {
    color: #404040;
    font-size: 15px;
  }

  .esg-opening .hero-stat-label {
    color: #404040be;
    font-size: 13px;
  }

  .esg-opening .hero-stat .hero-stat-wrapper svg path {
    stroke: #404040;
  }

  .hero-inner {
    padding: 0 40px;
  }

  .hero-inner {
    padding: 0 20px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .esg-opening.hero-stats {
    display: none;
  }


  .esg-opening-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }



  .pillars-grid,
  .csr-grid,
  .gov-grid,
  .sdg-content,
  .community-initiatives {
    display: flex;
    flex-direction: row;
    overflow: auto;
    margin-right: -30px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 15px;
    flex-wrap: nowrap;
    align-items: unset;
    justify-content: unset;
  }

  .docs-grid {
    margin-right: -30px;
  }

  .pillar-card,
  .csr-card,
  .gov-card,
  .sdg-item,
  .initiative-card {
    min-width: 380px;
    max-width: unset;
  }

  .pillar-card:last-child,
  .csr-card:last-child,
  .gov-card:last-child,
  .sdg-item:last-child,
  .initiative-card:last-child {
    margin-right: 10px;
  }


  .strategy-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }


  .env-grid {
    gap: 20px;
    display: flex;
    flex-direction: column-reverse;
  }

  .env-image {
    height: 450px;
    width: 100%;
  }


  .env-left {
    position: static;
    margin: auto;
  }


  .csr-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .csr-grid {
    grid-template-columns: 1fr 1fr;
  }


  .community-grid {
    grid-template-columns: 1fr;
  }

  .community-initiatives {
    grid-template-columns: 1fr;
  }


  .gov-header {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .docs-grid {
    grid-template-columns: 1fr 1fr;
  }


  .sdg-inner {
    grid-template-columns: 1fr;
  }

  .sdg-label {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .sdg-content {
    grid-template-columns: 1fr 1fr;
  }


  .community-right {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .strategy-grid {
    gap: 20px;
  }

  .strategy-right p {
    color: #fff !important;

  }
}

@media (max-width:767px) {
  .hero-content-wrapper {
    margin: auto;
  }

  .hero-tag {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
  }

  .hero-h1 {
    font-size: 24px;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 20px;
  }

  .hero-content-wrapper .drukgreen-para-primary {
    text-align: center;
  }

  .esg-highlight {
    padding: 20px;
  }

  .drukgreen-heading-primary {
    line-height: 1.3;
  }

  .env-image {
    height: 300px;
  }

  .csr-card-num,
  .pillar-num {
    position: absolute;
    right: 30px;
  }

        .docs-grid .slider-prev-btn{
   left: 44%;
}

}

@media(max-width:600px) {
  .csr-grid {
    grid-template-columns: 1fr;
  }

  .sdg-content {
    grid-template-columns: 1fr;
  }

  .btn-row {
    flex-direction: column;
    align-items: center;
  }

  .btn-row .drukgreen-btn {
    max-width: 100%;
    width: 100%;
  }

  .btn-row .drukgreen-btn .btn-icon {
    position: relative;
    position: unset;
    transform: unset;
    transition: unset;
    margin-left: 10px;
  }

  .strategy-mask-wrapper {
    height: 300px;
    margin-top: 10px;
  }

  .community-para-wrap {
    grid-template-columns: 1fr;
  }

  .community-para-wrap p:first-child {
    margin-right: 0;
  }

  .gov-note-title {
    max-width: 70%;
    margin-bottom: 15px;
    padding-left: 70px;

  }

  .gov-note {
    grid-template-columns: 1fr;
    padding: 20px;
    position: relative;
    gap: 0;
  }

  .gov-note-icon {
    border-right: 0;
    padding: 0;

    position: absolute;
    top: 20px;
    left: 20px;
    align-items: flex-start;
    display: inline;
    height: auto;
  }

  .gov-note-icon img {
    width: 50px;
  }

  .docs-grid {
    grid-template-columns: 1fr;
  }

  .esg-opening .hero-stats {
    padding: 20px 15px;
  }

  .closing-inner .heading-radient {
    justify-content: flex-start;
    margin-bottom: 10px;
  }

  .closing .drukgreen-heading-primary {
    text-align: start;
    max-width: 75%;
  }

  .closing-desc {
    text-align: start;
    margin: 20px auto;
  }

  .env-image {
    height: 300px;
  }

  .doc-card {
    margin: 0 7px;
  }


  .docs-grid .slider-prev-btn,
  .docs-grid .slick-next {
    width: 40px !important;
    height: 40px !important;
  }

  .docs-grid .slider-prev-btn {
    margin-right: 0 !important;
  }

  .docs-grid .slider-prev-btn{
    left: 42%;
  }

  .docs-grid .slick-next{
    right: 32.5%;
  }

}

@media (max-width:480px) {

  .pillar-card,
  .csr-card,
  .gov-card,
  .sdg-item,
  .initiative-card {
    min-width: 360px;
    padding: 25px;
  }

  .pillars-grid,
  .csr-grid,
  .gov-grid,
  .docs-grid,
  .sdg-content,
  .community-initiatives {
    margin-right: -20px;
  }

  .env-image {
    height: 260px;
  }

  .csr-card-num,
  .pillar-num {
    right: 25px;
  }

  .gov-note-title {
    max-width: 90%;
  }

}

@media (max-width:360px) {
  .env-image {
    height: 220px;
  }

  .gov-note-title {
    max-width: 100%;
  }

  .pillar-card,
  .csr-card,
  .gov-card,
  .sdg-item,
  .initiative-card {
    min-width: 320px;
  }
}