@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #0d1321;
  line-height: 1.6;
}
/* Headings */
    h1, h2, h3, h4, h5, h6, .subheading {
      font-family: 'EB Garamond', serif; /* Changed from Times New Roman */
    }

.menu-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f4f4f4;
  padding: 16px 32px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-logo {
  max-width: 250px;
  height: auto;
}

.menu-links {
  list-style: none;
  display: flex;
  gap: 32px;
  align-items: center;
}

.menu-links a {
  text-decoration: none;
  color: #090909;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.menu-links a:hover,
.menu-links a.active {
  color: #fca311;
}
.mobile-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  color: #090909;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }
  .menu-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 60px;
    right: 20px;
    background: #f4f4f4;
    padding: 15px 20px;
    border-radius: 10px;
    width: 220px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1000;
  }
  .menu-links.active {
    display: flex;
  }
  .menu-links li {
    padding: 10px 0;
  }
}

/* Hero section */
.hero-section {
  text-align: center;
  padding: 4rem 1rem 3rem;
  font-weight: 700;
  color: #fca311;
}
.hero-section h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}
.hero-section p {
  font-size: 1.25rem;
  color: #fca311;
  margin: 0;
}

/* Separator with lines and icon */
.separator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2.5rem 0;
}
.separator hr {
  flex-grow: 1;
  border: none;
  border-top: 1.5px solid #ccc;
  margin: 0 1rem;
}
.separator img {
  height: 40px;
  width: auto;
}

/* Sections styling - alternate bg colors for clarity */
section {
  max-width: 900px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}

/* For alternating background */
section:nth-of-type(odd) {
  background-color: #ffffff;
  padding: 2rem 1rem;
  border-radius: 8px;
}
section:nth-of-type(even) {
  background-color: #ffffff;
  padding: 2rem 1rem;
}

/* Section heading */
section h2 {
  font-weight: 800;
  color: #151515;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  text-align: center;
}

/* Section paragraphs */
section p {
  font-weight: 500;
  color: #0d0d0d;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Images inline with text for “Who Needs...” and “Your Journey...” */
.inline-img {
  float: left;
  width: 120px;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
  filter: brightness(0.8);
  transition: filter 0.3s ease;
}
.inline-img:hover {
  filter: brightness(1);
}

/* Process steps layout (horizontal flex with icons on top) */
.process-steps {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.process-step {
  flex: 1 1 250px;
  text-align: center;
  color: #131414;
}
.process-step img {
  width: 90px;
  margin-bottom: 1rem;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
.process-step img:hover {
  opacity: 1;
}
.process-step h3 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.process-step p {
  font-weight: 500;
  color: #131313;
  font-size: 1rem;
}

/* Industries list horizontally with spacing */
.industries-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem 2rem;
  font-weight: 600;
  color: #ffffff;
  max-width: 700px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.industries-list li {
  background: #fca311;
  padding: 0.55rem 1.2rem;
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  cursor: default;
  user-select: none;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}
.industries-list li:hover {
  background-color: #cacfd2;
}

/* Success metrics - horizontal flex */
.metrics-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  max-width: 800px;
  margin: 1rem auto 0;
}
.metric-item {
  text-align: center;
  color: #fca311;
  font-weight: 700;
  font-size: 1.4rem;
  user-select: none;
}
.metric-item strong {
  display: block;
  font-size: 2.2rem;
  color: #fca311;
  margin-bottom: 0.25rem;
}

/* Redirect section */
.redirect-section {
  text-align: center;
  margin-bottom: 4rem;
  color: #fca311;
}
.redirect-section h2 {
  font-weight: 800;
  font-size: 1.9rem;
}
.redirect-section p {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
  color: #101111;
}
.redirect-button {
  background-color: #fca311;
  border: none;
  padding: 0.7rem 2.2rem;
  font-size: 1.15rem;
  border-radius: 30px;
  color: white;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease;
  cursor: pointer;
  display: inline-block;
}
.redirect-button:hover {
  background-color: #c6901b;
  color: #090909
  
}

/* Footer */
.custom-footer {
  background-color: #f4f4f4;
  color: #0d1321;
  padding: 40px 20px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1500px;
  margin: 0 auto;
}

.footer-brand {
  flex: 1 1 220px;
  text-align: left;
}

.footer-logo {
  max-width: 320px;
  height: auto;
  display: block;
  margin: 0;
}

.footer-block {
  flex: 1 1 220px;
  min-width: 220px;
}

.footer-block h4 {
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-block p, 
.footer-block li {
  margin-bottom: 8px;
  color: #333333;
  font-size: 0.95rem;
}

.footer-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-block i {
  margin-right: 8px;
  color: #fca311;
}

.footer-block a {
  color: #fca311;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-block a:hover {
  color: #0d1321;
  text-shadow: 0 0 3px rgba(252, 163, 17, 0.6);
  text-decoration: underline;
}

.footer-block ul li {
  transition: transform 0.2s ease, color 0.3s ease;
}

.footer-block ul li:hover {
  color: #fca311;
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #ccc;
  padding-top: 16px;
  margin-top: 40px;
  font-size: 14px;
  color: #666;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding-bottom: 10px;
}
.footer-socials {
  margin-top: 12px;
}

.footer-socials a {
  color: #0d1321;
  margin: 0 10px;
  font-size: 18px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
  color: #fca311;
  transform: scale(1.2);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-block, 
  .menu-links, 
  .practice-areas .row, 
  .cta {
    width: 100%;
    flex-direction: column;
    text-align: center;
  }
  .menu-links {
    gap: 16px;
  }
}