@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700&display=swap');

:root {
  --brand-1: #0d5c63;
  --brand-2: #44a1a0;
  --accent: #f2c14e;
  --ink: #1f2933;
  --muted: #6b7b8c;
  --surface: #f6f9fc;
  --white: #ffffff;
  --gradient-hero: linear-gradient(135deg, rgba(13, 92, 99, 0.92) 0%, rgba(68, 161, 160, 0.88) 100%);
  --gradient-brand: linear-gradient(135deg, #0d5c63 0%, #1a7f86 100%);
  --gradient-accent: linear-gradient(135deg, #f2c14e 0%, #f4aa3e 100%);
  --shadow-sm: 0 10px 25px rgba(15, 38, 60, 0.08);
  --shadow-md: 0 18px 40px rgba(15, 38, 60, 0.14);
  --radius-md: 14px;
  --radius-lg: 22px;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: 'Manrope', 'Open Sans', sans-serif;
  color: var(--ink);
  background: var(--surface);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Sora', 'Poppins', sans-serif;
  color: var(--ink);
  font-weight: 700;
}

p {
  color: var(--muted);
}

a {
  color: var(--brand-1);
}

a:hover {
  color: #0a4d53;
}

#header {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 24px rgba(9, 30, 45, 0.08);
}

#header.header-scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
}

#logo img {
  max-width: 300px;
  width: 100%;
  height: 80px;
  object-fit: contain;
}

.navbar a,
.navbar a:focus {
  color: var(--ink) !important;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.navbar>ul>li>a:before {
  background-color: var(--brand-2);
  bottom: -8px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--brand-1) !important;
}

#hero.hero-modern {
  position: relative;
  background: url('../img/Bakground.jpg') center/cover no-repeat;
}

#hero.hero-modern::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

#hero .hero-container {
  position: relative;
  z-index: 2;
}

#hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.15;
  letter-spacing: -0.4px;
  text-transform: none;
}

#hero h2 {
  color: #eef8f8;
  font-weight: 500;
}

.hero-legal {
  color: #d9ecec;
  font-size: 16px;
  margin-top: 18px;
  font-weight: 500;
}

.btn-get-started {
  background: var(--gradient-accent) !important;
  border: 0 !important;
  color: #252525 !important;
  border-radius: 999px !important;
  font-weight: 700;
  padding: 14px 34px !important;
  box-shadow: var(--shadow-sm);
}

.btn-get-started:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.section-header .section-title {
  color: var(--brand-1);
}

.section-header .section-description {
  font-size: 16px;
  max-width: 720px;
  margin: 0 auto 1.2rem;
}

#facts .counters span {
  color: var(--brand-1);
  font-weight: 800;
}

#services .box,
#team .member,
.card,
#contact .form {
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  background: var(--white);
}

#services .box {
  height: 100%;
  padding: 32px 26px;
}

#services .box .icon a {
  width: 88px;
  height: 88px;
  border-radius: 20px;
  background: var(--gradient-brand);
  box-shadow: var(--shadow-sm);
}

#services .box .icon i,
#services .box .icon img {
  transition: transform 0.25s ease;
}

#services .box .icon img {
  filter: brightness(0) invert(1);
}

#services .box:hover,
#team .member:hover,
.card:hover,
#portfolio .portfolio-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

#services .box:hover .icon i,
#services .box:hover .icon img {
  transform: scale(1.08);
}

.btn-outline-primary {
  border-color: var(--brand-1) !important;
  color: var(--brand-1) !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
}

.btn-outline-primary:hover {
  background: var(--gradient-brand) !important;
  border-color: transparent !important;
  color: var(--white) !important;
}

#call-to-action {
  background: var(--gradient-brand);
  border-radius: 0;
}

#call-to-action .cta-title,
#call-to-action .cta-text {
  color: var(--white);
}

#call-to-action .cta-btn {
  background: var(--gradient-accent);
  color: #212529;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
}

#portfolio .portfolio-item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

#team .member .pic {
  border-radius: 18px;
}

#team .member .social a {
  background: #eef6f7;
  color: var(--brand-1);
}

#team .member .social a:hover {
  background: var(--brand-1);
  color: var(--white);
}

#contact .info i {
  background: #e6f3f4;
  color: var(--brand-1);
}

#contact .php-email-form button[type=submit],
.btn-primary {
  background: var(--gradient-brand) !important;
  border: 0 !important;
  border-radius: 999px !important;
  padding: 12px 28px !important;
  font-weight: 700 !important;
}

#footer {
  background: #102a34;
}

#footer .copyright,
#footer .credits {
  color: #d7e8ea;
}

.back-to-top {
  background: var(--gradient-brand) !important;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.back-to-top:hover {
  transform: translateY(-2px);
}

.about-main,
.portfolio-main {
  margin-top: 88px;
}

.feature-chip {
  background: #f1f6f9;
  border-radius: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.feature-chip i {
  font-size: 24px;
  color: var(--brand-1);
}

.feature-chip span {
  font-weight: 600;
  color: var(--ink);
}

.vision-card {
  background: linear-gradient(135deg, #0d5c63 0%, #16828a 100%);
}

.mission-card {
  background: linear-gradient(135deg, #1b6f6f 0%, #44a1a0 100%);
}

.chat-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
}

.chat-toggle {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--gradient-brand);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.chat-box {
  position: absolute;
  bottom: 76px;
  right: 0;
  width: 370px;
  max-width: calc(100vw - 20px);
  height: 540px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.chat-header {
  background: var(--gradient-brand);
  color: var(--white);
}

.message-sent .message-text {
  background: var(--brand-1);
  color: var(--white);
}

@media (max-width: 992px) {
  #logo img {
    max-width: 220px;
    height: 66px;
  }

  .navbar-mobile ul {
    border-radius: 12px;
  }

  #hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .about-main,
  .portfolio-main {
    margin-top: 82px;
  }

  #hero .hero-container {
    padding: 0 16px;
  }

  #services .box,
  #team .member,
  .card {
    padding: 22px;
  }
}

.chat-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  background: #dc3545;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.chat-status {
  font-size: 12px;
  opacity: 0.9;
}

.chat-close-btn {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 20px;
}

.chat-messages {
  height: calc(100% - 118px);
  overflow-y: auto;
  padding: 16px;
  background: #f4f8fb;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-input-area {
  border-top: 1px solid #e5edf2;
  padding: 12px;
}

.chat-input-area input {
  border-radius: 999px 0 0 999px;
}

.chat-input-area button {
  border-radius: 0 999px 999px 0;
}

.message-text {
  border-radius: 12px;
  padding: 10px 12px;
  line-height: 1.45;
}

.message-received .message-text {
  background: #fff;
  border: 1px solid #dde7ee;
}

.message-time {
  margin-top: 4px;
  font-size: 11px;
  color: #8a99a8;
}

/* ===== Lisibilite accueil ===== */
#hero.hero-modern::before {
  background: linear-gradient(135deg, rgba(10, 53, 58, 0.9) 0%, rgba(22, 101, 106, 0.84) 100%);
}

#hero .hero-container {
  max-width: 900px;
  text-align: center;
  padding: 0 18px;
}

#hero h1 {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  line-height: 1.2;
}

#hero h2 {
  color: #f2fbfb;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  line-height: 1.6;
  max-width: 760px;
  margin: 14px auto 0;
}

.hero-legal {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  padding: 10px 14px;
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.45;
}

#facts .counters p,
#services .box .description,
#portfolio .portfolio-info p,
#team .member span,
#contact .info p,
#contact .php-email-form label {
  color: #2e3d4a;
  font-size: 15.5px;
  line-height: 1.65;
}

.section-header .section-description,
#services .box .description,
#team .member p,
#portfolio .portfolio-info p {
  color: #355063;
}

#services .box .title a,
#team .member h4,
#portfolio .portfolio-info h4,
#contact .info i + p {
  color: #1a2f3f;
}

#portfolio .portfolio-info {
  background: rgba(11, 39, 53, 0.78);
}

#portfolio .portfolio-info h4,
#portfolio .portfolio-info p,
#portfolio .portfolio-info a {
  color: #ffffff;
}

#call-to-action .cta-title {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  line-height: 1.25;
}

#call-to-action .cta-text {
  color: #f0f7f9;
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 760px;
}

@media (max-width: 576px) {
  #hero h1 {
    font-size: 1.8rem;
  }

  #hero h2 {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-legal {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

/* Correctif nettete titre hero */
#hero h1 {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.22) !important;
  font-weight: 800;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Correctif contraste hero (prioritaire) */
#hero.hero-modern {
  isolation: isolate;
}

#hero.hero-modern::before {
  background: linear-gradient(135deg, rgba(7, 44, 52, 0.78) 0%, rgba(13, 92, 99, 0.72) 100%) !important;
}

#hero .hero-container h1,
#hero .hero-container h2,
#hero .hero-container p {
  color: #ffffff !important;
  opacity: 1 !important;
}

#hero .hero-container h1 {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.24) !important;
}

#hero .btn-get-started {
  color: #1b1f24 !important;
  background: #f2c14e !important;
}

/* Reequilibrage visuel hero */
#hero.hero-modern {
  padding-top: 90px;
}

#hero .hero-container {
  width: min(960px, 92%);
  margin: 0 auto;
  padding: 34px 30px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(7, 44, 52, 0.36) 0%, rgba(13, 92, 99, 0.26) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(3px);
  text-align: center;
}

#hero h1 {
  text-transform: none !important;
  font-size: clamp(2rem, 5vw, 3.6rem) !important;
  line-height: 1.15 !important;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

#hero h2 {
  margin-bottom: 20px;
}

.hero-legal {
  margin-bottom: 22px;
}

@media (max-width: 768px) {
  #hero .hero-container {
    padding: 24px 18px;
    border-radius: 16px;
  }

  #hero h1 {
    font-size: 1.8rem !important;
  }
}

/* Hero Slider Projets */
.hero-slider-section {
  position: relative;
  padding: 0;
}

#hero.hero-slider-section .hero-container {
  position: relative;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
  text-align: left;
  display: block;
}

.hero-slider {
  width: 100vw;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  min-height: 520px;
  border-radius: 0;
  overflow: hidden;
  background-color: #0b2a33;
}

#hero.hero-slider-section {
  width: 100vw;
  background: none !important;
}

#hero.hero-slider-section:before {
  display: none !important;
}

.hero-slider .swiper-wrapper {
  width: 100%;
  height: 100%;
}

.hero-slider .swiper-slide {
  position: relative;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-color: #0b2a33;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.05) 100%);
  z-index: 1;
}

.hero-slide-content--wide {
  position: relative;
  z-index: 2;
  height: 100%;
  width: min(1180px, 92%);
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.hero-slide-text--wide {
  max-width: 560px;
  color: #ffffff;
  text-align: left;
}

.hero-slide-text--wide h1 {
  font-family: "Playfair Display", "Times New Roman", serif !important;
  font-size: clamp(2.4rem, 6vw, 4.6rem) !important;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  text-transform: uppercase !important;
}

.hero-slide-text--wide h2 {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.85);
}

.hero-slide-text--wide .hero-legal {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.btn-get-started--hero {
  background: #f2d64b;
  color: #1a1a1a !important;
  border-color: #f2d64b !important;
  padding: 12px 34px !important;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.btn-get-started--hero:hover {
  background: #f6e16a !important;
  border-color: #f6e16a !important;
}

.hero-slider-controls {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0;
  pointer-events: none;
}

.hero-swiper-prev,
.hero-swiper-next {
  width: 54px;
  height: 54px;
  border-radius: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.35);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.2s ease;
  pointer-events: auto;
}

.hero-swiper-prev:hover,
.hero-swiper-next:hover {
  background: rgba(0, 0, 0, 0.55);
}

.hero-swiper-counter {
  display: none;
}

.hero-swiper-pagination {
  position: absolute !important;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  margin: 0;
}

.hero-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 0.6;
  background: rgba(255, 255, 255, 0.6);
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
  background: #f2d64b;
  opacity: 1;
}

@media (max-width: 992px) {
  .hero-slider {
    height: min(78vh, 640px);
  }

  .hero-slide-text--wide {
    max-width: 100%;
  }

  .hero-slide-text--wide h1 {
    letter-spacing: 0.05em;
  }
}

@media (max-width: 576px) {
  .hero-slider {
    height: 70vh;
    min-height: 360px;
  }

  .hero-slider-controls {
    left: 12px;
    right: 12px;
  }

  .hero-swiper-prev,
  .hero-swiper-next {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .hero-swiper-pagination {
    bottom: 18px;
  }
}

/* Theme Colors (Admin) */
:root {
  --color-primary: #2dc997;
  --color-secondary: #2dca98;
  --color-accent: #f2d64b;
  --color-background: #ffffff;
  --color-surface: #ffffff;
  --color-text: #666666;
  --color-heading: #222222;
  --color-link: #2dc997;
  --color-link-hover: #2dca98;
  --color-button: #2dc997;
  --color-button-text: #ffffff;
  --color-header-bg: #343b40;
  --color-nav-text: #ffffff;
  --color-nav-active: #2dc997;
  --color-footer-bg: #111111;
  --color-hero-overlay: #000000;
}

body {
  background: var(--color-background);
  color: var(--color-text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-heading);
}

a {
  color: var(--color-link);
}

a:hover,
a:active,
a:focus {
  color: var(--color-link-hover);
}

#header {
  background: var(--color-header-bg);
}

#header.header-transparent {
  background: var(--color-header-bg);
}

@supports (color: color-mix(in srgb, #000000 50%, transparent)) {
  #header {
    background: color-mix(in srgb, var(--color-header-bg) 88%, transparent);
  }

  #header.header-transparent {
    background: color-mix(in srgb, var(--color-header-bg) 75%, transparent);
  }
}

.header-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header-social a {
  color: var(--color-nav-text);
  font-size: 16px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--color-header-bg) 85%, transparent);
  transition: all 0.2s ease;
}

.header-social a:hover {
  color: var(--color-nav-active);
  background: color-mix(in srgb, var(--color-nav-active) 22%, transparent);
}

@media (max-width: 992px) {
  .header-social {
    display: none;
  }
}

.navbar a,
.navbar a:focus {
  color: var(--color-nav-text);
}

.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: var(--color-nav-active);
}

.section-bg {
  background: var(--color-surface);
}

.section-header .section-title {
  color: var(--color-heading);
}

.section-header .section-description {
  color: var(--color-text);
}

.btn-get-started,
.btn-get-started--hero {
  background: var(--color-button) !important;
  border-color: var(--color-button) !important;
  color: var(--color-button-text) !important;
}

.btn-get-started:hover,
.btn-get-started--hero:hover {
  background: var(--color-accent) !important;
  border-color: var(--color-accent) !important;
  color: var(--color-button-text) !important;
}

.back-to-top {
  background: var(--color-primary);
}

.back-to-top:hover {
  background: var(--color-secondary);
}

#footer {
  background: var(--color-footer-bg);
}

@supports (color: color-mix(in srgb, #000000 50%, transparent)) {
  .hero-slide-overlay {
    background: linear-gradient(
      90deg,
      color-mix(in srgb, var(--color-hero-overlay) 72%, transparent) 0%,
      color-mix(in srgb, var(--color-hero-overlay) 18%, transparent) 65%,
      color-mix(in srgb, var(--color-hero-overlay) 6%, transparent) 100%
    );
  }
}

/* Menu mobile/tablette (version simplifiee) */
@media (max-width: 991px) {
  .mobile-nav-toggle {
    z-index: 12002;
    color: #ffffff;
  }

  #navbar.navbar-mobile {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: 12000;
    background: rgba(10, 26, 36, 0.88);
  }

  #navbar.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #ffffff;
  }

  /* On desactive totalement l'ancien menu mobile */
  #navbar.navbar-mobile > ul {
    display: none !important;
  }

  #navbar.navbar-mobile .mobile-menu-fallback {
    display: flex !important;
  }
}

/* Panneau menu mobile JS fallback */
.mobile-menu-fallback {
  display: none;
}

@media (max-width: 991px) {
  #navbar.navbar-mobile .mobile-menu-fallback {
    display: none;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    background: #ffffff;
    border-radius: 12px;
    padding: 10px 0;
    overflow-y: auto;
    flex-direction: column;
    gap: 2px;
    z-index: 12001;
  }

  #navbar.navbar-mobile .mobile-menu-link {
    display: block;
    width: 100%;
    padding: 12px 20px;
    color: #1e3647;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 600;
    text-decoration: none;
  }

  #navbar.navbar-mobile .mobile-menu-link:hover,
  #navbar.navbar-mobile .mobile-menu-link:focus {
    color: #0d5c63;
    background: #f2f8fb;
  }

  #navbar.navbar-mobile .mobile-menu-sublink {
    padding-left: 34px;
    font-size: 14px;
    color: #375468;
  }
}

/* Overlay menu mobile JS (hors navbar) */
.mobile-menu-fallback {
  display: none;
}

@media (max-width: 991px) {
  body > .mobile-menu-fallback {
    position: fixed;
    top: 62px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 12050;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    border-radius: 12px;
    padding: 10px 0;
    overflow-y: auto;
    overflow-x: hidden;
    flex-direction: column;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
    border: 1px solid rgba(12, 50, 69, 0.12);
    opacity: 0;
    transform: translateY(10px) scale(0.98);
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  body > .mobile-menu-fallback.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  body > .mobile-menu-fallback .mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 20px;
    color: #1e3647;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #e8eef3;
  }

  body > .mobile-menu-fallback .mobile-menu-link:last-child {
    border-bottom: 0;
  }

  body > .mobile-menu-fallback .mobile-menu-link i {
    color: #0d5c63;
    font-size: 15px;
    width: 16px;
    text-align: center;
  }

  body > .mobile-menu-fallback .mobile-menu-link span {
    flex: 1;
  }

  body > .mobile-menu-fallback .mobile-menu-link:hover,
  body > .mobile-menu-fallback .mobile-menu-link:focus {
    color: #0d5c63;
    background: #f2f8fb;
  }

  body > .mobile-menu-fallback .mobile-menu-sublink {
    padding-left: 34px;
    font-size: 14px;
    color: #375468;
  }
}

/* Blog cards (ex-portfolio) */
.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card-body {
  padding: 18px;
}

.blog-card-body h4 {
  font-size: 1.15rem;
  line-height: 1.35;
  margin-bottom: 10px;
  color: #193446;
}

.blog-card-body p {
  font-size: 0.96rem;
  line-height: 1.6;
  color: #445b6f;
  margin-bottom: 14px;
}

.blog-category {
  display: inline-block;
  background: #e8f2f8;
  color: #0d5c63;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 5px 10px;
  margin-bottom: 10px;
}
