/* Global Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
  font-family: "Inter", sans-serif; 
  line-height: 1.6; 
  color: #222; 
  background: #fff; 
}

body {
  padding-top: 60px;  /* Adjust this value based on the actual height of your navbar */
}


/* Containers */
.container { width: 90%; max-width: 1200px; margin: auto; }


/* Navbar */
header {
  position: fixed;   /* Make the navbar fixed at the top */
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 1000;      /* Ensure it appears above other content */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);  /* Optional: adds a shadow to make it stand out */
}

.nav-container { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; }
.logo a {
  text-decoration: none;
  color: #000;
  display: flex;
  flex-direction: column;   /* 👈 allows stacking main and sub text */
  align-items: flex-start;  /* or center if you want it centered */
}

.logo-main {
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 1.2;
}

.logo-sub {
  font-size: 0.90rem;       /* 👈 smaller text for full name */
  font-weight: 580;
  line-height: 1.5;
  color: #555;
  max-width: 380px;         /* keeps it neat under the logo */
}
.logo a:hover { opacity: 0.8;}
nav ul { display: flex; gap: 1.5rem; list-style: none; }
nav a { text-decoration: none; color: #333; font-weight: 500; padding: 0.5rem 1rem; border-radius: 4px; }
nav a.active { background: #222; color: #fff; }
nav a:hover { background: #222; color: #fff; }

/* Hero */
.hero { padding: 5rem 0; text-align: center; background: #f9f9f9; }
.hero h1 { font-size: 2.2rem; margin-bottom: 1rem; }
.hero p { max-width: 700px; margin: auto; color: #555; }
.hero-buttons { margin-top: 2rem; }
.btn { background: #222; color: #fff; padding: 0.75rem 1.5rem; border-radius: 4px; text-decoration: none; margin: 0 0.5rem; box-shadow: 0 4px 8px rgba(0,0,0,0.3);    /* subtle shadow */
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  display: inline-block;
  font-weight: 600; }
.btn.secondary { background: #aaa; color: #000; box-shadow: 0 6px 12px rgba(0,0,0,0.5);    /* stronger shadow on hover */
  transform: translateY(-2px);  /* subtle lift */
  outline: none; }

/* Pillars */
.pillars { padding: 4rem 0; background: #fff; text-align: center; }
.pillars h2 { margin-bottom: 2rem; }
.pillar-grid { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.pillar-box { background: #f5f5f5; padding: 2rem; border-radius: 8px; max-width: 300px; }

/* Insights */
.insights { padding: 4rem 0; background: #f9f9f9; }
.insights h2 { text-align: center; margin-bottom: 2rem; }
.insight-list { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.insight { background: #fff; padding: 1.5rem; border-radius: 8px; max-width: 300px; box-shadow: 0 2px 6px rgba(0,0,0,0.05); }
.link { text-decoration: none; color: #000; font-weight: 600; display: inline-block; margin-top: 0.5rem; }

/* Footer */
footer { background: #222; color: #fff; padding: 2rem 0; margin-top: 3rem; }
.footer-container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.footer-links a { color: #fff; text-decoration: none; margin-left: 1rem; }

/* Responsive */
@media (max-width: 768px) {
  nav ul { flex-direction: column; align-items: flex-start; }
  .pillar-grid, .insight-list { flex-direction: column; align-items: center; }
}



/* About Hero */
.about-hero { 
  background: #f9f9f9; 
  padding: 4rem 0; 
  text-align: center; 
}
.about-hero h1 { font-size: 2.2rem; margin-bottom: 0.5rem; }
.about-hero p { color: #555; }

/* Mission Section */
/* ===========================
   Our Mission Section Styles
   =========================== */
.mission {
    max-width: 900px;           /* Slightly wider to avoid feeling cramped */
    margin: 0 auto;             /* Center horizontally */
    padding: 1.5rem 2rem;       /* Less vertical padding to reduce “tall” look */
    background-color: #ffffff;  /* Subtle white background for elevation */
    border-radius: 10px;        /* Rounded corners */
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08); /* Gentle elevation */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover */
    line-height: 1.6;           /* Keep text airy and readable */
    text-align: center;         /* ✅ Added: centers heading & paragraph */
}

/* Hover effect to lift the section */
.mission:hover {
    transform: translateY(-6px);       /* Slightly lift on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12); /* Slightly deeper shadow */
}

/* Heading color */
.mission h2 {
    color: #007BFF;        /* Your website’s blue accent */
}


/* Objectives */
.objectives { background: #f9f9f9; padding: 4rem 0; }
.objective-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; }
.objective-box { background: #fff; padding: 1.5rem; max-width: 300px; border-radius: 8px; box-shadow: 0 2px 6px rgba(0,0,0,0.05); text-align: center; }

/* Founder Section */
.founder { padding: 4rem 0; background: #fff; }
.founder-grid { display: flex; flex-wrap: wrap; align-items: center; gap: 2rem; justify-content: center; }
.founder-text { max-width: 500px; }
.founder-photo img { border-radius: 50%; width: 300px; }

/* Responsive */
@media (max-width: 768px) {
  .founder-grid { flex-direction: column; text-align: center; }
}



/* Hero */
.programs-hero {
  background: #f9f9f9;
  padding: 4rem 0;
  text-align: center;
}
.programs-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

/* Featured Program */
.program-feature { padding: 4rem 0; text-align: center; background: #fff; }
.program-subtitle { font-style: italic; color: #666; }
.program-description { max-width: 800px; margin: 1rem auto 2rem; color: #444; }
.program-details { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; margin-top: 2rem; }
.program-box {
  background: #f9f9f9;
  padding: 1.5rem;
  max-width: 300px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Agenda */
.program-agenda { background: #fff; padding: 4rem 0; }
.agenda-day { max-width: 700px; margin: 2rem auto; }
.agenda-day h3 { margin-bottom: 0.5rem; }
.agenda-day ul { list-style: none; padding: 0; }
.agenda-day li { padding: 0.4rem 0; border-bottom: 1px solid #eee; }

/* Benefits */
.program-benefits { background: #f9f9f9; padding: 4rem 0; text-align: center; }
.benefit-grid { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; }
.benefit-box {
  background: #fff;
  padding: 1.5rem;
  max-width: 250px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* CTA */
.program-cta {
  padding: 4rem 0;
  background: #003366;
  color: #fff;
  text-align: center;
}
.program-cta h2 { margin-bottom: 1rem; }
.cta-button {
  display: inline-block;
  background: #fff;
  color: #003366;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  margin-top: 1rem;
}
.cta-button:hover { background: #e6e6e6; }

/* Responsive */
@media (max-width: 768px) {
  .program-details, .benefit-grid { flex-direction: column; align-items: center; }
}


/* Research Hero */
.research-hero {
  background: #f9f9f9;
  text-align: center;
  padding: 4rem 0;
}
.research-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

/* Featured Insight */
.featured-insight {
  padding: 3rem 0;
  background: #fff;
}
.featured-text h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.featured-text .author {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.featured-text .excerpt {
  color: #444;
  margin-bottom: 1.5rem;
}
.cta-link {
  color: #003366;
  font-weight: bold;
  text-decoration: none;
}
.cta-link:hover {
  text-decoration: underline;
}

/* Insights Grid */
.insights-grid {
  padding: 4rem 0;
  background: #f9f9f9;
  text-align: center;
}
.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}
.insight-card {
  background: #fff;
  padding: 1.5rem;
  max-width: 300px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  text-align: left;
}
.insight-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.insight-card p {
  color: #444;
  margin-bottom: 1rem;
}

/* Subscribe CTA */
.subscribe-cta {
  background: #003366;
  color: #fff;
  text-align: center;
  padding: 3rem 1rem;
}
.subscribe-form {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.subscribe-form input {
  padding: 0.75rem;
  min-width: 250px;
  border: none;
  border-radius: 4px;
}
.subscribe-form button {
  background: #fff;
  color: #003366;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}
.subscribe-form button:hover {
  background: #e6e6e6;
}

/* Responsive */
@media (max-width: 768px) {
  .grid {
    flex-direction: column;
    align-items: center;
  }
}

/* Section Backgrounds */
.alt-bg {
  background-color: #f9f9f9;
}

/* Quote Section */
.quote-section blockquote {
  font-size: 1.5rem;
  font-style: italic;
  text-align: center;
  color: #444;
  padding: 2rem 1rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Objective Box Enhancements */
.objective-box {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.objective-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* Optional Founder Image */
.founder-img {
  margin-top: 1.5rem;
  max-width: 200px;
  border-radius: 6px;
}

/* AOS Animation Defaults */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

.quote-section {
  background-color: #f9f9f9;
  padding: 3rem 1rem;
  text-align: center;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.quote-section blockquote {
  font-size: 1.4rem;
  font-style: italic;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
}

.program-box-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.program-box {
  flex: 1;
  min-width: 250px;
  background-color: #fff;
  border-left: 4px solid #005fa3;
  padding: 1.5rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.agenda-day {
  margin-bottom: 2rem;
}

.agenda-day h3 {
  margin-bottom: 0.5rem;
  color: #005fa3;
}

.program-cta {
  background-color: #005fa3;
  color: #fff;
  text-align: center;
  padding: 3rem 1rem;
}

.program-cta h2 {
  margin-bottom: 1rem;
}

.cta-button {
  display: inline-block;
  margin-top: 1rem;
  background-color: #fff;
  color: #005fa3;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #f1f1f1;
}

.featured-insight {
  background-color: #f9f9f9;
  padding: 4rem 1rem;
}

.featured-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.featured-text h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #005fa3;
}

.featured-text .author {
  font-style: italic;
  color: #777;
  margin-bottom: 1rem;
}

.featured-text .excerpt {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.insights-grid {
  padding: 3rem 1rem;
  background-color: #fff;
}

.insights-grid h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.insight-card {
  background: #f8f8f8;
  padding: 1.5rem;
  border-left: 4px solid #005fa3;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.insight-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.cta-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: #005fa3;
  text-decoration: none;
  font-weight: bold;
}

.cta-link:hover {
  text-decoration: underline;
}

.subscribe-cta {
  background-color: #005fa3;
  color: #fff;
  text-align: center;
  padding: 4rem 1rem;
}

.subscribe-form {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.subscribe-form input[type="email"] {
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 4px;
  width: 280px;
  max-width: 100%;
}

.subscribe-form button {
  background-color: #fff;
  color: #005fa3;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.subscribe-form button:hover {
  background-color: #f1f1f1;
}

/* Services Page */
.services-hero {
  background-color: #f4f7fa;
  padding: 60px 0;
  text-align: center;
}

.services-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.services-hero p {
  font-size: 1.125rem;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
}

.services-section {
  padding: 60px 0;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.service-box {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.service-box:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.service-box h2 {
  margin-top: 0;
  color: #000;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-box p {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .services-hero h1 {
    font-size: 2rem;
  }
}
/* Events Page */
.events-hero {
  background-color: #f4f7fa;
  padding: 60px 0;
  text-align: center;
}

.events-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.events-hero p {
  font-size: 1.125rem;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
}

.events-list {
  padding: 60px 0;
}

.event-card {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
  transition: box-shadow 0.3s ease;
}

.event-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.event-date {
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
}

.cta-button {
  display: inline-block;
  background-color: #004080;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #003366;
}

@media (max-width: 768px) {
  .events-hero h1 {
    font-size: 2rem;
  }
}

/* Contact Page */
.contact-hero {
  background-color: #f4f7fa;
  padding: 60px 0;
  text-align: center;
}

.contact-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-hero p {
  font-size: 1.125rem;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
}

.contact-forms {
  padding: 60px 0;
}

.form-section {
  margin-bottom: 60px;
}

form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 20px;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

form input:focus,
form select:focus,
form textarea:focus {
  border-color: #004080;
  outline: none;
}

form textarea {
  resize: vertical;
  min-height: 100px;
}

form button {
  background-color: #004080;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #003366;
}

.contact-info {
  font-size: 0.95rem;
  color: #555;
  margin-top: 20px;
}
/* Button styles */
.btn {
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: inline-block;
  padding: 12px 24px;
  font-weight: 600;
  text-decoration: none;
  color: white;
  background-color: #004080;
  border-radius: 4px;
  margin-right: 10px;
}
.btn.secondary {
  background-color: #0066cc;
}
.btn:hover, .btn:focus {
  background-color: #003366;
  transform: scale(1.05);
  outline: none;
}

/* Pillar and insight boxes */
.pillar-box, .insight {
  background: #f9f9f9;
  border-radius: 6px;
  padding: 20px;
  box-shadow: 0 0 4px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  cursor: default;
  opacity: 0;
  animation: fadeSlideUp 0.6s ease forwards;
}
.pillar-box:hover, .insight:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  background: #ffffff;
  cursor: pointer;
}

/* Stagger animation delays */
.pillar-box:nth-child(1) { animation-delay: 0.2s; }
.pillar-box:nth-child(2) { animation-delay: 0.4s; }
.pillar-box:nth-child(3) { animation-delay: 0.6s; }
.insight:nth-child(1) { animation-delay: 0.2s; }
.insight:nth-child(2) { animation-delay: 0.4s; }

/* Fade & slide up animation */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Quote Style */
blockquote {
  font-size: 1.5em; /* Larger quote */
  font-weight: bold; /* Bold for the quote */
  font-style: normal; /* Ensures the quote is not italicized */
  color: #333; /* Optional: Quote color */
}
/* ✅ Mobile Navbar Collapse */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* Only show toggle button and collapse menu on small screens */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    color: #000;
  }

  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    border-top: 1px solid #eee;
    padding: 1rem 0;
  }

  nav ul.show-menu {
    display: flex;
  }

  nav li {
    width: 100%;
    text-align: center;
    padding: 0.5rem 0;
  }

  nav a {
    display: block;
    width: 100%;
  }
}

/* Author Style - Smaller and no bold */
.quote-author {
  font-size: 0.8em; /* Smaller font size for author */
  color: #555; /* Optional: Lighter color for author */
  font-style: normal; /* No italics for author's name */
  font-weight: normal; /* Ensures author name is not bold */
}


/* --- Course Card Styling --- */
.program-feature-card .course-card {
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 2rem;
  background-color: #fafafa;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  max-width: 800px;
  margin: 2rem auto;
  text-align: left;
}

.program-feature-card .course-card h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.program-feature-card .course-card .program-subtitle {
  font-weight: 500;
  color: #555;
  margin-bottom: 1rem;
}

.program-feature-card .course-card .program-description {
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.program-feature-card .course-card .cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #0077cc;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.program-feature-card .course-card .cta-button:hover {
  background-color: #005fa3;
}

/* Optional: consistent spacing for sections */
section {
  padding: 3rem 0;
}
/* ---------- Program Cards ---------- */
.program-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}



.program-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}


.program-card h3 {
  margin-top: 0;
  color: #1a1a1a;
}

.program-card p {
  margin-bottom: 0;
  color: #555;
}

.agenda-header {
  display: flex;
  justify-content: space-between;
  align-items: center; /* vertically centers the CTA next to the heading */
  flex-wrap: wrap;     /* allows wrapping on very small screens */
  gap: 1rem;           /* optional: adds space between heading and CTA if it wraps */
  margin-bottom: 2rem;
}

.agenda-header h2 {
  margin: 0;
  font-size: 1.8rem;
}

.program-header-cta {
  display: flex;
  flex-direction: column; /* stacks h3 and button vertically */
  justify-content: center; /* ensures vertical centering next to heading */
  align-items: flex-end;   /* keeps CTA button on the right */
}

.program-header-cta h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  text-align: right;       /* aligns text to the right */
}

.program-header-cta .cta-button {
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
}


/* ------------------------------
   Maturity Model Spotlight Section
   ------------------------------ */
.maturity-model {
  padding: 60px 0;
  background: #f4f8ff;
  animation: fadeSlideUp 0.6s ease forwards;
}

.maturity-model h2 {
  text-align: center;
  margin-bottom: 10px;
}

.maturity-subtitle {
  text-align: center;
  font-size: 1.1em;
  color: #444;
  margin-bottom: 25px;
}

.maturity-box {
  background: #ffffff;
  border-radius: 6px;
  padding: 30px;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 0 6px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

   position: relative;
 
}

.maturity-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 22px rgba(0,0,0,0.12);
}

.maturity-buttons {
  margin-top: 20px;
}

/* Mobile spacing fix for AISMI-AISM Model buttons */
@media (max-width: 600px) {
  .maturity-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 12px; /* space between stacked buttons */
  }

  .maturity-buttons .btn:last-child {
    margin-bottom: 0;
  }
}

/* Tighten spacing between Research Hero and Featured Insight */
.research-hero {
  padding-bottom: 2rem;
}

.featured-insight {
  padding-top: 2rem;
}
/* Research Archive (collapsed) */
.research-archive details {
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 1rem 1.25rem;
  background: #f9f9f9;
}

.research-archive summary {
  cursor: pointer;
  font-size: 1.1rem;
  color: #005fa3;
}

.research-archive summary:hover {
  text-decoration: underline;
}

/* Desktop + mobile: tighten visual gap below hero card */
.research-hero .maturity-box {
  margin-bottom: 0;
}

/* Research hero paragraph separation */
.research-hero .maturity-box p {
  margin-bottom: 1rem;
}

.research-hero .maturity-box p:last-child {
  margin-bottom: 0;
}
