body {
  font-family: "Poppins", sans-serif;
  background-color: #fff;
  color: #333;
}


.logo {
  height: 60px;
}

.nav-link {
  font-size: 18px;
  margin-right: 20px;
  color: #000 !important;
}

.category-btn {
  border: 1px solid #ccc;
  border-radius: 50px;
  padding: 8px 18px;
  margin: 5px;
  font-size: 16px;
  background-color: #fff;
  transition: 0.3s;
}

.category-btn:hover {
  background-color: #f7f7f7;
}

.hero-section {
  text-align: center;
  margin: 50px auto;
  max-width: 900px;
}

.hero-section h2 {
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 30px;
}

.action-btn {
  border: 1px solid #ccc;
  border-radius: 50px;
  padding: 10px 20px;
  margin: 10px;
  background-color: #fff;
  transition: 0.3s;
}

.action-btn:hover {
  background-color: #f7f7f7;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-link {
    font-size: 16px;
    margin-right: 10px;
  }
  .hero-section h2 {
    font-size: 1.5rem;
  }
  .category-btn {
    font-size: 14px;
    padding: 6px 14px;
  }
  .action-btn {
    font-size: 14px;
    padding: 8px 16px;
  }
}
.card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.card-img-top {
  height: 180px;
  object-fit: contain;
}

.card-title {
  font-size: 1rem;
  font-weight: 500;
}

/* Label Tag (Event/News/Insight) */
.card .position-absolute {
  font-size: 0.85rem;
  font-weight: 500;
} 

@media (max-width: 992px) {
  .card-img-top {
    height: 160px;
  }
}

@media (max-width: 768px) {
  .card-title {
    font-size: 0.95rem;
  }
  .banner-section h3 {
    font-size: 1.5rem;
  }
  .banner-section p {
    font-size: 0.9rem;
  }
}

/* Custom styling for the IIED cards */
.card {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease-in-out;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  object-fit: contain;
  height: 250px;
}

.badge {
  font-size: 0.9rem;
  padding: 6px 12px;
  border-radius: 8px;
}

.podcast-badge {
  background-color: #00bcd4; /* Cyan like in reference */
  color: #fff;
}

.news-badge {
  background-color: #00bcd4; /* Cyan badge as well */
  color: #fff;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.4;
}

.card-date {
  font-size: 0.9rem;
  color: #666;
  margin-top: 10px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .card img {
    height: 200px;
  }
  .card-title {
    font-size: 1rem;
  }
}

/* Publications cards */
.card-text {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
}

.card-img-top {
  height: 220px;
  object-fit: contain; /* keeps documents readable */
  background-color: #f9f9f9;
  padding: 10px;
}

@media (max-width: 768px) {
  .card-img-top {
    height: 180px;
  }
  .card-text {
    font-size: 0.9rem;
  }
}

/* Footer Styling */
.footer {
  background: #fff;
  color: #333;
  font-size: 0.95rem;
}

.footer-top {
  height: 5px;
  background: linear-gradient(to right, #00a0e3, #f04, #ffcc00, #8bc34a);
}

.footer-links {
  list-style: none;
  padding: 0;
}


.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
  text-decoration: none; 
}

.footer-links a i {
  margin-right: 5px;
}

.footer-links a:hover {
  color: #007bff;
}

.social-icons a {
  display: inline-block;
  margin-right: 12px;
  font-size: 1.4rem;
  color: #333;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #007bff;
}

.footer-bottom {
  font-size: 0.85rem;
  background: #f9f9f9;
}

.footer-bottom a {
  color: #007bff;
  text-decoration: none;
  margin: 0 5px;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.back-to-top {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.9rem;
  color: #007bff;
  text-decoration: none;
}

.back-to-top:hover {
  text-decoration: underline;
}

/* Section Styling */
.contact-section {
  max-width: 1200px;
}

/* Headings */
.contact-section h2 {
  font-size: 2.2rem;
  font-weight: 600;
  white-space: normal;      /* allow text to wrap naturally */
  word-break: normal;  
}

.contact-section .col-lg-6 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Icons */
.contact-icon {
  font-size: 1.5rem;
}

/* Form Styling */
.contact-form {
  border: 1px solid #eee;
}

.contact-form .form-control {
  border-radius: 6px;
  box-shadow: none;
  border-color: #ddd;
}

.contact-form .form-control:focus {
  border-color: #00a5cf;
  box-shadow: 0 0 0 0.15rem rgba(0, 165, 207, 0.2);
}

/* Button */
.contact-form button {
  font-size: 1rem;
  font-weight: 500;
  border: none;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #0097b2;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .contact-section h2 {
    font-size: 1.8rem;
  }
  .contact-section p {
    font-size: 0.95rem;
  }
  .contact-icon {
    font-size: 1.3rem;
  }
}  

.about-section {
  background-color: #f8f9fb;
}

.about-section h2 {
  font-size: 2.2rem;
  font-weight: 600;
}

.about-section p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-section a {
  color: #00a0e3;
  font-weight: 500;
}
.about-section a:hover {
  text-decoration: underline;
}

.about-section img {
  width: 100%;      /* 100% width of column instead of 70% */
  height: 350px;    /* Fix equal height */
  object-fit: contain;
  border-radius: 15px;
}
/* Set card equal height in columns */
/* .row > div {
    display: flex;
} */

@media (max-width: 768px) {
  .about-section h2 {
    font-size: 1.8rem;
  }
  .about-section p {
    font-size: 0.95rem;
  }
  .navbar-brand span {
    font-size: 0.95rem;
  }
}

.team-card {
  border: 1.5px solid #222;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 35px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.07);
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.team-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}

/* Title */
.team-card h5 {
  margin-top: 10px;
  font-weight: 600;
  color: #222;
}

/* Role & description text */
.team-card p {
  font-size: 0.9rem;
  line-height: 1.45;
  color: #444;
}

/* Learn More button */
.learn-more-btn {
  color: #007bff;
  font-weight: 500;
  margin-top: 5px;
  display: inline-block;
}
.learn-more-btn:hover {
  text-decoration: underline;
  color: #0056b3;
}


.section-title {
  font-weight: 600;
  color: #2d2d2d;
}

.section-subtitle {
  color: #6c757d;
  font-size: 16px;
}


.credits {
  font-size: 14px;
  color: #888;
}

.credits a {
  text-decoration: none;
  color: #007bff;
}

.news-section {
  background-color: #fff;
}

.news-section h2 {
  font-size: 2rem;
  font-weight: 700;
}

.news-section p {
  line-height: 1.6;
}

.news-card {
  border: 1px solid #e5e5e5;
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
  width: 100%; 
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.news-card img {
  height: 200px;
  object-fit: contain;
}

.news-card .card-body {
  padding: 1.2rem;
}

.news-card .badge {
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .news-card img {
    height: 180px;
  }

  .news-section h2 {
    text-align: center;
  }

  .news-section p {
    text-align: center;
  }
}


.news-section {
  background-color: #fff;
}

.news-section h2 {
  font-size: 2rem;
  font-weight: 700;
}

.news-card {
  border: 1px solid #e5e5e5;
  border-radius: 1rem;
  overflow: hidden;
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.news-card img {
  height: 220px;
  object-fit: contain;
}

.news-card .card-body {
  padding: 1.2rem;
}

.news-card .card-title {
  font-weight: 600;
  color: #000;
  line-height: 1.4;
}

.news-card .badge {
  font-size: 0.85rem;
}

.news-card p {
  margin-top: 0.5rem;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .news-card img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .news-section h2 {
    text-align: center;
  }

  .news-card img {
    height: 180px;
  }

  .news-card {
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .news-card img {
    height: 160px;
  }

  .card-title {
    font-size: 1rem;
  }
}


.article-container {
      max-width: 850px;
      margin: 60px auto;
      padding: 0 15px;
    }

    .article-title {
      font-size: 2.2rem;
      font-weight: 600;
      line-height: 1.3;
    }

    .article-subtitle {
      font-size: 1.1rem;
      color: #555;
      margin-top: 10px;
    }

    .divider {
      border-top: 2px solid #e0a100;
      width: 100%;
      margin: 20px 0;
    }

    .article-meta {
      color: #777;
      font-size: 0.95rem;
      margin-bottom: 15px;
    }

    .article-img {
      border-radius: 8px;
      width: 50%;
      height: auto;
    }

    .caption {
      font-size: 0.9rem;
      color: #666;
      margin-top: 8px;
    }

    .article-body a {
      color: #0080c7;
      text-decoration: none;
    }

    .article-body a:hover {
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .article-title {
        font-size: 1.6rem;
      }

      .article-subtitle {
        font-size: 1rem;
      }
    }

    .btn-warning {
  background-color: #f6b300;
  border: none;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-warning:hover {
  background-color: #e0a200;
}

.social-icon {
  color: #555;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #f6b300;
}

/* Responsive Design */
@media (max-width: 991px) {
  h2 {
    font-size: 1.5rem;
  }

  .btn-warning {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 15px;
  }

  img {
    max-width: 90%;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  h2 {
    font-size: 1.3rem;
  }
  
  p {
    font-size: 0.95rem;
  }
}

 

