@charset "UTF-8";
/* --- Home Page Styles --- */

.home-hero-section {
    padding: 28px 0 34px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content-text {
    text-align: left;
    padding-left: 30px;
}

.profile-picture-placeholder {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: #e9ecef;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 6px solid #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.profile-picture-placeholder:hover {
    transform: scale(1.05);
}

.profile-picture-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.profile-picture-placeholder i {
    font-size: 5rem;
    color: #adb5bd;
}

.hero-content-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.hero-content-text .position {
    font-size: 1.4rem;
    font-weight: 500;
    color: #084c8b;
    margin-bottom: 10px;
}

.hero-content-text .department {
    font-size: 1.2rem;
    font-weight: 400;
    color: #495057;
    margin-bottom: 8px;
}

.hero-content-text .institution {
    font-size: 1.1rem;
    font-weight: 400;
    color: #6c757d;
    margin-bottom: 30px;
}

.hero-contact-info {
    font-size: 1rem;
    color: #586069;
}

.hero-contact-info a {
    color: #084c8b;
    text-decoration: none;
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
    margin-bottom: 10px;
}

.hero-contact-info a:hover {
    color: #063a6b;
    text-decoration: underline;
}

.hero-social-links {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
}

.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid #084c8b;
    color: #084c8b;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

.social-icon-link:hover {
    background: #084c8b;
    color: #fff;
    transform: translateY(-2px);
}

.orcid-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #A6CE39;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    font-style: italic;
    line-height: 1;
}

.social-icon-link:hover .orcid-badge {
    background: #fff;
    color: #A6CE39;
}

.home-section {
    padding: 60px 0;
}

.section-title {
    text-align: left;
    font-size: 2.2rem;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #084c8b, #0a5fad);
    border-radius: 2px;
}

.bio-section {
    background-color: #fff;
    border-radius: 15px;
    padding: 35px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 5px solid #084c8b;
}

.bio-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 20px;
    text-align: justify;
}

.research-areas-section {
    background: linear-gradient(135deg, #084c8b 0%, #0a5fad 100%);
    color: white;
    border-radius: 15px;
    padding: 35px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.research-areas-section .section-title {
    color: white;
    margin-bottom: 20px;
}

.research-areas-section .section-title::after {
    background: rgba(255,255,255,0.4);
}

.research-intro {
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.6;
    opacity: 0.95;
}

.research-interests {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
    flex-grow: 1;
}

.research-tag {
    background-color: rgba(255,255,255,0.2);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.3);
    flex: 0 1 auto;
}

.research-tag:hover {
    background-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-content-text {
        text-align: center;
        padding-left: 0;
        margin-top: 30px;
    }
    
    .section-title {
        text-align: center;
    }
    
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .bio-section,
    .research-areas-section {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .profile-picture-placeholder {
        width: 200px;
        height: 200px;
    }
    
    .hero-content-text h1 {
        font-size: 2.5rem;
    }

    .home-hero-section .hero-content-text h1 {
        font-size: 1.6rem !important;
    }
    
    .hero-content-text .position {
        font-size: 1.2rem;
    }
    
    .bio-section,
    .research-areas-section {
        padding: 25px 20px;
    }
    
    .research-interests {
        gap: 8px;
    }
    
    .research-tag {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    .hero-contact-info a {
        display: block;
        margin-right: 0;
        margin-bottom: 8px;
    }
}

@media (max-width: 576px) {
    .hero-content-text h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .bio-content p {
        font-size: 1rem;
    }
    
    .home-hero-section {
        padding: 40px 0 60px;
    }
    
    .home-section {
        padding: 40px 0;
    }
}

/* =================================================================
   RESEARCH GROUPS & INITIATIVES — REDESIGNED
   ================================================================= */

.initiatives-wrapper {
    padding: 70px 0 90px;
    background: #f4f6f9;
    position: relative;
    overflow: hidden;
}

.initiatives-wrapper::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(8, 76, 139, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* Section header */
.initiatives-header {
    text-align: center;
    margin-bottom: 56px;
}

.initiatives-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #084c8b;
    background: rgba(8, 76, 139, 0.1);
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.initiatives-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1f2e;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.initiatives-subheading {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ── Card shell ─────────────────────────────────────────── */
.initiative-card {
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 36px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.35s ease;
    will-change: transform;
}

.initiative-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.14);
}

.initiative-card:last-child {
    margin-bottom: 0;
}

.initiative-card-inner {
    display: grid;
    grid-template-columns: 320px 1fr;
    min-height: 380px;
}

.claire-inner {
    grid-template-columns: 1fr 320px;
}

/* ── Content column ───────────────────────────────────── */
.initiative-content {
    background: #ffffff;
    padding: 50px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Pill badge */
.initiative-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
    width: fit-content;
}

.aai-pill {
    color: #084c8b;
    background: rgba(8, 76, 139, 0.1);
    border: 1px solid rgba(8, 76, 139, 0.2);
}

.claire-pill {
    color: #063a6b;
    background: rgba(8, 76, 139, 0.1);
    border: 1px solid rgba(8, 76, 139, 0.2);
}

/* Title */
.initiative-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1f2e;
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}

/* Description */
.initiative-desc {
    font-size: 1.02rem;
    line-height: 1.72;
    color: #555e6d;
    margin-bottom: 26px;
}

/* Feature list */
.initiative-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
}

.initiative-features li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 0.92rem;
    color: #3a4250;
    font-weight: 500;
    line-height: 1.4;
}

.initiative-features li i {
    font-size: 1rem;
    color: #084c8b;
    flex-shrink: 0;
    margin-top: 1px;
}

.claire-features li i {
    color: #063a6b;
}

/* Footer row: CTA + stat */
.initiative-footer {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

/* CTA Button */
.initiative-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.97rem;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s ease;
    letter-spacing: 0.01em;
}

.aai-btn {
    background: linear-gradient(135deg, #084c8b 0%, #0a5fad 100%);
    color: #ffffff;
    box-shadow: 0 4px 18px rgba(8, 76, 139, 0.35);
}

.aai-btn:hover {
    background: linear-gradient(135deg, #063a6b 0%, #063a6b 100%);
    box-shadow: 0 8px 28px rgba(8, 76, 139, 0.45);
    color: #ffffff;
    text-decoration: none;
    transform: translateX(3px);
}

.claire-btn {
    background: linear-gradient(135deg, #063a6b 0%, #0a5fad 100%);
    color: #ffffff;
    box-shadow: 0 4px 18px rgba(8, 76, 139, 0.35);
}

.claire-btn:hover {
    background: linear-gradient(135deg, #052f56 0%, #084c8b 100%);
    box-shadow: 0 8px 28px rgba(8, 76, 139, 0.45);
    color: #ffffff;
    text-decoration: none;
    transform: translateX(3px);
}

.initiative-btn i {
    transition: transform 0.25s ease;
    font-size: 1rem;
}

.initiative-btn:hover i {
    transform: translateX(4px);
}

/* Stat chip */
.initiative-stat {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.87rem;
    font-weight: 500;
    color: #6c757d;
}

.initiative-stat i {
    font-size: 1rem;
    color: #084c8b;
}

.claire-stat i {
    color: #063a6b;
}

/* ── Visual panel ─────────────────────────────────────── */
.initiative-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 300px;
}

.aai-visual {
    background: linear-gradient(145deg, #0041a8 0%, #0066d6 45%, #0099ff 100%);
}

.claire-visual-panel {
    background: linear-gradient(145deg, #085f56 0%, #0d9e8e 50%, #1dcfbe 100%);
}

/* Background dot pattern */
.visual-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255,255,255,0.15) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    opacity: 0.8;
}

/* Icon cluster — orbiting icons */
.visual-icon-cluster {
    position: relative;
    width: 190px;
    height: 190px;
    z-index: 2;
}

/* Orbit ring */
.vis-orbit-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px dashed rgba(255,255,255,0.3);
    animation: spin-slow 18s linear infinite;
}

.claire-ring {
    animation: spin-slow 22s linear infinite reverse;
}

@keyframes spin-slow {
    to { transform: rotate(360deg); }
}

/* Main center icon */
.vis-icon--main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255,255,255,0.35);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    animation: pulse-gentle 3.5s ease-in-out infinite;
}

.vis-icon--main i {
    font-size: 2.1rem;
    color: #ffffff;
}

@keyframes pulse-gentle {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50%       { transform: translate(-50%, -50%) scale(1.07); }
}

/* Orbit satellite icons */
.vis-icon--orbit {
    position: absolute;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vis-icon--orbit i {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}

.vis-icon--top    { top: -8px;  left: 50%; transform: translateX(-50%); }
.vis-icon--right  { top: 50%;   right: -8px; transform: translateY(-50%); }
.vis-icon--bottom { bottom: -8px; left: 50%; transform: translateX(-50%); }

/* Visual label */
.visual-label {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    z-index: 2;
    white-space: nowrap;
}

/* Entrance animation */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}

.initiative-card {
    animation: slideUp 0.6s ease both;
}

.initiative-card:nth-child(2) { animation-delay: 0.1s; }
.initiative-card:nth-child(3) { animation-delay: 0.22s; }

/* ── Dark Mode ────────────────────────────────────────── */
body.dark-mode .initiatives-wrapper {
    background: #181c24;
}

body.dark-mode .initiatives-heading {
    color: #f0f2f5;
}

body.dark-mode .initiatives-subheading {
    color: #8b95a2;
}

body.dark-mode .initiative-content {
    background: #1f2430;
}

body.dark-mode .initiative-title {
    color: #edf0f5;
}

body.dark-mode .initiative-desc {
    color: #9aa3b0;
}

body.dark-mode .initiative-features li {
    color: #b8c0cc;
}

body.dark-mode .initiative-card {
    box-shadow: 0 8px 40px rgba(0,0,0,0.35);
}

body.dark-mode .initiative-card:hover {
    box-shadow: 0 24px 60px rgba(0,0,0,0.55);
}

body.dark-mode .initiative-stat {
    color: #7a8494;
}

body.dark-mode .aai-pill {
    color: #5ca8ff;
    background: rgba(92, 168, 255, 0.12);
    border-color: rgba(92, 168, 255, 0.25);
}

body.dark-mode .claire-pill {
    color: #3dddd0;
    background: rgba(61, 221, 208, 0.1);
    border-color: rgba(61, 221, 208, 0.22);
}

body.dark-mode .initiative-features li i {
    color: #5ca8ff;
}

body.dark-mode .claire-features li i {
    color: #3dddd0;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
    .initiative-card-inner,
    .claire-inner {
        grid-template-columns: 260px 1fr;
    }

    .claire-inner {
        grid-template-columns: 1fr 260px;
    }
}

@media (max-width: 820px) {
    .initiative-card-inner,
    .claire-inner {
        grid-template-columns: 1fr;
    }

    .claire-inner .initiative-content {
        order: 1;
    }

    .claire-inner .claire-visual-panel {
        order: 2;
    }

    .initiative-visual,
    .claire-visual-panel {
        min-height: 200px;
    }

    .initiative-content {
        padding: 38px 32px;
    }

    .initiative-title {
        font-size: 1.7rem;
    }

    .initiative-features {
        grid-template-columns: 1fr;
    }

    .initiatives-heading {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .initiatives-wrapper {
        padding: 28px 0 34px;
    }

    .initiative-content {
        padding: 30px 22px;
    }

    .initiative-title {
        font-size: 1.5rem;
    }

    .initiative-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .initiative-btn {
        width: 100%;
        justify-content: center;
    }

    .initiatives-heading {
        font-size: 1.7rem;
    }
}