/* ============================= */
/* ATAM GRAPHICS - SUSTAINABILITY PAGE */
/* Prefix: ag-sus- */
/* ============================= */

.ag-sus-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HERO */
.ag-sus-hero {
  position: relative;
  background: url('/assets/images/sustainable-banner.webp') center/cover no-repeat;
  padding: 250px 20px;
  text-align: center;
  color: #fff;
}

.ag-sus-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.ag-sus-hero h1,
.ag-sus-hero p {
  position: relative;
  z-index: 2;
}

.ag-sus-hero h1 {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 2px;
}

.ag-sus-hero p {
  font-size: 20px;
  margin-top: 15px;
}

/* HEADINGS */
.ag-sus-heading {
  text-align: center;
  font-size: 34px;
  margin-bottom: 50px;
  color: #1f2d3d;
}

/* CERTIFICATIONS */
.ag-sus-certifications {
  padding: 140px 0;
  background: linear-gradient(180deg, #f9faf7 0%, #eef3ea 100%);
}

.ag-sus-heading {
  text-align: center;
  font-size: 42px;
  margin-bottom: 100px;
  font-weight: 800;
  color: #0f2e1c;
  position: relative;
}

.ag-sus-heading::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #3aa76d;
  display: block;
  margin: 20px auto 0;
  border-radius: 10px;
}

/* ROW STRUCTURE */
.ag-sus-cert-row {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 120px;
}

.ag-sus-reverse {
  flex-direction: row-reverse;
}

/* IMAGE BOX */
.ag-sus-cert-image {
  flex: 0 0 380px;   /* fixed professional width */
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s ease;
}

.ag-sus-cert-image img {
  width: 220px;      /* CONTROLLED IMAGE SIZE */
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: grayscale(10%);
  transition: 0.4s ease;
}

.ag-sus-cert-image:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

/* CONTENT BOX */
.ag-sus-cert-content {
  flex: 1;
  position: relative;
  padding-left: 30px;
}

/* Green left accent line */
.ag-sus-cert-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 70px;
  background: #3aa76d;
  border-radius: 10px;
}

.ag-sus-cert-content h3 {
  font-size: 26px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #102542;
}

.ag-sus-cert-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  max-width: 600px;
}


/* VALUES */
.ag-sus-values {
  padding: 100px 0;
  background: #f7f9fc;
}

.ag-sus-value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 40px;
}

.ag-sus-value-card {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: 0.4s;
}

.ag-sus-value-card:hover {
  transform: translateY(-10px);
}

.ag-sus-value-card span {
  font-size: 60px;
  font-weight: 700;
  color: #e6eaf0;
}

.ag-sus-value-card h3 {
  margin: 15px 0;
  font-size: 20px;
  color: #1f2d3d;
}

.ag-sus-value-card p {
  font-size: 15px;
  color: #666;
}

/* CTA */
.ag-sus-cta {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(135deg, #1f2d3d 0%, #2e4057 50%, #3f5873 100%);
  color: #fff;
}

.ag-sus-cta h2 {
  font-size: 34px;
  margin-bottom: 20px;
}

.ag-sus-cta p {
  margin-bottom: 30px;
  font-size: 16px;
}

.ag-sus-btn {
  display: inline-block;
  padding: 14px 35px;
  background: #DFD0A3;
  color: #000;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.ag-sus-btn:hover {
  background: #fff;
}
/*Exhibition*/

/* HERO */
.ag-ex-hero {
  position: relative;
  background: url('/assets/images/exhibition/exhibition-banner.webp') center/cover no-repeat;
  padding: 250px 20px;
  text-align: center;
  color: #fff;
}

.ag-ex-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.ag-ex-hero h1,
.ag-ex-hero p {
  position: relative;
  z-index: 2;
}

.ag-ex-hero h1 {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 2px;
}

.ag-ex-hero p {
  font-size: 20px;
  margin-top: 15px;
}

/* SECTION */
.ag-ex-section {
  padding: 140px 0;
  background: linear-gradient(180deg, #f5efe6 0%, #ffffff 100%);
}

.ag-ex-heading {
  text-align: center;
  font-size: 42px;
  margin-bottom: 100px;
  font-weight: 800;
  color: #2b2b4f;
}

.ag-ex-heading::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #8b1e3f;
  display: block;
  margin: 20px auto 0;
  border-radius: 10px;
}

/* ROW */
.ag-ex-row {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 120px;
}

.ag-ex-reverse {
  flex-direction: row-reverse;
}

/* IMAGE */
.ag-ex-image {
  flex: 0 0 420px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
  transition: 0.4s;
}

.ag-ex-image img {
  width: 100%;
  display: block;
  transition: 0.5s;
}

.ag-ex-image:hover img {
  transform: scale(1.05);
}

/* CONTENT */
.ag-ex-content {
  flex: 1;
  position: relative;
  padding-left: 30px;
}

.ag-ex-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 70px;
  background: #8b1e3f;
  border-radius: 10px;
}

.ag-ex-content h3 {
  font-size: 26px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #2b2b4f;
}

.ag-ex-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  max-width: 650px;
}

/* CTA */
.ag-ex-cta {
  padding: 120px 20px;
  text-align: center;
  background:linear-gradient(135deg, #1f2d3d 0%, #2e4057 50%, #3f5873 100%);
  color: #fff;
}

.ag-ex-btn {
  display: inline-block;
  padding: 14px 35px;
  background: #8b1e3f;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.ag-ex-btn:hover {
  background: #ffffff;
  color: #8b1e3f;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .ag-ex-row {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .ag-ex-reverse {
    flex-direction: column;
  }

  .ag-ex-content {
    padding-left: 0;
  }

  .ag-ex-content::before {
    display: none;
  }
    .ag-sus-cert-row {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
 .ag-sus-cert-content {
    padding-left: 0;
  }

  .ag-sus-cert-content::before {
    display: none;
  }
  .ag-sus-reverse {
    flex-direction: column;
  }

  .ag-sus-cert-image {
    width: 100%;
  }
}
@media (max-width:768px) {
  .ag-sus-hero h1 { font-size: 36px; }
  .ag-sus-hero p { font-size: 16px; }
  .ag-sus-heading { font-size: 26px; }
}   