/* ══════════════════════════════════════
   RESET
   ══════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ══════════════════════════════════════
   CONTAINER (Webflow w-container)
   ══════════════════════════════════════ */
.w-container {
  max-width: 940px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 10px;
  padding-left: 10px;
}

/* ══════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════ */
.navbar-logo-left-container {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  width: 100%;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 20px 20px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.navbar-logo-left-container .container {
  max-width: 1140px;
  margin: 0 auto;
}
.navbar-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand img { width: 60px; }
.nav-menu-two {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-menu-two li {
  display: flex;
  align-items: center;
}
.nav-link {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 400;
  color: #333;
  transition: color 0.25s ease;
}
.nav-link:hover { color: #3a73da; }
.nav-link-accent {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #3a73da;
  transition: opacity 0.25s ease;
}
.nav-link-accent:hover { opacity: 0.7; }
.nav-divider {
  width: 1px; height: 20px;
  margin: 0 8px;
  background-color: #ddd;
}
.nav-bar-button {
  display: inline-block;
  padding: 9px 20px;
  background-color: #3a73da;
  color: #fff;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.25s ease, transform 0.25s ease;
  border: none;
  cursor: pointer;
}
.nav-bar-button:hover {
  background-color: #2d5cb8;
  transform: translateY(-1px);
}
.menu-button {
  display: none;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
}
.menu-button .bar {
  display: block;
  width: 22px; height: 2px;
  background: #333;
  margin: 5px 0;
  border-radius: 1px;
}

/* ══════════════════════════════════════
   SECTIONS (base — matches Webflow)
   ══════════════════════════════════════ */
.section {
  display: flex;
  overflow: visible;
  margin-bottom: 0;
  padding-top: 25px;
  padding-bottom: 25px;
  flex-flow: row-reverse;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #fff;
}
.section.dark-section {
  margin-top: 10px;
  background-color: rgb(58, 115, 218);
}

/* ══════════════════════════════════════
   TWO-COLUMN GRID
   ══════════════════════════════════════ */
.div-two-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero-section { padding-top: 120px; }
.hero-section-header {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #333;
}
.subheading-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #555;
  margin-bottom: 24px;
}
.dark-subheading { color: #fff; }
.div-two-small {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
}
.button {
  display: inline-block;
  padding: 10px 24px;
  background-color: #3a73da;
  color: #fff;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.button:hover {
  background-color: #2d5cb8;
  transform: translateY(-1px);
}
.button.button-empty {
  background-color: transparent;
  color: #333;
  border: 1px solid #ccc;
}
.button.button-empty:hover {
  border-color: #3a73da;
  color: #3a73da;
}
.div-block {
  display: flex;
  align-items: center;
  gap: 12px;
}
.icons {
  width: 28px; height: 28px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.icons:hover { transform: scale(1.1); opacity: 0.8; }
.hero-image {
  width: 400px;
  border-radius: 12px;
}

/* ══════════════════════════════════════
   HEADINGS
   ══════════════════════════════════════ */
.heading-text {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
}
.dark-heading { color: #fff; }
.subtitle-text {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 4px;
}
.dark-subtitle { color: #fff; }

/* ══════════════════════════════════════
   PROJECT CARDS
   ══════════════════════════════════════ */
.project-features-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-features-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.project-features-card .image {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 16px;
}
.div-section-text {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #888;
  margin-bottom: 6px;
}
.paragraph-text {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 16px;
}
.dark-paragraph { color: rgba(255, 255, 255, 0.85); }
.project-logos {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  align-items: center;
}
.project-tolo-logo {
  width: 28px; height: 28px;
  transition: transform 0.2s ease;
}
.project-tolo-logo:hover { transform: scale(1.15); }
.div-for-card-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.div-for-card-buttons .button {
  font-size: 11px;
  padding: 7px 14px;
  cursor: default;
}

/* ══════════════════════════════════════
   CERTIFICATIONS
   ══════════════════════════════════════ */
.div-block-6 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.project-cert-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 22px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-cert-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.project-cert-card .image {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 14px;
}

/* ══════════════════════════════════════
   CONSULTING
   ══════════════════════════════════════ */
.div-block-13 {
  padding-top: 25px;
  padding-bottom: 25px;
}
.consulting-1 {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 40px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.consulting-1:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.div-block-11 { display: flex; align-items: flex-start; }
.image-4 {
  width: 60px; height: 60px;
  border-radius: 10px;
  object-fit: contain;
}
.consulting-2 {
  display: grid;
  margin-top: 30px;
  margin-right: -35px;
  margin-bottom: 0px;
  grid-auto-columns: 1fr;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.consulting-2:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.image-3 { width: 100%; border-radius: 10px; }

/* ══════════════════════════════════════
   ACADEMICS
   ══════════════════════════════════════ */
.div-block-7 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 24px;
}
.div-block-7 p {
  font-size: 14px;
  line-height: 2;
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.footer-subscribe {
  background-color: #f5f5f5;
  padding-top: 40px;
  padding-bottom: 0;
}
.container-2 {
  max-width: 940px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 10px;
  padding-left: 10px;
}
.footer-wrapper-three { display: flex; flex-direction: column; }
.footer-block-three {
  display: flex; gap: 24px; flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer-link-three {
  font-size: 14px; color: #555;
  transition: color 0.25s ease;
}
.footer-link-three:hover { color: #3a73da; }
.footer-social-block-three {
  display: flex; gap: 12px; margin-bottom: 20px;
}
.footer-social-link-three img {
  width: 20px; height: 20px;
  transition: transform 0.25s ease;
}
.footer-social-link-three:hover img { transform: scale(1.1); }
.footer-divider-two {
  width: 100%; height: 1px;
  background-color: #ddd;
  margin-bottom: 20px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
}
.footer-copyright { font-size: 13px; color: #888; }
.footer-legal-link {
  font-size: 13px; color: #888;
  transition: color 0.25s ease;
}
.footer-legal-link:hover { color: #3a73da; }

/* ══════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeUp 0.6s ease forwards; }

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media screen and (max-width: 991px) {
  .nav-menu-wrapper { display: none; }
  .nav-menu-wrapper.open {
    display: block;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    padding: 16px 20px;
  }
  .nav-menu-wrapper.open .nav-menu-two {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .nav-divider { display: none; }
  .menu-button { display: block; }
}

@media screen and (max-width: 767px) {
  .navbar-logo-left-container { max-width: 100%; }
  .div-two-section { grid-template-columns: 1fr; gap: 24px; }
  .hero-image { width: 280px; margin: 0 auto; }
  .consulting-2 {
    grid-template-columns: 1fr;
    margin-right: 0; margin-top: 40px; margin-bottom: 0;
  }
  .div-block-7 { grid-template-columns: 1fr; gap: 24px; }
}

@media screen and (max-width: 479px) {
  .section { padding-left: 0; flex-flow: column; }
  .section.dark-section { padding-right: 10px; padding-left: 10px; }
  .hero-section-header { font-size: 32px; }
  .div-two-small { flex-direction: column; align-items: flex-start; }
  .div-block-13 {
    display: flex; padding-right: 12px; padding-left: 12px;
    flex-flow: column; justify-content: flex-start;
    align-items: center; text-align: center;
  }
  .consulting-1 { grid-template-columns: 1fr; }
  .consulting-2 {
    display: flex; margin-top: 100px;
    margin-right: 0; margin-bottom: -30px;
    padding-right: 12px; padding-left: 12px;
    flex-flow: column; gap: 10px;
  }
  .div-block-6 { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .footer-block-three { flex-direction: column; gap: 12px; }
}