body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f9fd;
    color: #333;
  }
   /* header {
  background: #03254c;
    color: #fff;
    padding: 2rem;
    text-align: center;
  }*/
  header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
  }
  header p {
    font-size: 1.2rem;
    margin-top: 0.5rem;
  }
  .support-banner {
    background: #e0f7fa;
    color: #006064;
    padding: 1rem;
    text-align: center;
    font-size: 1rem;
  }
  .support-banner a {
    color: #00796b;
    text-decoration: none;
    font-weight: bold;
  }
  .container {
    max-width: 1000px;
    margin: auto;
    /*padding: 2rem;*/
  }
  h2 {
    color: #03254c;
    margin-top: 2rem;
  }
  .highlight-box {
    background: #e8f5e9;
    border-left: 5px solid #43a047;
    padding: 1rem;
    margin: 1.5rem 0;
  }
  .infographic {
    margin: 2rem 0;
    text-align: center;
  }
  .quiz-section, .slider-section, .tabs-section {
    margin-top: 3rem;
  }
    /* footer {
  background: #03254c; 
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 4rem;
  }*/

  .expandable-banner details {
  border: 2px solid #1a5276;
  border-radius: 8px;
  margin: 1rem 0;
  padding: 0.75rem 1rem;
  background: #f9fcff;
  transition: all 0.3s ease;
  position: relative;
}

.expandable-banner summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.expandable-banner summary::marker {
  display: none;
}

.expandable-banner p {
  margin-top: 0.5rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.expandable-banner details[open] p {
  opacity: 1;
  transform: translateY(0);
}

.expandable-banner summary::after {
  content: '▼';
  margin-left: auto;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.expandable-banner details[open] summary::after {
  transform: rotate(180deg);
}
.tabs-section {
  margin-top: 2rem;
  background: #f4faff;
  border: 1px solid #d0e3f0;
  border-radius: 10px;
  padding: 1.5rem;
  font-family: 'Open Sans', sans-serif;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.tabs-section h3 {
  margin-bottom: 1rem;
  color: #1a5276;
}

.tabs-section button {
  background: #74c5b5;
  border: none;
  margin-right: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  color: #FFFFFF;
}

.tabs-section button:hover {
  background: #d1e9ff;
  transform: translateY(-2px);
}

.tabs-section button.active {
  background: #74c5b5;
  color: #FFFFFF;
}

.tab-content {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 5px;
  background: #fff;
  border-left: 3px solid #1a5276;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
  display: none;
}

.tab-content.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.quiz-section {
  background: #f4faff;
  border: 2px solid #d0e3f0;
  padding: 2rem;
  border-radius: 10px;
  font-family: 'Open Sans', sans-serif;
  margin: 2rem 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.quiz-section h3 {
  margin-bottom: 1rem;
  color: #1a5276;
}

.quiz-section p {
  font-weight: 600;
  margin: 1rem 0 0.5rem;
  transition: all 0.3s ease;
}

.quiz-section label {
  display: block;
  margin-left: 1rem;
  margin-bottom: 0.3rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.quiz-section input[type="radio"] {
  margin-right: 0.5rem;
}

.quiz-section button {
  margin-top: 1.5rem;
  padding: 0.7rem 1.5rem;
  background-color: #74c5b5;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quiz-section button:hover {
  background-color: #144262;
}

#quizResult {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  font-weight: bold;
  color: #1a5276;
  min-height: 40px;
  opacity: 0;
  transition: all 0.3s ease;
}

#quizResult.show {
  opacity: 1;
}

.processing {
  font-style: italic;
  color: #888;
  animation: pulse 1.2s infinite;
}

@keyframes pulse {
  0% { opacity: 0.3; }
  50% { opacity: 1; }
  100% { opacity: 0.3; }
}
.esg-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.esg-tab {
  padding: 0.6rem 1.2rem;
  border: 2px solid #1a5276;
  background: white;
  color: #1a5276;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
}

.esg-tab:hover, .esg-tab.active {
  background: #1a5276;
  color: #fff;
}

.esg-pane {
  display: none;
  animation: fadeIn 0.5s ease;
}

.esg-pane.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.quotes-container {
max-width: 800px;
margin: 3rem auto;
text-align: center;
}

.quotes-carousel {
position: relative;
overflow: hidden;
height: 180px;
}

.quote-slide {
position: absolute;
top: 0;
left: 0;
width: 100%;
opacity: 0;
transform: translateX(50%);
transition: opacity 0.6s ease, transform 0.6s ease;
padding: 1rem;
}

.quote-slide.active {
opacity: 1;
transform: translateX(0);
z-index: 1;
}

.quote-slide blockquote {
font-style: italic;
font-size: 1.1rem;
color: #333;
}

.quote-slide cite {
display: block;
margin-top: 0.5rem;
color: #74c5b5;
font-weight: bold;
}

.carousel-controls {
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
margin-top: 20px;
}

.carousel-controls button {
background: #ffffff;
border: 2px solid #74c5b5;
color: #74c5b5;
padding: 10px 15px;
border-radius: 50%;
cursor: pointer;
transition: background 0.3s, transform 0.2s;
font-size: 18px;
}

.carousel-controls button:hover {
background: #74c5b5;
color: #fff;
transform: scale(1.1);
}

.carousel-controls button:focus {
outline: none;
}

.carousel-controls i {
pointer-events: none;
}
.carousel-indicators {
display: inline-flex;
gap: 8px;
align-items: center;
}

.indicator {
width: 10px;
height: 10px;
background-color: #ccc;
border-radius: 50%;
transition: all 0.3s ease;
}

.indicator.active {
background-color: #74c5b5;
transform: scale(1.3);
box-shadow: 0 0 5px rgba(116, 197, 181, 0.5);
}
.fade-step,
.fade-arrow {
opacity: 0;
transform: translateY(20px);
animation: fadeUp 0.6s ease-out forwards;
animation-delay: calc(var(--i) * 0.5s);
}

@keyframes fadeUp {
to {
  opacity: 1;
  transform: translateY(0);
}
}
.gallery-container {
max-width: 600px;
margin: 2rem auto;
text-align: center;
}

.gallery-carousel {
position: relative;
overflow: hidden;
height: 320px;
}

.gallery-item {
position: absolute;
top: 0;
left: 0;
width: 100%;
opacity: 0;
transition: opacity 1s ease, transform 1s ease;
transform: scale(0.95);
}

.gallery-item.active {
opacity: 1;
transform: scale(1);
position: relative;
}

.gallery-item img {
width: 100%;
border-radius: 8px;
}

.gallery-caption {
margin-top: 0.5rem;
font-size: 0.95rem;
color: #1a5276;
font-weight: bold;
}
.event-banner-container {
width: 100%;
display: flex;
justify-content: center;
align-items: center;
margin: 2rem 0;
background-color: #fff;
border-radius: 12px;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
animation: fadeInCenter 1.2s ease-in-out;
overflow: hidden;
}

.event-banner-full {
width: 90%;
max-width: 960px; /* 👈 shrink max width */
height: auto;
border-radius: 8px;
object-fit: contain;
display: block;
}


@keyframes fadeInCenter {
from {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
}
to {
  opacity: 1;
  transform: translateY(0) scale(1);
}
}