
/* Include Font Awesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Top Bar */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #222;
  background: #fff;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.main-header {
  background: #fff;
  padding: 1rem 0;
  border-bottom: 1px solid #ddd;
  font-family: 'Segoe UI', sans-serif;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Cursive', sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  color: #000;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
  font-size: 0.95rem;
}

.nav-menu a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #00796b;
}

.dropdown {
  position: relative;
}

.header-buttons {
  display: flex;
  gap: 0.75rem;
}

.btn-outline {
  padding: 0.5rem 1.2rem;
  border: 2px solid #00796b;
  background: transparent;
  color: #00796b;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #00796b;
  color: #fff;
}

.btn-filled {
  padding: 0.5rem 1.2rem;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.btn-filled:hover {
  background: #333;
}



button,
.btn,
.learn-btn,
.sign-up-btn,
.enroll-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
}

.buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: flex-start; /* center for hero, left elsewhere */
  align-items: center;
  margin-top: 15px;
}


body {
  font-family: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
  background: #FBFAF7;
  color: #333;
  line-height: 1.7;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Responsive Typography */
h1, h2, h3, h4 {
  line-height: 1.3;
  font-family: 'Merriweather', serif;
  color: #1A1A1A;
}



.expertise-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.expertise-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ddd;
  height: 350px;
}

.expertise-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.expertise-section button {
  padding: 10px 20px;
  border: none;
  background-color: #2E7D32;
  color: white;
  cursor: pointer;
  font-size: 16px;
  border-radius: 4px;
  justify-content: center;
}

.expertise-content {
  flex: 1;
}
.learning-experience h2,.journey-section h2, .journey-card h3, .about-section h2, .expertise-section h2 {
  color: #2E7D32;
}
.tagline {
  display: block;
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}
.feature .icon, .feature-title {
  font-size: 24px;
  margin-bottom: 10px;
  color: #2E7D32;
}
.heading {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.description {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 30px;
}

.features {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
}

.feature {
  max-width: 220px;
}

.icon {
  font-size: 24px;
  margin-bottom: 10px;
  color: #2E7D32;
}

.feature-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-text {
  font-size: 14px;
  color: #444;
  line-height: 1.4;
}

.buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-primary {
  padding: 10px 20px;
  border: 1px solid #000;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
}

.explore-link {
  font-size: 14px;
  color: #000;
  text-decoration: none;
}

/* Base Styles */

a,
a:visited,
a:hover,
a:focus,
a:active,
button {
  text-decoration: none !important;
}

.about-hero {
  background: url('images/group-african-doctors-students-near-medical-university-outdoor.jpg') no-repeat center center;
  background-size: cover;
  color: white;
  text-align: center;
  padding: 120px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
}

/* Optional: dark overlay for readability */
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6); /* dim background image */
  z-index: 0;
}

.about-hero .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.about-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: ghostwhite;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-hero p {
  font-size: 0.95rem;
  font-weight: 400;
  color: #ddd;
  margin-bottom: 30px;
}

.about-hero .buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.learn-btn,
.sign-up-btn {
  background-color: #F4A261;
  color: #fff;
  border: none;

}

.learn-btn {
  background-color: #E76F51;
  color: #fff;
}

.learn-btn:hover {
  background-color: #E76F51;
  color: white;
  border: none;
}
.sign-up-btn {
  background: transparent;
  color: #F4A261;
  border: 2px solid #F4A261;
}

.sign-up-btn:hover {
  background-color: #F4A261;
  color: #fff;
}

.education-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.education-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2E7D32;
}

.education-content {
  flex: 1;
}

.tagline {
  display: block;
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.heading {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.description {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 20px;
}

.buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-primary {
  padding: 10px 20px;
  border: 1px solid #000;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
}

.sign-up-link {
  font-size: 14px;
  color: #000;
  text-decoration: none;
}

.education-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ddd;
  height: 350px;
}

.education-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.expertise-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.expertise-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2E7D32;
}
.expertise-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ddd;
  height: 350px;
}

.expertise-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.expertise-content {
  flex: 1;
}

.tagline {
  display: block;
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.heading {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.description {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 30px;
}

.features {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
}

.feature {
  max-width: 220px;
}

.icon {
  font-size: 24px;
  margin-bottom: 10px;
  color: #000;
}

.feature-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-text {
  font-size: 14px;
  color: #444;
  line-height: 1.4;
}

.buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-primary {
  padding: 10px 20px;
  border: 1px solid #000;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
}

.explore-link {
  font-size: 14px;
  color: #000;
  text-decoration: none;
}

.learning-experience {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.tagline {
  font-size: 14px;
  color: #555;
  display: block;
  margin-bottom: 10px;
}

.heading {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.subtext {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.features-row {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.feature {
  max-width: 280px;
}

.icon {
  font-size: 28px;
  margin-bottom: 15px;
  color: #000;
}

.feature-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-text {
  font-size: 14px;
  color: #444;
  line-height: 1.4;
}

.buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.btn-primary {
  padding: 10px 20px;
  border: 1px solid #000;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
}

.explore-link {
  font-size: 14px;
  color: #000;
  text-decoration: none;
}
.journey-section {
  padding: 4rem 1rem;
  background-color: #ffffff;
  text-align: center;
  font-family: Arial, sans-serif;
}

.journey-container {
  max-width: 1000px;
  margin: 0 auto;
}

.journey-label {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.journey-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.journey-description {
  color: #555;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 2rem auto;
}

.journey-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

.journey-card {
  flex: 1;
  padding: 1rem;
}

.journey-image {
  background-color: #e5e5e5;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card-description {
  font-size: 0.9rem;
  color: #666;
}

.journey-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.enroll-btn {
  background: #2E7D32;
  color: #fff;
  border: none;
}

.enroll-btn:hover {
  background-color: #1B5E20;
}

.learn-more-link {
  display: inline-flex;
  align-items: center;
  color: #000;
  font-weight: 500;
  text-decoration: none;
}

.learn-more-link:hover {
  text-decoration: underline;
}
.journey-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1rem;
}

/* Responsive */
@media (min-width: 768px) {
  .journey-cards {
    flex-direction: row;
  }

  .journey-card {
    max-width: 300px;
  }
}

.join {
  width: 100%;
  padding: 0;
  margin: 0;
}

.join .overlay {
  background: url('images/student-posing-group-study-session-with-colleagues.jpg') center center no-repeat;
  background-size: cover;
  padding: 80px 20px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}

.join .container {
  max-width: 600px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.join h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: ghostwhite;
}

.join p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.expertise-section .buttons{
  margin-left: -100px;
}
.join-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.join-actions .btn-secondary {
  padding: 10px 20px;
  font-size: 0.95rem;
  border-radius: 6px;
}

.about-section {
  background-color: #f9f9fc;
  padding: 4rem 1rem;
  font-family: Arial, sans-serif;
  text-align: center;
}

.about-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #222;
}

.values-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}

.values-list li {
  background: #fff;
  padding: 1.2rem;
  border-left: 4px solid #2E7D32;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.value-content strong {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #000;
  margin-bottom: 0.25rem;
}

.value-content i {
  color: #2E7D32;
  font-size: 1.2rem;
}

.value-content p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

.partnerships-section {
  background-color: #f4f8fc;
  padding: 4rem 1rem;
  font-family: Arial, sans-serif;
  text-align: center;
}

.partnerships-section .about-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2.5rem;
  color: #222;
}

.partners-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1000px;
}

.partners-list li {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.partners-list li:hover {
  transform: translateY(-5px);
}

.partners-list img {
  max-width: 80px;
  max-height: 80px;
  object-fit: contain;
  margin-bottom: 0.8rem;
}

.partners-list span {
  font-size: 0.95rem;
  color: #333;
  text-align: center;
  line-height: 1.4;
}



.site-footer {
  border-top: 1px solid #ccc;
  padding: 2rem 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.footer-brand {
  flex: 1 1 300px;
}

.footer-brand .logo {
  font-family: 'Cursive', sans-serif;
  font-size: 1.8rem;
  color: #000;
  margin-bottom: 0.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin: 1rem 0;
}

.newsletter-form input {
  padding: 0.5rem;
  border: 1px solid #999;
  flex: 1;
}

.newsletter-form button {
  padding: 0.5rem 1rem;
  background-color: #00796b;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #004d40;
}

.footer-links {
  display: flex;
  margin-left: 10px;
  flex: 2 1 600px;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-links a:hover{
  text-decoration: underline;
}


.footer-column h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 0.4rem;
}

.footer-column a {
  text-decoration: none;
  color: #333;
}

.footer-column a:hover {
  color: #00796b;
}

.social-icons i {
  margin-right: 0.5rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ccc;
  padding-top: 1rem;
  font-size: 0.875rem;
}

.footer-policy-links a {
  margin-left: 1rem;
  color: #333;
  text-decoration: none;
}

.footer-policy-links a:hover {
  color: #00796b;
}
/* Meet the Head */
.meet-head-section {
  padding: 60px 20px;
  background-color: #f3f3f3;
}

.head-container {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.head-image {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
}

.head-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.head-content {
  flex: 2;
  min-width: 280px;
}

.head-content h2 {
  color: #2E7D32;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.head-content p {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Meet the Team */
.meet-team-section {
  background: #fff;
  padding: 60px 20px;
}

.team-title {
  text-align: center;
  font-size: 2rem;
  color: #2E7D32;
  margin-bottom: 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.team-card {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.team-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #222;
}

.team-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
}

.site-footer {
  background: #fff;
  border-top: 1px solid #ccc;
  padding: 60px 80px 30px;
  overflow-x: hidden;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
}

.footer-col {
  flex: 1;
  min-width: 160px;
  margin-left: -20px;
  max-width: 200px;
}

.logo-col {
  max-width: 100px;
}

.footer-logo {
  width: 200px;
  height: auto;
  margin-left: -30px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #000;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #000;
  font-size: 13px;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

.subscribe-col p {
  font-size: 13px;
  margin-bottom: 10px;
  max-width: 280px;
}

.subscribe-col form {
  display: flex;
  margin-bottom: 8px;
  max-width: 280px;
}

.subscribe-col input[type="email"] {
  flex: 1;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 2px 0 0 2px;
  font-size: 13px;
}

.subscribe-col button {
  padding: 8px 16px;
  background: #000;
  color: #fff;
  font-size: 13px;
  border: none;
  border-radius: 0 2px 2px 0;
  cursor: pointer;
}

.subscribe-col button:hover {
  background: #333;
}

.subscribe-col small {
  font-size: 11px;
  color: #444;
  display: block;
  max-width: 280px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 40px;
  border-top: 1px solid #ccc;
  padding-top: 20px;
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: #000;
  font-size: 13px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 16px;
  font-size: 16px;
}

.footer-social i {
  color: #000;
  cursor: pointer;
}
/* Fixed Header */
.main-header {
  background: #fff;
  padding: 1rem 0;
  border-bottom: 1px solid #ddd;
  font-family: 'Segoe UI', sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* Prevent content hiding behind header */
body {
  padding-top: 90px;
}

/* Menu Icon */
.menu-icon {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #000;
}
/* Ensure nav-container layout works as intended */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

/* Move menu icon to far right */
.menu-icon {
  margin-left: auto;
  order: 3;
  font-size: 24px;
  color: #000;
  cursor: pointer;
  display: none;
}

/* Show menu icon on tablets and smaller */
@media (max-width: 1020px) {
  .nav-menu,
  .header-buttons {
    display: none !important;
  }
.buttons {
    display: none !important;
  }
  .menu-icon {
    display: block;
    margin-top: -90px;
  }
  .join-actions {
    display: none !important;
  }

  .nav-container {
    flex-wrap: nowrap;
  }
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 250px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 8px rgba(0,0,0,0.1);
  padding: 20px;
  transition: right 0.3s ease;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  font-family: 'Segoe UI', sans-serif;
}

.sidebar.active {
  right: 0;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.sidebar-header span {
  font-weight: 600;
  font-size: 1.1rem;
}

.close-sidebar {
  font-size: 20px;
  cursor: pointer;
}

/* Sidebar Links */
.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar ul li {
  margin-bottom: 15px;
}

.sidebar ul li a {
  text-decoration: none;
  color: #000;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Sidebar Buttons */
.sidebar-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.sidebar-buttons .btn-outline,
.sidebar-buttons .btn-filled {
  font-size: 0.95rem;
  padding: 10px 16px;
  text-align: center;
}

/* Responsive */
@media (max-width: 1020px) {
  .nav-menu,
  .header-buttons {
    display: none !important;
  }

  .menu-icon {
    display: block;
  }
}

@media (min-width: 1021px) {
  .sidebar {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
/* Responsive fix */
@media (max-width: 768px) {
  .expertise-section,
  .education-section {
    flex-direction: column;
    text-align: center;
  }

  .expertise-image,
  .education-image,
  .expertise-content,
  .education-content {
    width: 100%;
  }

  .features {
    flex-direction: column;
    align-items: center;
  }

  .buttons {
    flex-direction: column;
    align-items: center;
  }

  .join .overlay {
    flex-direction: column;
    text-align: center;
  }

  .journey-cards {
    flex-direction: column;
    align-items: center;
  }

  .values-list {
    padding: 0 1rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .nav-container {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .nav-menu {
    flex-direction: column;
    gap: 1rem;
  }

  .header-buttons {
    flex-direction: column;
    width: 100%;
  }

  .about-hero {
    padding: 80px 20px;
  }

  .about-hero h1 {
    font-size: 1.8rem;
  }

  .about-hero p {
    font-size: 0.9rem;
  }
}
