/* Base styles and variables */
:root {
  --primary: #4f46e5;
  --primary-dark: #4338ca;
  --text: #1f2937;
  --text-light: #6b7280;
  --bg: #ffffff;
  --bg-alt: #f9fafb;
  --border: #e5e7eb;
}

.dark {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --text: #f9fafb;
  --text-light: #9ca3af;
  --bg: #111827;
  --bg-alt: #1f2937;
  --border: #374151;
}

/* Reset and global styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  transition: background-color 0.3s, color 0.3s;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
h1, h2, h3 {
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
}

h2 {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

.section-desc {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  backdrop-filter: blur(8px);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
  padding: 0 1rem;
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
}

.nav-links {
  display: flex;
  gap: 1rem;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--primary);
}

.mobile-menu-btn {
  display: none;
}

/* Header */
.header {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom right, #eef2ff, #f5f3ff);
}

.dark .header {
  background: linear-gradient(to bottom right, #111827, #1e1b4b);
}

.header-content {
  max-width: 48rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.sparkle-icon {
  width: 3rem;
  height: 3rem;
  color: var(--primary);
  margin-bottom: 2rem;
  animation: pulse 2s infinite;
}

.header h1 span {
  display: block;
  color: var(--primary);
  font-size: 0.8em;
  margin-top: 0.5rem;
}

.cta-button {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  margin-top: 2rem;
  transition: background-color 0.2s;
}

.cta-button:hover {
  background: var(--primary-dark);
}

/* Blob Animation */
.blob-animation {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.blob {
  position: absolute;
  background: var(--primary);
  opacity: 0.1;
  border-radius: 50%;
  filter: blur(40px);
  animation: blob 7s infinite;
}

.blob-1 {
  width: 20rem;
  height: 20rem;
  top: -10rem;
  right: -10rem;
}

.blob-2 {
  width: 20rem;
  height: 20rem;
  bottom: -10rem;
  left: -10rem;
  animation-delay: 2s;
}

.blob-3 {
  width: 20rem;
  height: 20rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 4s;
}

/* Grid Layouts */
.events-grid,
.gallery-grid,
.testimonials-grid,
.team-grid,
.blog-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .events-grid,
  .testimonials-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat( 1fr);
  }
  
  .testimonials-grid,
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Cards */
.card {
  background: var(--bg);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-2px);
}

.card-image {
  width: 100%;
  height: 25rem;
  object-fit: cover;
}

.card-content {
  padding: 2rem;
}

/* Community Count */
.count-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  text-align: center;
}

.count-card {
  padding: 2rem;
  background: var(--bg);
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.count {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 1rem 0;
}

/* FAQ */
.faq-item {
  margin-bottom: 1rem;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem;
  background: var(--bg-alt);
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 1rem;
  color: var(--text-light);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Footer */
.footer {
  background: #111827;
  color: white;
  padding: 3rem 0;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  color: #9ca3af;
  transition: color 0.2s;
}

.social-links a:hover {
  color: white;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #374151;
  text-align: center;
  color: #9ca3af;
}

/* Theme Toggle */
.theme-toggle {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 0.75rem;
  cursor: pointer;
  z-index: 1000;
  transition: background-color 0.2s;
}

.theme-toggle:hover {
  background: var(--bg-alt);
}

/* Animations */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes blob {
  0% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

/* Gallery */
.gallery-wrapper {
  overflow: hidden;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  position: relative;
}

#gallery-slider {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Hide scrollbar */
}

.gallery-item {
  flex: 0 0 auto;
  width: 300px; /* Adjust based on your layout */
  text-align: center;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

/* Team Section */
.team {
  padding: 2rem 1rem;
  background: #f9f9f9;
}

.team h2, .team h3 {
  text-align: center;
  margin-bottom: 1rem;
}

/* Founder Grid */
.founders-grid, .team-grid {
  display: grid;
  gap: 1.5rem;
  justify-content: center;
}

.founders-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-bottom: 2rem;
}

/* Founder Card */
.founder-card, .team-card {
  text-align: center;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.founder-image, .team-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.founder-role, .team-role {
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.icon-link {
  color: #0073b1;
  text-decoration: none;
  font-size: 0.9rem;
}

.icon-link:hover {
  text-decoration: underline;
}

/* Core Team Scroll Wrapper */
.team-grid-scroll-wrapper {
  overflow-x: auto;
  white-space: nowrap;
  display: flex;
  margin-bottom: 2rem;
}

.team-grid {
  display: inline-flex; /* Allows horizontal layout */
  gap: 2rem;
}

.team-card {
  flex: 0 0 auto; /* Prevent cards from shrinking */
  width: 200px; /* Adjust card width */
}

/* Past Events Section */
.past-events-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .past-events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .past-events-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Past Event Cards */
.past-event-card {
  background: var(--bg-alt);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.past-event-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.past-event-image {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  border-bottom: 2px solid var(--border);
}

.past-event-content {
  padding: 1.5rem;
}

.past-event-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.past-event-date {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.past-event-description {
  font-size: 1rem;
  color: var(--text-light);
}

/* Style for Past Events Header */
h2.mt-large {
  margin-top: 3rem;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

/* Dark Mode Adjustments */
.dark .past-event-card {
  background: var(--bg);
  box-shadow: 0 1px 3px rgba(255, 255, 255, 0.1);
}

.dark .past-event-title {
  color: var(--text);
}

.dark .past-event-description,
.dark .past-event-date {
  color: var(--text-light);
}

.show-more-btn {
  display: block;
  margin: 20px auto;
  padding: 10px 20px;
  background-color: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
}

.show-more-btn:hover {
  background-color: var(--primary-dark);
}

/* Testimonials */
.testimonials {
  padding: 4rem 0;
  background-color: var(--bg-alt);
}

.testimonials-grid {
  display: flex;
  overflow: hidden;
  gap: 2rem;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 1.33rem);
  background-color: var(--bg);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.testimonial-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.testimonial-role {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.testimonial-card blockquote {
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 100%;
  }

  .nav-links {
    display: none;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }
}

/* Animations */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.partners {
  padding: 4rem 0;
  background-color: var(--bg-alt);
}

.partners-container {
  overflow: hidden;
  position: relative;
}

.partners-grid {
  display: flex;
  transition: transform 0.5s ease;
}

.partner-logo {
  flex: 0 0 200px;
  height: 100px;
  margin: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg);
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.partner-logo img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.partners-container {
  width: 100vw; /* Full screen width */
  overflow: hidden;
  position: relative;
  background: #f8f8f8;
  padding: 20px 0;
  display: flex;
  align-items: center;
}

.partners-grid {
  display: flex;
  gap: 20px;
  white-space: nowrap;
  will-change: transform;
}

.partner-logo img {
  height: 80px;
  width: auto;
  max-width: 160px;
}

.partners-container {
  width: 100vw; /* Full width */
  overflow: hidden; /* Hides scrollbar */
  background: #f8f8f8;
  padding: 20px 0;
  display: flex;
  align-items: center;
  position: relative;
}

.partners-grid {
  display: flex;
  gap: 20px;
  white-space: nowrap;
  will-change: transform;
}

.partner-logo img {
  height: 80px;
  width: auto;
}

.partners-container {
  width: 100vw; /* Fit within full page width */
  overflow: hidden; /* Hide scrollbar */
  background: #f8f8f8;
  padding: 20px 0;
  display: flex;
  align-items: center;
  position: relative;
}

.partners-grid {
  display: flex;
  gap: 20px;
  white-space: nowrap;
  will-change: transform;
  width: 100%; /* Ensure it doesn't go beyond page width */
}

.partner-logo img {
  height: 80px;
  width: auto;
}

/* Ensure no horizontal scrolling */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}

/* Prevent any div from overflowing */
.container {
  max-width: 100%;
  overflow: hidden;
}

/* Adjust gallery slider */
#gallery-slider {
  overflow-x: hidden;
  width: 100%;
}

/* Prevent .blob from exceeding viewport */
.blob {
  max-width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
}

/* Example styling */
.content {
  width: 90%;
  margin: auto;
  padding: 20px;
  background: lightblue;
  text-align: center;
}

/* If using flex/grid */
.flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
}

.founder-contact {
  display: flex;
  justify-content: center;
  gap: 16px; /* Adjust spacing between icons */
  margin-top: 12px;
}

.icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0077b5; /* Default LinkedIn color */
  color: white;
  font-size: 20px;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}

.icon-link:nth-child(2) { 
  background: hsl(0, 0%, 0%); /* Email - Orange */
}

.icon-link:hover {
  transform: scale(1.15);
  filter: brightness(1.2);
}


/* core team */

.body {
  font-family: Arial, sans-serif;
  text-align: center;
  background-color: #f4f4f4;
}

h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.team-section {
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 10px;
  position: relative;
}

.team-grid-scroll-wrapper {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  width: 90%;
}

.team-grid {
  display: flex;
  gap: 20px;
  padding: 10px;
  white-space: nowrap;
  transition: transform 0.5s ease-in-out;
}

.team-member {
  background: white;
  border-radius: 10px;
  padding: 15px;
  width: 220px;
  text-align: center;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  flex-shrink: 0;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.team-member h4 {
  margin: 10px 0 5px;
  font-size: 18px;
}

.team-member p {
  font-size: 14px;
  color: #666;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  margin: 0 5px;
  color: #555;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #007bff;
}

/* Core Team Section */
.team-section {
padding: px 20px;
text-align: center;
background-color: #f9f9f9;
}

/* Scroll Wrapper */
.team-grid-scroll-wrapper {
overflow-x: auto;
padding-bottom: 10px;
scrollbar-width: thin;
scrollbar-color: #0077b5 transparent;
}

/* Hide Scrollbar for WebKit Browsers */
.team-grid-scroll-wrapper::-webkit-scrollbar {
height: 6px;
}

.team-grid-scroll-wrapper::-webkit-scrollbar-thumb {
background: #0077b5;
border-radius: 10px;
}

.team-grid-scroll-wrapper::-webkit-scrollbar-track {
background: transparent;
}

/* Team Grid */
.team-grid {
display: flex;
gap: 20px;
flex-wrap: nowrap;
padding: 10px;
justify-content: flex-start;
}

/* Team Card */
.team-card {
background: #fff;
border-radius: 12px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
overflow: hidden;
text-align: center;
padding: 20px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
flex: 0 0 250px; /* Fixed width for horizontal scrolling */
}

.team-card:hover {
transform: translateY(-5px);
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Team Member Image */
.team-image {
width: 100px;
height: 100px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 15px;
border: 3px solid #e4e6e8;
}

/* Team Content */
.team-content h4 {
font-size: 18px;
font-weight: 600;
margin-bottom: 5px;
color: #333;
}

.team-role {
font-size: 14px;
font-weight: 500;
color: #072130;
margin-bottom: 10px;
}

/* Team Bio */
.team-content p {
font-size: 14px;
color: #000000;
margin-bottom: 15px;
}

/* Contact Icons */
.team-contact {
display: flex;
justify-content: center;
gap: 10px;
}

.icon-link {
color: #0077b5;
font-size: 18px;
transition: color 0.3s ease;
}

.icon-link:hover {
color: #005582;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

.team-section {
width: 100vw;
height: 55vh; /* Full height */
display: flex;
justify-content: center;
align-items: top;
background: #fdfafa;
overflow: hidden;
position: relative;
}

.core-team-grid {
display: flex;
gap: 40px; /* Space between cards */
padding: 20px;
width: max-content;
white-space: nowrap;
will-change: transform;
position: absolute;
}

.team-card {
flex: 0 0 230px; /* Increased card size */
height: 310px;
text-align: center;
padding: 20px;
border-radius: 20px;
background: white;
}

.team-image {
width: 150px;
height: 150px;
object-fit: cover;
border-radius: 50%;
border: 5px solid #0077b5;
margin-bottom: 10px;
}

.team-name {
font-size: 22px;
font-weight: bold;
color: #222;
}

.team-role {
font-size: 18px;
color: #666;
margin-bottom: 10px;
}

.team-links {
display: flex;
justify-content: center;
gap: 20px;
}

.icon-link {
color: #f0f3f4;
font-size: 24px;
text-decoration: none;
}

/* Hide scrollbar completely */
::-webkit-scrollbar {
display: none;
}

/* End of CSS */
/* Gallery Section Styling */
/* General Gallery Section */
.gallery {
  padding: 50px 0;
  text-align: center;
  background-color: #f9f9f9;
}

.gallery h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #333;
}

.section-desc {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 20px;
}

/* Gallery Wrapper */
.gallery-wrapper {
  max-width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}

/* Gallery Slider (Track) */
.gallery-slider {
  display: flex;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.gallery-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

/* Gallery Item */
.gallery-item {
  min-width: 100vw;
  position: relative;
  text-align: center;
}

.gallery-item img {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: cover;
  border-radius: 5px;
}

/* Image Caption */
.gallery-item p {
  position: absolute;
  bottom: 10%;
  left: 80%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  padding: 8px 15px;
  font-size: 1.2rem;
  border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .gallery-item img {
    max-height: 60vh;
  }

  .gallery-item p {
    font-size: 0.5rem;
    padding: 2px 5px;
  }
}

@media (max-width: 4px) {
  .gallery-item img {
    max-height: 50vh;
  }

  .gallery-item p {
    font-size: 0.9rem;
    padding: 5px 10px;
  }
}

/* Add this to styles.css or gallery.css */
.gallery-wrapper {
  width: 100vw;
  max-width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

#gallery-slider {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#gallery-slider::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  flex: 0 0 100vw;
  text-align: center;
}

.gallery-item img {
  width: 100vw;
  height: auto;
  object-fit: cover;
  display: block;
}

/* css for ambassador */
.ambassador {
  padding: 50px 20px;
  background-color: #ffffff;
}


h2 {
  text-align: center;
  font-size: 32px;
  color: #100000;
}

.section-desc {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
}

.ambassador-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.ambassador-details {
  flex: 1;
  min-width: 300px;
}

.ambassador-details h3 {
  color: #0077cc;
  margin-bottom: 10px;
}

.ambassador-details ul {
  padding-left: 20px;
}

.ambassador-details li {
  margin-bottom: 10px;
}

.cta-center {
  text-align: center;
  margin-top: 30px;
}

.cta-button {
  background-color: #0077cc;
  color: #fff;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #005fa3;
}
