.sustainability-hero-sec{
    background-image: url('/assets/images/project-work-banner.png');
}

.radius{
  border-radius: 25px !important;
}


.packaging-section {
  padding: 50px 0px;
  /* background-color: #f9fafb; */
  text-align: center;
  max-width: 1300px;
  margin: 0 auto;
  margin-bottom: 50px;
}

.section-title {
  font-size: 32px;
  margin-bottom: 30px;
  color: black;
}

.tiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(322px, 1fr));
  gap: 20px;
}

.tile {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.06);
  padding: 25px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tile img{
  width: 150px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.10);
}

.tile h3 {
  font-size: 21px;
  color: rgb(0 90 62);
  margin-bottom: 15px;
}

.tile p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

.final-note {
  margin-top: 40px;
  font-size: 18px;
  color: #363636;
  font-weight: 500;
}

.vanilla-section p{
  font-size: 20px !important;
  color: black !important;
  font-weight: unset !important;
  text-shadow: unset !important;
}

/* Title (formerly h2) */
.vanilla-title {
  font-size: 32px;
  font-weight: 700;
  color: #00733F;
  margin-bottom: 20px;
}

/* Subtitles (formerly h3) */
.vanilla-subtitle {
  font-size: 24px;
  font-weight: 600;
  color: #444;
  margin-top: 40px;
  margin-bottom: 10px;
  border-left: 4px solid #00733F;
  padding-left: 12px;
}

/* Section Headings (formerly h4) */
.vanilla-heading {
  font-size: 24px;
  font-weight: 600;
  color: #222;
  margin-top: 25px;
  margin-bottom: 8px;
}

.vanilla-section strong {
  color: rgba(0, 115, 63, 1);
  font-weight: 600 !important;
}
/* ===== SECTION ===== */
.video-section{
  max-width:1200px;
  margin:auto;
}

/* ===== THUMBNAIL ===== */
.video-thumb{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  overflow:hidden;
  cursor:pointer;
  border:8px solid #fff;
  box-shadow:0 10px 40px rgba(0,0,0,.2);
}

.video-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.video-thumb::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to right,
    rgba(0,0,0,.6),
    rgba(0,0,0,.1),
    rgba(0,0,0,.6));
}

/* Play button */
.play-btn{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  z-index:5;
}

.play-btn span{
  width:0;
  height:0;
  border-left:30px solid #fff;
  border-top:18px solid transparent;
  border-bottom:18px solid transparent;
  filter:drop-shadow(0 8px 20px rgba(0,0,0,.5));
}

/* ===== MODAL ===== */
.video-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.85);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  visibility:hidden;
  transition:.3s ease;
  z-index:9999;
}

.video-modal.active{
  opacity:1;
  visibility:visible;
}

.video-modal-content{
  position:relative;
  width:90%;
  max-width:900px;
  aspect-ratio:16/9;
  background:#000;
}

.video-modal iframe{
  width:100%;
  height:100%;
  border:0;
}

/* Close button */
.close-btn{
  position:absolute;
  top:-40px;
  right:0;
  font-size:28px;
  color:#fff;
  cursor:pointer;
}