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

:root {
  --navy: #09263c;
  --navy-2: #123e58;
  --blue: #136f8a;
  --teal: #0aa6a6;
  --mint: #e7f8f5;
  --gold: #f3b64d;
  --ink: #163040;
 ---muted: #142733;
  --line: #dce8ec;
  --soft: #f5fafb;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(8, 39, 58, .11);
  --radius: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--ink); background: var(--white); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.92); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(220,232,236,.85); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.logo-main {
    width: 70px;
    height: 70px;
    
}

.logo-flag {
    width: 80px;
    height:70px;
    
    
}
.footer-logo {
    width: 100px;
    height: 100px;
    margin-bottom:30px;
    object-fit: contain;
}
.brand span { display: flex; flex-direction: column; line-height: 1.15; }
.brand strong { font-family: 'Manrope', sans-serif; letter-spacing: .04em; font-size: 1rem; color: var(--navy); }
.brand small { color: var(--muted); font-size: .68rem; margin-top: 4px; }
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a { padding: 10px 12px; border-radius: 10px; font-size: .92rem; font-weight: 600; color: #496270; transition: .25s ease; }
.main-nav a:hover, .main-nav a.active { color: var(--blue); background: var(--mint); }
.main-nav .nav-cta { background: var(--navy); color: var(--white); padding-inline: 16px; margin-left: 6px; }
.main-nav .nav-cta:hover, .main-nav .nav-cta.active { background: var(--teal); color: var(--white); }
.menu-toggle { display: none; background: transparent; border: 0; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 25px; height: 2px; margin: 5px 0; background: var(--navy); }

.hero {
    min-height: 600px;
    position: relative;
    display: grid;
    align-items: start;
    overflow: hidden;

    background:
        
        linear-gradient(135deg, rgba(238, 246, 248, 0.65) 0%, rgba(221, 238, 243, 0.65) 100%),
        url("../images/hero-background.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero::before { content: ''; position: absolute; inset: 0; opacity: .2; background-image: linear-gradient(rgba(19,111,138,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(19,111,138,.1) 1px, transparent 1px); background-size: 46px 46px; mask-image: linear-gradient(to bottom, black, transparent 88%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; align-items: start; gap: 70px; padding: 50px 0 70px;}
.hero-label{
    display:block;
    text-align:center;
    color:var(--navy);
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.15em;
    font-size:30px;
    margin-top: 35px; 
}
.eyebrow { display: inline-block; color: var(--teal); font-weight: 700; text-transform: uppercase; letter-spacing: .15em; font-size: .76rem; margin-bottom: 16px; }
.eyebrow.light { color: #8bf2e7; }
h1, h2, h3 { font-family: 'Manrope', sans-serif; line-height: 1.16; color: var(--navy); }
.hero h1 { font-size: clamp(3rem, 6vw, 5.65rem); letter-spacing: -.055em; max-width: 760px; }
.hero h1 span { color: var(--teal); }
.hero-copy > p { font-size: 1.2rem; color: var(--muted); max-width: 650px; margin: 24px 0 30px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border-radius: 12px; font-weight: 700; border: 1px solid transparent; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; cursor: pointer; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(9,38,60,.16); }
.btn-primary { background: var(--teal); color: var(--white); }
.btn-secondary { background: var(--white); color: var(--navy); border-color: var(--line); }
.btn-light { background: var(--white); color: var(--navy); }
.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 28px; color: #58707d; font-size: .83rem; }
.hero-trust span::before { content: '✓'; color: var(--teal); font-weight: 800; margin-right: 7px; }
.hero-heading-row {
    display: flex;
    justify-content: flex-start;   /* pushes content to the left */
    align-items: center;           /* aligns logo and text nicely */
    gap: 180px;                     /* smaller gap */
    margin-top: 35px;
}

.hero-logo {
    width: 140px;
    height: 140px;
    flex-shrink: 0;

    border-radius: 24px;      /* soft rounded square, not a circle */
    background: white;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px;
}
/* DO NOT make the image round */
.hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;

    border-radius: 0;
}
.hero-label {
    display: block;
    margin-top: 20px;
    text-align: center;
    color: var(--navy);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15em;
    font-size: 30px;
}

.dna-card {
    position: relative;
    height: 550px;
    border-radius: 36px;
    box-shadow: 0 35px 80px rgba(5,39,57,.25);
    overflow: hidden;
    background: var(--navy);
    
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .6s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.slider-btn {
    position: absolute;
    z-index: 5;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    color: var(--navy);
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,.18);
}

.slider-prev {
    left: 16px;
}

.slider-next {
    right: 16px;
}

.slider-dots {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.55);
    cursor: pointer;
}

.slider-dot.active {
    background: var(--white);
    transform: scale(1.25);
}
.dna-card::before,
.dna-card::after,
.dna-visual {
    display: none;
}
.dna-visual span::before, .dna-visual span::after { content: ''; position: absolute; top: 50%; width: 20px; height: 20px; margin-top: -10px; border-radius: 50%; background: #6fe3d7; box-shadow: 0 0 20px rgba(111,227,215,.55); }
.dna-visual span::before { left: calc(50% - 86px + (var(--i) % 4) * 18px); }
.dna-visual span::after { right: calc(50% - 86px + (var(--i) % 4) * 18px); background: #f4bf64; }
.dna-visual span { background: linear-gradient(90deg, transparent 20%, rgba(255,255,255,.36) 20%, rgba(255,255,255,.36) 80%, transparent 80%); background-size: 100% 1px; background-repeat: no-repeat; background-position: center; }
@keyframes pulse { 50% { transform: scaleX(.82); opacity: .72; } }
.floating-stat { position: absolute; z-index: 2; background: rgba(255,255,255,.96); border: 1px solid rgba(255,255,255,.6); border-radius: 16px; padding: 14px 18px; box-shadow: 0 12px 25px rgba(4,30,48,.18); display: flex; flex-direction: column; }
.floating-stat strong { font-family: 'Manrope'; color: var(--navy); font-size: 1.5rem; }
.floating-stat span { font-size: .74rem; color: var(--muted); }
.stat-a { top: 36px; left: 28px; }
.stat-b { right: 26px; top: 195px; }
.stat-c { left: 34px; bottom: 34px; }

.stats-strip { background: var(--navy); color: white; }
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.stats-grid > div { padding: 15px 15px; border-right: 1px solid rgba(255,255,255,.12); display: flex; flex-direction: column; }
.stats-grid > div:last-child { border-right: 0; }
.stats-grid strong { font-family: 'Manrope'; font-size: 1.8rem; color: #78e8dd; }
.stats-grid span { color: #c8d7df; font-size: .84rem; }

.section { padding: 60px 0; }
.soft-bg { background: var(--soft); }
.two-col { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.section-heading { margin-bottom: 45px; }
.section-heading h2 { font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -.04em; max-width: 760px; }
.section-heading p { color: var(--muted); max-width: 650px; margin-top: 18px; }
.section-heading.centered { text-align: center; display: flex; align-items: center; flex-direction: column; }
.prose p { color: var(--muted); font-size: 1.15rem; margin-bottom: 20px; }
.card-grid { display: grid; gap: 22px; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.feature-card, .research-card { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.feature-card:hover, .research-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: transparent; }
.icon { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 14px; background: var(--mint); color: var(--teal); font-family: 'Manrope'; font-weight: 800; margin-bottom: 26px; }
.feature-card h3, .research-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.feature-card p, .research-card p {font-size: 1.15rem; color: var(--muted); }

.timeline { position: relative; margin-top: 20px; }
.timeline::before { content: ''; position: absolute; left: 27px; top: 30px; bottom: 30px; width: 2px; background: var(--line); }
.timeline-item { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 28px; margin-bottom: 28px; }
.timeline-item > span { width: 56px; height: 56px; border-radius: 50%; background: white; border: 2px solid var(--line); display: grid; place-items: center; z-index: 2; font-weight: 800; color: var(--muted); }
.timeline-item > div { border: 1px solid var(--line); border-radius: 18px; padding: 25px 28px; background: white; }
.timeline-item small { color: var(--teal); text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }
.timeline-item h3 { margin: 5px 0 8px; }
.timeline-item p { font-size: 1.08rem; color: var(--muted); }
.timeline-item.complete > span { background: var(--teal); border-color: var(--teal); color: white; }
.timeline-item.current > span { border-color: var(--gold); color: var(--navy); background: #fff5df; box-shadow: 0 0 0 8px rgba(243,182,77,.15); }

.impact-section { background: linear-gradient(135deg, var(--navy), #0d5468); color: white; }
.impact-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 90px; align-items: center; }
.impact-section h2 { color: white; }
.impact-section .section-heading p {font-size: 1.1rem color: #c9d9df; margin-bottom: 28px; }
.impact-list { border-top: 1px solid rgba(255,255,255,.18); }
.impact-list div { display: grid; grid-template-columns: 70px 1fr; align-items: center; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.impact-list strong { color: #7ce9dd; }
.impact-list span { font-size: 1.8  rem; }
.quote-card { background: var(--soft); border: 1px solid var(--line); border-radius: 28px; padding: 48px; display: flex; justify-content: space-between; align-items: center; gap: 40px; }
blockquote { font-family: 'Manrope'; font-size: clamp(1.5rem, 3vw, 2.5rem); line-height: 1.25; color: var(--navy); max-width: 820px; }

.page-hero {
    padding: 100px 0 85px;
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(135deg, rgba(238, 246, 248, 0.65) 0%, rgba(221, 238, 243, 0.65) 100%),
        url("../images/hero-background.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .2;
    background-image:
        linear-gradient(rgba(19,111,138,.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(19,111,138,.1) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(to bottom, black, transparent 88%);
    pointer-events: none;
}

.page-hero > .container {
    position: relative;
    z-index: 2;
}
.page-hero h1 { font-size: clamp(3rem, 7vw, 5rem); letter-spacing: -.05em; }
.page-hero p { max-width: 720px; font-size: 1.08rem; color: var(--muted); margin-top: 18px; }
.team-feature { display: grid; grid-template-columns: 360px 1fr; gap: 60px; align-items: center; margin-bottom: 90px; padding: 34px; border-radius: 28px; background: var(--soft); border: 1px solid var(--line); }
.team-feature img { width: 100%; height: 420px; object-fit: cover; object-position: top; border-radius: 20px; }
.team-feature h2 { font-size: 2.5rem; }
.role { color: var(--teal) !important; font-weight: 700; margin: 8px 0 14px; }
.team-feature p { color: var(--muted); }
.contact-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.contact-chips a { padding: 8px 13px; border-radius: 999px; background: white; border: 1px solid var(--line); color: var(--blue); font-weight: 600; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.team-card { border: 1px solid var(--line); border-radius: 22px; overflow: hidden; background: white; }
.team-card img { width: 100%; height: 280px; object-fit: cover; object-position: top; }
.team-card div { padding: 25px; }
.team-card h3 { font-size: 1.25rem; }
.team-card p { color: var(--muted); margin: 10px 0; }
.team-card a { color: var(--blue); font-size: .88rem; font-weight: 600; overflow-wrap: anywhere; }

.publication-feature { display: flex; justify-content: space-between; gap: 45px; align-items: center; padding: 40px; border-radius: 24px; background: var(--navy); color: white; margin-bottom: 85px; }
.publication-feature h2 { color: white; font-size: 2rem; margin: 12px 0; }
.publication-feature p { color: #c8d7df; max-width: 780px; }
.tag { display: inline-block; color: #75e7dc; text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; font-weight: 700; }
.note { margin-top: 15px; padding: 12px 15px; background: rgba(255,255,255,.08); border-radius: 10px; font-size: .86rem; }
.research-card > span { color: var(--teal); font-family: 'Manrope'; font-weight: 800; }
.research-card small { display: inline-block; margin-top: 18px; color: var(--blue); font-weight: 700; }
.topic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.topic { padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: white; font-family: 'Manrope'; font-weight: 700; color: var(--navy); }
.cta-band { padding: 42px; border-radius: 24px; background: linear-gradient(135deg, var(--teal), var(--blue)); color: white; display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.cta-band h2 { color: white; }
.cta-band p { color: #dff9f5; margin-top: 8px; }

.notice { background: #fff8e7; border: 1px solid #f0d18e; border-radius: 18px; padding: 24px 28px; margin-bottom: 65px; }
.notice strong { color: #7d5614; }
.notice p { color: #76613d; margin-top: 6px; }
.principles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.principles > div { background: white; border: 1px solid var(--line); border-radius: 18px; padding: 28px; }
.principles strong { color: var(--teal); }
.principles h3 { margin: 8px 0; }
.principles p { color: var(--muted); }
.steps { list-style: none; }
.steps li { display: grid; grid-template-columns: 48px 1fr; gap: 20px; margin-bottom: 25px; }
.steps li > span { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: var(--mint); color: var(--teal); font-weight: 800; }
.steps p { color: var(--muted); }

.news-feature { display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; align-items: center; margin-bottom: 60px; border: 1px solid var(--line); border-radius: 24px; padding: 28px; }
.news-visual { height: 320px; border-radius: 18px; display: flex; align-items: flex-end; padding: 25px; background: radial-gradient(circle at 70% 30%, rgba(117,231,220,.38), transparent 28%), linear-gradient(145deg, var(--navy), var(--blue)); }
.news-visual span { color: white; font-weight: 700; background: rgba(255,255,255,.14); padding: 8px 12px; border-radius: 999px; }
.news-feature h2 { font-size: 2.25rem; margin: 8px 0 14px; }
.news-feature p:not(.date) { color: var(--muted); }
.date { color: var(--teal); text-transform: uppercase; letter-spacing: .1em; font-size: .75rem; font-weight: 700; }
.text-link { display: inline-block; margin-top: 18px; color: var(--blue); font-weight: 700; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.news-card { border: 1px solid var(--line); border-radius: 20px; padding: 28px; background: white; }
.news-card h3 { margin: 10px 0; }
.news-card p:not(.date) { color: var(--muted); }
.news-card > span { display: inline-block; margin-top: 22px; color: var(--blue); font-weight: 700; font-size: .82rem; }
.news-card.placeholder { border-style: dashed; background: var(--soft); }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.contact-info h2 { font-size: 2.6rem; }
.contact-info > p { color: var(--muted); margin: 18px 0 32px; }
.contact-block { padding: 18px 0; border-top: 1px solid var(--line); display: flex; flex-direction: column; }
.contact-block small { color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.contact-block a { color: var(--blue); font-weight: 700; }
.form-card { border: 1px solid var(--line); border-radius: 24px; padding: 34px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
label { display: flex; flex-direction: column; gap: 7px; font-weight: 600; color: var(--navy); margin-bottom: 17px; }
input, textarea, select { width: 100%; border: 1px solid #cfdde2; border-radius: 11px; padding: 13px 14px; color: var(--ink); background: white; outline: none; }
input:focus, textarea:focus, select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(10,166,166,.12); }
textarea { resize: vertical; }
.form-note { color: var(--muted); font-size: .78rem; margin-top: 13px; }
.success-message { background: var(--mint); border: 1px solid #a8ddd5; border-radius: 14px; padding: 16px; margin-bottom: 22px; color: #23695f; }

.site-footer { background: #071f31; color: #b8c9d2; padding-top: 65px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr 1fr; gap: 60px; padding-bottom: 45px; }
.footer-brand strong { color: white; }
.footer-brand small { color: #9cb1bd; }
.footer-grid > div:first-child > p { margin-top: 18px; max-width: 430px; }
.footer-grid h3 { color: white; font-size: 1rem; margin-bottom: 16px; }
.footer-grid a { display: block; margin-bottom: 8px; transition: color .2s ease; }
.footer-grid a:hover { color: #75e7dc; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; display: flex; justify-content: space-between; font-size: .85rem; }

.reveal { opacity: 1; transform: none; transition: opacity .65s ease, transform .65s ease; }
.js-enabled .reveal { opacity: 0; transform: translateY(24px); }
.js-enabled .reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .main-nav { position: absolute; top: 82px; left: 20px; right: 20px; display: none; flex-direction: column; align-items: stretch; background: white; border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: 16px; padding: 12px; }
  .main-nav.open { display: flex; }
  .main-nav .nav-cta { margin-left: 0; text-align: center; }
  .hero-grid, .impact-grid, .two-col, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 40px; }
  .dna-card { max-width: 650px; width: 100%; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid > div:nth-child(2) { border-right: 0; }
  .card-grid.three, .team-grid, .news-grid { grid-template-columns: repeat(2, 1fr); }
  .team-feature { grid-template-columns: 280px 1fr; gap: 35px; }
  .topic-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1160px); }
  .brand small { display: none; }
  .brand img { width: 44px; height: 44px; }
  .nav-wrap { min-height: 70px; }
  .main-nav { top: 70px; }
  .hero { min-height: auto; }
  .hero-grid { padding: 65px 0; }
  .hero h1 { font-size: 3rem; }
  .dna-card { height: 410px; }
  .dna-visual { inset: 60px 85px; }
  .floating-stat { padding: 10px 12px; }
  .stat-b { top: 170px; }
  .stats-grid, .card-grid.three, .team-grid, .news-grid, .topic-grid, .principles, .form-row { grid-template-columns: 1fr; }
  .stats-grid > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .section { padding: 72px 0; }
  .two-col { gap: 30px; }
  .section-heading { margin-bottom: 32px; }
  .team-feature, .news-feature { grid-template-columns: 1fr; padding: 20px; }
  .team-feature img { height: 380px; }
  .publication-feature, .cta-band, .quote-card { flex-direction: column; align-items: flex-start; padding: 28px; }
  .news-visual { height: 230px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
.language-switch {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 10px;
    padding-left: 12px;
    border-left: 1px solid var(--line);
}

.language-switch a {
    padding: 6px 10px;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 700;
    color: var(--muted);
    transition: .25s;
}

.language-switch a:hover {
    background: var(--mint);
    color: var(--teal);
}

.language-switch a.active {
    background: var(--navy) !important;
    color: white !important;
    border: 2px solid var(--gold);
}

.language-switch span {
    color: var(--muted);
}

@media (max-width: 980px) {
    .language-switch {
        justify-content: center;
        margin-left: 0;
        padding: 10px 0 0;
        border-left: 0;
        border-top: 1px solid var(--line);
    }
}
.footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    margin: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    color: white;
    font-size: 1.1rem;
    transition: .25s ease;
}

.footer-socials a:hover {
    background: var(--teal);
    color: white;
    transform: translateY(-3px);
}
/* Right column: slider + images stacked vertically */
.hero-visual {
    display: flex;
    flex-direction: column;
}



/* Text + image side by side under the slider */
.hero-below-images {
    display: flex;
    flex-direction: column;      /* stack text above image */
    align-items: center;         /* center horizontally */
    text-align: center;          /* center the text lines */
    gap: 14px;
    margin-top: 80px;            /* ← push it way below the slider */
}

/* Text block */
.hero-below-text {
    font-size: 20rem;
    flex: 0 1 auto !important;   /* take only the space it needs */
    padding: 0 !important;
    margin: 0 !important;
}

.hero-below-text h3 {
    font-family: 'Manrope', sans-serif;
    color: var(--navy);
    font-size: 1.2rem;
    margin: 0 0 6px;
    line-height: 1.2;
}

.hero-below-text p {
    font-weight: 700;
    color: var(--navy);
    font-size: 1.7rem;
    line-height: 1.5;
    margin: 0;
}

/* Image block — small, right next to the text */
.hero-below-image {
    flex-shrink: 0;
    width: 130px;              /* ← increase this */
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
}

.hero-below-image img {
    width: 100%;
    height: auto;              /* ← or set a fixed height */
    display: block;
    object-fit: contain;
    padding: 8px;
    background: white;
}

.hero-below-image:hover img {
    transform: scale(1.05);
}

/* Stack on small screens */
@media (max-width: 680px) {
    .hero-below-images {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-below-image {
        width: 140px;
    }
    .hero-below-image img {
        height: 100px;
    }
}
