.circle-left {
  top: 120px;
  left: -250px;
  background: linear-gradient(135deg, rgba(252, 222, 158, 0.75) 35%, rgba(147, 255, 212, 0.75) 75%);
}

.circle-middle {
  bottom: -800px;
  right: -200px;
  background: linear-gradient(135deg, rgba(158, 184, 252, 0.75) 35%, rgba(227, 120, 237, 0.75) 75%);
  ;
}

.circle-right {
  top: 1600px;
  left: -250px;
  background: linear-gradient(135deg, rgba(252, 158, 158, 0.75) 35%, rgba(147, 244, 255, 0.75) 75%);
}


.branding {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2.5rem auto;
  background: #fff;
  padding: 2rem;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  max-width: 900px;
  color: #333;
}

.logo-img {
  display: block;
  margin-left: auto;
  width: 40%;
}

.branding h2 {
  margin-top: 1rem;
  font-size: 2rem;
  text-align: center;
  color: #222;
}

.branding h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #222;
  margin: 1.5rem 0 0.75rem;
}

.branding p {
  font-size: 1rem;
  margin: 0.5rem 0;
  color: #333;
}

.branding ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.branding ul li {
  margin-bottom: 0.5rem;
  list-style: disc;
  color: #333;
}

.branding a {
  color: #0066cc;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  ;
}

.branding a:hover {
  color: #003366;
}

.single-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  margin: 1.5rem auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 1rem auto;
  border-radius: 0.8rem;
  overflow: hidden;
  flex-shrink: 0;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
  height: 100%;
}

.carousel-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 1rem auto;
  border-radius: 0.8rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}


.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  color: #fbf8f8;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.carousel-btn.prev {
  background: linear-gradient(180deg, #FF9B9F 0%, #FECFEF 100%);
  left: 10px;
}

.carousel-btn.next {
  background: linear-gradient(180deg, #ADCBEE 0%, #E7F0FD 100%);
  right: 10px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;

  /* Frosted Glass Effect */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.modal-content {
  margin-top: 5%;
  max-width: 80%;
  max-height: 80%;
}


.evidence ul.pdf-list {
  margin-top: 1rem;
  border-left: 4px solid #ccc;
  padding-left: 1rem;
}

.next-page {
  position: relative;
  bottom: 3rem;
  left: 105rem;
  z-index: 99;
  width: 57px;
  height: 56px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

.next-page {
  right: 2rem;
}

.next-page a {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.next-page svg {
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 0.2s ease;
}

.next-page:hover svg {
  transform: scale(1.05);
}

.pdf-badge {
  display: inline-block;
  background: #f2f2f2;
  color: #444;
  font-size: 0.85rem;
  padding: 0.2rem 0.6rem;
  margin-right: 0.5rem;
  border-radius: 4px;
  font-weight: bold;
}


body.dark-mode .evidence {
  background: #E6E6E6;
  color: #2a2a2a;
}

body.dark-mode .evidence a {
  color: #2a5bd7;
}