* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1a2c3e;
    line-height: 1.5;
    scroll-behavior: smooth;
    padding-top: 90px;
}

/* Color palette inspired by original: navy/dark blue accents, clean whites, soft grays */
:root {
    --primary-dark: #0a2540;
    --primary: #1c6e8f;
    --primary-light: #eef5f9;
    --accent: #2c7da0;
    --gray-light: #f8fafc;
    --gray-mid: #eef2f6;
    --gray-border: #e2e8f0;
    --text-dark: #1e2f3e;
    --text-muted: #4a627a;
}

/* Utility */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.container2 {
    max-width: 1280px;
    margin: 0 auto;
    padding: 10px 32px;
}

section {
    padding: 72px 0;
    border-bottom: 1px solid var(--gray-border);
}

section:last-child {
    border-bottom: none;
}

.section-title {
    font-size: 1.7rem;
    font-weight: 650;
    color: var(--primary-dark);
    text-align: left;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.section-sub {
    text-align: left;
    color: var(--text-muted);
    max-width: auto;
    margin: 0 0 0 0;
    font-size: 1.1rem;
}

/* Header & navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /*background: #fff;  */
}

.top-bar {
    background: var(--primary-dark);
    color: white;
    padding: 8px 0;
    font-size: 0.85rem;
    text-align: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 32px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;    /*0.2s;*/
}

.nav-links a:hover {
    color: var(--primary);

}

.menu-toggle {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #f1f9fe 0%, #ffffff 100%);
    padding: 80px 0 100px;
    text-align: center;
    border-bottom: 1px solid var(--gray-border);
}

.hero h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* cards grid for What We Offer (carousel simulation but using grid + cards) */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 20px;
}

.offer-card {
    background: white;
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.03);
    border: 1px solid var(--gray-border);
    transition: all 0.25s ease;
    overflow: hidden;      /* important */
}
/* Orange top line */
.offer-card::before {
  content: "";
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 8px;
 background: #f07a2d;
}

.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.08);
    border-color: var(--primary-light);
}

.offer-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.offer-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.offer-card p {
    color: var(--text-muted);
    line-height: 1.5;
}
/* Small divider line */
.offer-card .divider {
    width: 120px;
    height: 2px;
    background: darkgreen;
    margin: 20px auto 35px;
}

/* Why partner row */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

.partner-item {
    text-align: center;
    background: var(--gray-light);
    padding: 32px 24px;
    border-radius: 28px;
}

.partner-item i {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.partner-item h4 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    font-weight: 700;
}

/* Mouse hover effect */
.partner-item:hover i{
    transform:translateY(-10px) rotate(10deg);
}

/* onboarding steps (horizontal flow) */
.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}
.step {
    flex: 1;
    min-width: 220px;
    background: white;
    border-radius: 24px;
    padding: 28px 20px;
    border: 1px solid var(--gray-border);
    text-align: center;
    transition: 0.2s;
}
.step-num {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 700;
    font-size: 1.5rem;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}
.step h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

/* Featured journals slider (manual carousel via flex overflow) */
.journals-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 28px;
    padding-bottom: 20px;
    scrollbar-width: thin;
}

.journals-slider2 {
    display:flex;
    overflow-x:inherit;
    scroll-snap-type: x mandatory;
    gap: -5px;
    scrollbar-width: thin;
}

/* .journal-card2 {
    flex: 0 0 340px;
    scroll-snap-align: start;
    background: white;
    border-radius: 24px;
    border: 0px solid var(--gray-border);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.journal-card2:hover{
    transform:translateY(-10px);
    box-shadow: 0 5px 15px var(--primary);
} */

.container2{
    max-width:1280px;
    margin:0 auto;
    padding:10px 32px;
    border: 0px solid;
}

/* REMOVE LINK STYLE */

.journal-link{
    display:block;
    text-decoration:none;
}

/* IMAGE */

.journal-card2{
    width:100%;
    height:auto;
    display:block;

    border-radius:24px;

    transition:0.3s ease;
}

/* HOVER */

.journal-card2:hover{
    transform:translateY(-10px);
    box-shadow:0 10px 25px var(--primary);
}

.journal-image img{
    object-fit:scale-down;
    box-shadow: 0 5px 15px var(--primary);
}
.journal-image:hover{
    transform:translateY(-10px);
    box-shadow: 0 5px 15px var(--primary);
}

.journal-card {
    flex: 0 0 340px;
    scroll-snap-align: start;
    background: white;
    border-radius: 24px;
    border: 1px solid var(--gray-border);
    padding: 28px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.journal-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.journal-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
}
.read-more {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

/* Associations & cooperations (logo wall style) */
.associations-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    row-gap: 40px;
    margin: 30px 0;
}
.assoc-item {
    background: #f9fafc;
    padding: 20px 32px;
    border-radius: 48px;
    font-weight: 500;
    color: var(--primary-dark);
    font-size: 1.1rem;
    border: 1px solid var(--gray-border);
}

/* Our People (team) */
.team-slider {
    display: flex;
    overflow-x: auto;
    gap: 32px;
    padding: 20px 0 30px;
    scroll-snap-type: x mandatory;
}
.team-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: var(--gray-light);
    border-radius: 32px;
    padding: 32px 20px;
    text-align: center;
}
.team-card i {
    font-size: 3.2rem;
    background: white;
    padding: 20px;
    border-radius: 100px;
    color: var(--primary);
    margin-bottom: 20px;
}
.team-card h4 {
    font-size: 1.3rem;
}

/* press releases */
.press-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 32px;
}
.press-item {
  font-family: sans-serif;
    border-left: 4px solid var(--primary);
    padding-left: 24px;
    background: var(--gray-light);
    padding: 20px 24px;
    border-radius: 20px;
}
.press-date {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

/* footer */
footer {
    background: var(--primary-dark);
    color: #cbd5e6;
    padding: 48px 0 24px;
    margin-top: 20px;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}
.footer-copyright {
    text-align: center;
    margin-top: 48px;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
}

/* cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    color: white;
    padding: 16px 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    z-index: 1000;
    font-size: 0.9rem;
}
.cookie-btn {
    background: var(--primary);
    border: none;
    padding: 8px 24px;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    cursor: pointer;
}

@media (max-width: 800px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 15px;
        padding: 20px 0;
    }
    .nav-links.show {
        display: flex;
    }
    .menu-toggle {
        display: block;
        position: absolute;
        right: 32px;
        top: 28px;
    }
    .hero h2 {
        font-size: 2.3rem;
    }
    .container {
        padding: 0 20px;
    }
    section {
        padding: 48px 0;
    }
}
button, .cookie-btn {
    background: none;
    border: none;
}
.slider-nav {
    text-align: center;
    margin-top: 16px;
}
.slider-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
}
a {
    cursor: pointer;
}

/*Top button*/
#topBtn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    width: 50px;
    height: 50px;
    border: none;
    outline: none;
    background: #f07a2d;
    color: white;
    cursor: pointer;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    display: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: 0.3s ease;
}

#topBtn:hover {
    background: #d9651b;
    transform: translateY(-3px);
}
