/* LIVE PRO PROJECT - IMAGE GRIDS */

.live-pro-hero-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.live-pro-img-grid-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
}

.live-pro-img-grid-three img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  background: #1a1a1a;
}

/* Row 3 - Grid */
.live-pro-img-grid-half-row3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.live-pro-img-grid-half-row3 .live-pro-grid-img-4,
.live-pro-img-grid-half-row3 .live-pro-grid-img-5 {
  aspect-ratio: 3/2;
}

.live-pro-img-grid-half-row3 img {
  width: 100%;
  height: auto;
  object-fit: cover;
  background: #1a1a1a;
  object-position: center top;
}

/* Row 4 - Grid */
.live-pro-img-grid-half-row4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.live-pro-img-grid-half-row4 .live-pro-grid-img-6,
.live-pro-img-grid-half-row4 .live-pro-grid-img-7 {
  aspect-ratio: 4/5;
}

.live-pro-img-grid-half-row4 img {
  width: 100%;
  height: auto;
  object-fit: cover;
  background: #1a1a1a;
}

/* Responsive */
@media (max-width: 768px) {
  .project-hero-img {
    aspect-ratio: 16/9;
  }

  .live-pro-img-grid-three {
    grid-template-columns: repeat(2, 1fr);
  }

  .live-pro-img-grid-three img:last-child {
    grid-column: 1 / -1;
  }

  .live-pro-img-grid-half-row3,
  .live-pro-img-grid-half-row4 {
    grid-template-columns: 1fr;
  }
}

/* TAYAARI PROJECT - IMAGE GRIDS */

.tayaari-hero-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 16/9;
}

/* Row 2 - 2 col grid */
.tayaari-img-grid-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.tayaari-img-grid-row2 img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 3/2;
  background: #1a1a1a;
}

/* Row 3 - 3 col grid */
.tayaari-img-grid-row3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.tayaari-img-grid-row3 img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 3/2;
  background: #1a1a1a;
}

/* Row 4 - 2 col grid */
.tayaari-img-grid-row4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.tayaari-img-grid-row4 img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1;
  background: #1a1a1a;
}

/* Responsive */
@media (max-width: 768px) {
  .tayaari-img-grid-row2,
  .tayaari-img-grid-row4 {
    grid-template-columns: 1fr;
  }

  .tayaari-img-grid-row3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .tayaari-img-grid-row3 img:last-child{
    grid-column: 1 / -1;
  }
}

/* AARAMBH PROJECT - IMAGE GRIDS */

.aarambh-hero-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 16/9;
}

/* Row 2 - 2 col grid */
.aarambh-img-grid-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.aarambh-img-grid-row2 img,
.aarambh-img-grid-row2 video {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3/2;
  background: #1a1a1a;
}

/* Row 3 - Full width */
.aarambh-img-grid-row3 img,
.aarambh-img-grid-row3 video {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 16/9;
  background: #1a1a1a;
}

/* Responsive */
@media (max-width: 768px) {
  .aarambh-img-grid-row2 {
    grid-template-columns: 1fr;
  }
}

/* OSWAL PROJECT - IMAGE GRIDS */

.oswal-hero-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 16/9;
}

.oswal-hero-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}

.oswal-hero-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}


/* Row 2 - 2 col portrait */
.oswal-img-grid-row2 {
  gap: 40px;
  align-items: start;
}

.oswal-img-grid-row2 img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/1;
  object-fit: cover;
  background: #1a1a1a;
}

/* Row 3 - 2 col landscape */
.oswal-img-grid-row3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.oswal-img-grid-row3 img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  background: #1a1a1a;
}

/* Row 4 - 3 col portrait */
.oswal-img-grid-row4 {
  gap: 40px;
  align-items: start;
}

.oswal-img-grid-row4 img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: contain;
  background: #1a1a1a;
}

.oswal-img-grid-row5 {
  gap: 40px;
  align-items: start;
}

.oswal-img-grid-row5 img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: contain;
  background: #1a1a1a;
}

.oswal-img-grid-row6 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.oswal-img-grid-row6 img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  background: #1a1a1a;
}

.oswal-img-grid-row7 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.oswal-img-grid-row7 img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  background: #1a1a1a;
}

.oswal-img-grid-row8 {
  gap: 40px;
  align-items: start;
}

.oswal-img-grid-row8 img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/1;
  object-fit: cover;
  background: #1a1a1a;
}

.oswal-img-grid-row9 {
  gap: 40px;
  align-items: start;
}

.oswal-img-grid-row9 img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #1a1a1a;
}

.oswal-img-grid-row10 {
  gap: 40px;
  align-items: start;
}

.oswal-img-grid-row10 img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #1a1a1a;
}

.oswal-img-grid-row11 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.oswal-img-grid-row11 img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  background: #1a1a1a;
}

.oswal-img-grid-row12 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.oswal-img-grid-row12 img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  background: #1a1a1a;
}

.oswal-img-grid-row13 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.oswal-img-grid-row13 img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  background: #1a1a1a;
}

.oswal-img-grid-row14 {
  gap: 40px;
  align-items: start;
}

.oswal-img-grid-row14 img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #1a1a1a;
}

.oswal-img-grid-row15 {
  gap: 40px;
  align-items: start;
}

.oswal-img-grid-row15 img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #1a1a1a;
}

.oswal-img-grid-row16 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
}

.oswal-img-grid-row16 video {
  width: 100%;
  height: auto;
  aspect-ratio: 9/16;
  object-fit: cover;
  background: #1a1a1a;
}

/* Responsive */
@media (max-width: 768px) {
  .oswal-img-grid-row2,
  .oswal-img-grid-row3 {
    grid-template-columns: 1fr;
  }

  .oswal-img-grid-row4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .oswal-img-grid-row4 img:last-child {
    grid-column: 1 / -1;
  }
}

/* BOOKS PROJECT - IMAGE GRIDS */

.books-hero-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 16/9;
}

/* Row 2 - 2 col landscape */
.books-img-grid-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.books-img-grid-row2 img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 4/5;
  background: #1a1a1a;
}

/* Row 3 - Full width */
.books-img-grid-row3 img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 16/9;
  background: #1a1a1a;
}

/* Responsive */
@media (max-width: 768px) {
  .books-img-grid-row2 {
    grid-template-columns: 1fr;
  }
}

/* SATSURE PROJECT - IMAGE GRIDS */

.satsure-hero-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}

.satsure-hero-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Row 2 - Full width */
.satsure-img-grid-row2 img,
.satsure-img-grid-row2 video {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 4/1;
  background: #1a1a1a;
}

/* Row 3 - 2 col */
.satsure-img-grid-row3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.satsure-img-grid-row3 img,
.satsure-img-grid-row3 video {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 4/5;
  background: #1a1a1a;
}

/* Row 4 - Full width */
.satsure-img-grid-row4 img,
.satsure-img-grid-row4 video {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 16/9;
  background: #1a1a1a;
}

/* Row 5 - Full width */
.satsure-img-grid-row5 img,
.satsure-img-grid-row5 video {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 4/1;
  background: #1a1a1a;
}

/* Row 6 - 2 col */
.satsure-img-grid-row6 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.satsure-img-grid-row6 img,
.satsure-img-grid-row6 video {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 3/2;
  background: #1a1a1a;
}

/* Responsive */
@media (max-width: 768px) {
  .satsure-img-grid-row3,
  .satsure-img-grid-row6 {
    grid-template-columns: 1fr;
  }
}

/* NIPPON PROJECT - IMAGE GRIDS */

.nippon-hero-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 16/9;
}

/* Row 2 - 2 col landscape */
.nippon-img-grid-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.nippon-img-grid-row2 img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 3/2;
  background: #1a1a1a;
}

/* Row 3 - 2 col portrait */
.nippon-img-grid-row3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.nippon-img-grid-row3 img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: #1a1a1a;
}

/* Row 4 - 2 col portrait */
.nippon-img-grid-row4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.nippon-img-grid-row4 img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  
  background: #1a1a1a;
}

/* Responsive */
@media (max-width: 768px) {
  .nippon-img-grid-row2,
  .nippon-img-grid-row3,
  .nippon-img-grid-row4 {
    grid-template-columns: 1fr;
  }
}

/* EXCHANGE PROJECT - IMAGE GRIDS */

/* Row 1 - 3 col */
.exchange-img-grid-row1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
}

.exchange-img-grid-row1 img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 9/16;
  background: #1a1a1a;
}

.exchange-img-grid-row1 video {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 9/16;
  background: #1a1a1a;
}

/* Row 2 - Full width */
.exchange-img-grid-row2 img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 16/9;
  background: #1a1a1a;
}

/* Row 3 - 3 col */
.exchange-img-grid-row3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
}

.exchange-img-grid-row3 img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 4/5;
  background: #1a1a1a;
}

/* Responsive */
@media (max-width: 768px) {
  .exchange-img-grid-row1 {
    grid-template-columns: repeat(2, 1fr);
  }

  .exchange-img-grid-row1 img:last-child {
    grid-column: 1 / -1;
  }

  .exchange-img-grid-row3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .exchange-img-grid-row3 img:last-child {
    grid-column: 1 / -1;
  }
}

/* MADHAVBAUG PROJECT - IMAGE GRIDS */

.madhavbaug-hero-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 16/9;
}

/* Row 2 - 2 col */
.madhavbaug-img-grid-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.madhavbaug-img-grid-row2 img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 3/2;
  background: #1a1a1a;
}

/* Row 3 - Full width */
.madhavbaug-img-grid-row3 img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 16/9;
  background: #1a1a1a;
}

/* Row 4 - 2 col */
.madhavbaug-img-grid-row4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.madhavbaug-img-grid-row4 img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 4/5;
  background: #1a1a1a;
}

/* Row 5 - 2 col */
.madhavbaug-img-grid-row5 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.madhavbaug-img-grid-row5 img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 3/2;
  background: #1a1a1a;
}

/* Row 6 - Full width */
.madhavbaug-img-grid-row6 img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 16/9;
  background: #1a1a1a;
}

/* Responsive */
@media (max-width: 768px) {
  .madhavbaug-img-grid-row2,
  .madhavbaug-img-grid-row4,
  .madhavbaug-img-grid-row5 {
    grid-template-columns: 1fr;
  }
}

/* PRANA PROJECT - IMAGE GRIDS */

.prana-hero-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 16/9;
}

.prana-hero-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}

.prana-hero-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Row 2 - Full width portrait */
.prana-img-grid-row2 img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: contain;
  background: #1a1a1a;
}

/* Row 3 - 2 col portrait */
.prana-img-grid-row3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.prana-img-grid-row3 img,
.prana-img-grid-row3 video {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  
  background: #1a1a1a;
}

/* Row 4 - Full width portrait */
.prana-img-grid-row4 img,
.prana-img-grid-row4 video {
  width: 100%;
  height: auto;
  aspect-ratio: 4/1;
  object-fit: cover;
  
  background: #1a1a1a;
}

/* Row 5 - 2 col landscape */
.prana-img-grid-row5 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.prana-img-grid-row5 img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/5;
  background: #1a1a1a;
}

/* Row 6 - 3 col landscape */
.prana-img-grid-row6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
}

.prana-img-grid-row6 img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/5;
  background: #1a1a1a;
}

/* Row 7 - Full width portrait */
.prana-img-grid-row7 img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/1;
  object-fit: cover;
  
  background: #1a1a1a;
}

/* Responsive */
@media (max-width: 768px) {
  .prana-img-grid-row3,
  .prana-img-grid-row5 {
    grid-template-columns: 1fr;
  }

  .prana-img-grid-row6 {
    grid-template-columns: repeat(2, 1fr);
  }

  .prana-img-grid-row6 img:last-child {
    grid-column: 1 / -1;
  }
}

/* DURGA PROJECT - IMAGE GRIDS */

.durga-hero-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 16/9;
}

/* Row 2 - 2 col portrait */
.durga-img-grid-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.durga-img-grid-row2 img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  background: #1a1a1a;
}

/* Row 3 - Full width portrait */
.durga-img-grid-row3 img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: contain;
  background: #1a1a1a;
}

/* Row 4 - 2 col portrait */
.durga-img-grid-row4 {
  gap: 40px;
  align-items: start;
}

.durga-img-grid-row4 img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #1a1a1a;
}

/* Responsive */
@media (max-width: 768px) {
  .durga-img-grid-row2,
  .durga-img-grid-row4 {
    grid-template-columns: 1fr;
  }
}

/* SVA PROJECT - IMAGE GRIDS */

.sva-hero-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.sva-img-grid-row1 img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #1a1a1a;
  aspect-ratio: 4/1;
}

.sva-img-grid-row2 {
  width: 100%;
}

.sva-hero-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}

.sva-hero-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.sva-img-grid-row3 img,
.sva-img-grid-row3 video {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 16/9;
  background: #1a1a1a;
}

.sva-img-grid-row4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.sva-img-grid-row4 img,
.sva-img-grid-row4 video {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  background: #1a1a1a;
}

.sva-img-grid-row5 img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 16/9;
  background: #1a1a1a;
}

@media (max-width: 768px) {
  .sva-img-grid-row4 {
    grid-template-columns: 1fr;
  }
}

/* EDELWEISS PROJECT - IMAGE GRIDS */

.edelweiss-hero-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.edelweiss-img-grid-row1 img,
.edelweiss-img-grid-row1 video {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 4/1;
  background: #1a1a1a;
}

.edelweiss-img-grid-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.edelweiss-img-grid-row2 img,
.edelweiss-img-grid-row2 video {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 1;
  background: #1a1a1a;
}

.edelweiss-img-grid-row3 img,
.edelweiss-img-grid-row3 video {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 16/9;
  background: #1a1a1a;
}

.edelweiss-img-grid-row4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.edelweiss-img-grid-row4 img,
.edelweiss-img-grid-row4 video {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 3/2;
  background: #1a1a1a;
}

@media (max-width: 768px) {
  .edelweiss-img-grid-row2,
  .edelweiss-img-grid-row4 {
    grid-template-columns: 1fr;
  }
}

/* LIVEPLUS PROJECT - IMAGE GRIDS */

.liveplus-hero-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.liveplus-img-grid-row1 img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 16/9;
  background: #1a1a1a;
}

.liveplus-img-grid-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.liveplus-img-grid-row2 img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 1;
  background: #1a1a1a;
}

.liveplus-img-grid-row3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.liveplus-img-grid-row3 video {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 9/16;
  background: #1a1a1a;
}

.liveplus-img-grid-row4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.liveplus-img-grid-row4-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.liveplus-img-grid-row4 img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 1;
  background: #1a1a1a;
}

@media (max-width: 768px) {
  .liveplus-img-grid-row2,
  .liveplus-img-grid-row3,
  .liveplus-img-grid-row4,
  .liveplus-img-grid-row4-right {
    grid-template-columns: 1fr;
  }
}

/* RBL_BANK PROJECT - IMAGE GRIDS */

.rblbank-img-grid-row1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.rblbank-img-grid-row1 img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 3/2;
  background: #1a1a1a;
}

.rblbank-img-grid-row2 {
  width: 100%;
  margin-top: 20px;
}

.rblbank-img-grid-row2 img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 16/9;
  background: #1a1a1a;
}

@media (max-width: 768px) {
  .rblbank-img-grid-row1 {
    grid-template-columns: 1fr;
  }
}

/* GROWTH  PROJECT - IMAGE GRIDS */

.growth-hero-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.growth-hero-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}

.growth-hero-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.growth-img-grid-row1 img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 16/9;
  background: #1a1a1a;
}

.growth-img-grid-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.growth-img-grid-row2 img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 3/2;
  background: #1a1a1a;
}

.growth-img-grid-row3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.growth-img-grid-row3 img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 4/5;
  background: #1a1a1a;
}

@media (max-width: 768px) {
  .growth-img-grid-row2,
  .growth-img-grid-row3 {
    grid-template-columns: 1fr;
  }
}

/* MAHINDRA PROJECT - IMAGE GRIDS */

.mahindra-hero-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.mahindra-img-grid-row1 img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 16/9;
  background: #1a1a1a;
}

.mahindra-img-grid-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.mahindra-img-grid-row2 img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 1;
  background: #1a1a1a;
}

.mahindra-img-grid-row3 img,
.mahindra-img-grid-row3 video {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/1;
  background: #1a1a1a;
}

.mahindra-img-grid-row4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.mahindra-img-grid-row4 img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 3/2;
  background: #1a1a1a;
}

.mahindra-img-grid-row5 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.mahindra-img-grid-row5 img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 4/5;
  background: #1a1a1a;
}

@media (max-width: 768px) {
  .mahindra-img-grid-row2,
  .mahindra-img-grid-row4,
  .mahindra-img-grid-row5 {
    grid-template-columns: 1fr;
  }
}

/* NEWS PROJECT - IMAGE GRIDS */

.news-hero-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.news-img-grid-row1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.news-img-grid-row1 img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 3/2;
  background: #1a1a1a;
}

.news-img-grid-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.news-img-grid-row2 img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 1;
  background: #1a1a1a;
}

.news-img-grid-row3 img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 4/1;
  background: #1a1a1a;
}

@media (max-width: 768px) {
  .news-img-grid-row1,
  .news-img-grid-row2 {
    grid-template-columns: 1fr;
  }
}

/* RUNWAL PROJECT - IMAGE GRIDS */

.runwal-hero-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.runwal-img-grid-row1 {
  width: 100%;
}

.runwal-hero-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}

.runwal-hero-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.runwal-img-grid-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.runwal-img-grid-row2 img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  background: #1a1a1a;
}

.runwal-img-grid-row3 {
  width: 100%;
}

.runwal-img-grid-row3 img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #1a1a1a;
}

.runwal-img-grid-row4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.runwal-img-grid-row4 img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  background: #1a1a1a;
}

.runwal-img-grid-row5 {
  width: 100%;
}

.runwal-img-grid-row5 img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #1a1a1a;
}

.runwal-img-grid-row6 {
  width: 100%;
}

.runwal-img-grid-row6 img {
  width: 100%;
  height: auto;
  aspect-ratio: 15/9;
  object-fit: cover;
  background: #1a1a1a;
}

@media (max-width: 768px) {
  .runwal-img-grid-row2,
  .runwal-img-grid-row4 {
    grid-template-columns: 1fr;
  }
}

/* STORY PROJECT - IMAGE GRIDS */

.story-hero-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.story-img-grid-row1 {
  width: 100%;
}

.story-img-grid-row1 img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #1a1a1a;
}

.story-img-grid-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.story-img-grid-row2 img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  background: #1a1a1a;
}

.story-img-grid-row3 {
  width: 100%;
}

.story-img-grid-row3 img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/1;
  object-fit: cover;
  background: #1a1a1a;
}

.story-img-grid-row4 {
  width: 100%;
}

.story-img-grid-row4 img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #1a1a1a;
}

@media (max-width: 768px) {
  .story-img-grid-row2 {
    grid-template-columns: 1fr;
  }
}

/* SPARKLE PROJECT - IMAGE GRIDS */

.sparkle-hero-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ── IMAGERY PANEL TOGGLE ── */
.imagery-panel {
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  transition: opacity 0.5s ease;
}

.imagery-panel.active {
  opacity: 1;
  visibility: visible;
  height: auto;
  overflow: visible;
}

/* ── 2024 GRIDS ── */
.sparkle-img-grid-row1 {
  width: 100%;
}

.sparkle-hero-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}

.sparkle-hero-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.sparkle-img-grid-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.sparkle-img-grid-row2 img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  background: #1a1a1a;
}

.sparkle-img-grid-row3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.sparkle-img-grid-row3 img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  background: #1a1a1a;
}

.sparkle-img-grid-row4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.sparkle-img-grid-row4 img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  background: #1a1a1a;
}

/* ── 2023 GRIDS ── */
.sparkle-2023-img-grid-row1 {
  width: 100%;
}

.sparkle-2023-hero-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}

.sparkle-2023-hero-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.sparkle-2023-img-grid-row2 {
  width: 100%;
}

.sparkle-2023-img-grid-row2 img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #1a1a1a;
}

.sparkle-2023-img-grid-row3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.sparkle-2023-img-grid-row3 img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: #1a1a1a;
}

.sparkle-2023-img-grid-row4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.sparkle-2023-img-grid-row4 img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  background: #1a1a1a;
}

/* Responsive */
@media (max-width: 768px) {
  .sparkle-img-grid-row2,
  .sparkle-img-grid-row3,
  .sparkle-img-grid-row4,
  .sparkle-2023-img-grid-row3,
  .sparkle-2023-img-grid-row4 {
    grid-template-columns: 1fr;
  }
}

/* FORTIS PROJECT - IMAGE GRIDS */

.fortis-img-grid-row1 {
  width: 100%;
}

.fortis-hero-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}

.fortis-hero-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.fortis-img-grid-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 20px;
}

.fortis-img-grid-row2 img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: #1a1a1a;
}

.fortis-img-grid-row3 {
  width: 100%;
  margin-top: 20px;
}

.fortis-img-grid-row3 img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #1a1a1a;
}

.fortis-img-grid-row4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-top: 20px;
}

.fortis-img-grid-row4 img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: #1a1a1a;
}

.fortis-img-grid-row5 {
  width: 100%;
  margin-top: 20px;
}

.fortis-img-grid-row5 img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #1a1a1a;
}

.fortis-img-grid-row6 {
  width: 100%;
  margin-top: 20px;
}

.fortis-img-grid-row6 img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/1;
  object-fit: cover;
  background: #1a1a1a;
}

.fortis-img-grid-row7 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 20px;
}

.fortis-img-grid-row7 img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  background: #1a1a1a;
}

.fortis-img-grid-row8 {
  width: 100%;
  margin-top: 20px;
}

.fortis-img-grid-row8 img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #1a1a1a;
}

.fortis-img-grid-row9 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 20px;
}

.fortis-img-grid-row9 img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  background: #1a1a1a;
}

@media (max-width: 768px) {
  .fortis-img-grid-row2,
  .fortis-img-grid-row4,
  .fortis-img-grid-row7,
  .fortis-img-grid-row9 {
    grid-template-columns: 1fr;
  }
}


/* MACHINE PROJECT - IMAGE GRIDS */

.machine-img-grid-row1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.machine-img-grid-row1 img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: #1a1a1a;
}

.machine-img-grid-row2 {
  width: 100%;
  margin-top: 20px;
}

.machine-img-grid-row2 img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #1a1a1a;
}

.machine-img-grid-row3 {
  width: 100%;
  margin-top: 20px;
}

.machine-img-grid-row3 img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #1a1a1a;
}

@media (max-width: 768px) {
  .machine-img-grid-row1 {
    grid-template-columns: 1fr;
  }
}

/* PROJECT INFO - EXPANDABLE SECTION */

.project-info-container {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-top: 40px;
}

.project-info-main {
  flex: 1;
  min-width: 0;
  max-width: 1000px;
}

.project-metadata {
  flex: 0 0 400px;
  padding-top: 0;
}

/* Only sticky when Read More is expanded */
.project-info-container:has(.expandable-content.expanded) .project-metadata {
  position: sticky;
  top: 150px;
}

.metadata-item {
  margin-bottom: 30px;
}

.metadata-item h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text);
  margin-bottom: 8px;
}

.metadata-item p {
  font-size: 18px;
  line-height: 1.6;
  color: #999999;
}

.project-info h1 {
  font-size: 48px;
  font-weight: 300;
  color: var(--color-text);
  margin-top: 40px;
  line-height: 1.2;
}

.project-tagline {
  font-size: 28px;
  font-weight: 400;
  color: var(--color-brand);
  margin-bottom: 30px;
  line-height: 1.3;
}

.project-description,
.expandable-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #cccccc;
  margin-bottom: 24px;
  max-width: 800px;
}

.read-more-btn,
.close-btn {
  background: transparent;
  padding: 0 !important;
  border: none;
  color: #7b7b7b;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.read-more-btn::before,
.close-btn::before {
  display: none;
}

.read-more-btn:hover,
.close-btn:hover {
  color: var(--color-brand);
  background: transparent;
}

.close-btn {
  display: none;
}

.expandable-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.6s ease;
}

.expandable-content.expanded {
  max-height: 2000px;
  opacity: 1;
}

.expandable-content.expanded ~ .read-more-btn {
  display: none;
}

.expandable-content.expanded ~ * + .close-btn {
  display: inline-block;
}

@media (max-width: 1200px) {
  .project-info-container {
    gap: 30px;
  }

  .project-metadata {
    flex: 0 0 300px;
  }

  .project-info h1 {
    font-size: 40px;
  }

  .project-tagline {
    font-size: 22px;
  }
}

@media (max-width: 1024px) {
  .project-info-container {
    flex-direction: column;
    gap: 30px;
  }

  .project-metadata {
    flex: 0 0 auto;
    width: 100%;
  }

  .project-info h1 {
    font-size: 36px;
  }

  .project-tagline {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .project-info-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }
  
  .project-metadata {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: static;
    top: auto;
    flex: 0 0 auto;
    width: 100%;
  }
  
  .project-info h1 {
    font-size: 28px;
  }

  .project-tagline {
    font-size: 18px;
  }

  .project-description {
    font-size: 14px;
  }

  .read-more-btn,
  .close-btn {
    font-size: 14px;
  }

  .expandable-content p {
    font-size: 14px;
  }

  .metadata-item {
    margin: 0;
    padding: 0;
  }
  .metadata-item h3 {
    font-size: 11px;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
  }
  .metadata-item p {
    font-size: 14px;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .project-info h1 {
    font-size: 24px;
  }

  .project-tagline {
    font-size: 16px;
  }

  .project-description {
    font-size: 13px;
  }

  .metadata-item {
    margin-bottom: 10px;
  }

  .metadata-item h3 {
    font-size: 11px;
  }

  .metadata-item p {
    font-size: 12px;
  }
  .expandable-content p {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  div[class*="-img-grid-"] {
    grid-template-columns: 1fr !important;
  }
}