
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
}

header.hero {
  background-color: #002d62;
  color: white;
  padding: 2rem;
  text-align: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-pic {
  width: 150px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.section {
  background-color: white;
  margin: 1rem;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section h2 {
  color: #002d62;
}

ul {
  list-style: none;
  padding: 0;
}

ul li::before {
  content: '•';
  color: #002d62;
  display: inline-block; 
  width: 1em;
  margin-left: -1em;
}

button {
  background-color: #002d62;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  margin-top: 1rem;
  cursor: pointer;
  border-radius: 5px;
}

.accordion-item button {
  display: block;
  width: 100%;
  text-align: left;
  background-color: #004080;
  padding: 1rem;
  font-size: 1rem;
  color: white;
  border: none;
  margin-top: 0.5rem;
  cursor: pointer;
  border-radius: 5px;
}

.accordion-content {
  display: none;
  padding: 1rem;
  border-left: 4px solid #002d62;
  background: #f9f9f9;
  margin-bottom: 1rem;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.7);
}

.modal-content {
  background-color: white;
  margin: 10% auto;
  padding: 2rem;
  width: 80%;
  max-width: 800px;
  border-radius: 8px;
  position: relative;
}

.close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #aaa;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
}

iframe {
  width: 100%;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}


body {
  font-family: 'Inter', sans-serif;
}

.profile-enhanced {
  border: 4px solid #ffc107;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.profile-enhanced:hover {
  transform: scale(1.05);
}

.accordion-item button:hover {
  background-color: #0056b3;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #0056b3;
}

a:hover {
  color: #ffc107;
}

.section {
  border-left: 5px solid #ccc;
  margin-top: 2rem;
  padding: 2rem;
}

.section h2 {
  font-family: 'Lora', serif;
  font-size: 1.6rem;
}


.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 2rem;
  padding: 1rem;
}

.carousel-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.5s ease;
}

.carousel-slide {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  opacity: 0.5;
  transform: scale(0.8);
  transition: transform 0.3s ease, opacity 0.3s ease;
  flex-shrink: 0;
}

.carousel-slide.active {
  width: 200px;
  height: 200px;
  opacity: 1;
  transform: scale(1.1);
  z-index: 1;
}

.carousel-btn {
  background-color: #004080;
  color: white;
  border: none;
  padding: 0.1rem 0.4rem;
  cursor: pointer;
  font-size: 0.6rem; /* smaller arrow size */
  border-radius: 5px;
  z-index: 1;
}

.carousel-btn:hover {
  background-color: #0056b3;
}
