/* --- WISE SOFT PASTEL PROFESSIONAL UI --- */

:root {
    --bg-main: #fdfdfd;
    --text-dark: #007697fd;
    --text-muted: #636E72;
    --lavender: #c8fdf2;
    --mint: #c8fdf2;
    --peach: #c8fdf2;
    --sky: #c8fdf2;
    --glass: rgba(255, 255, 255, 0.7);
    --border-light: #f0f0f0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-main);
}

/* --- Soft Mesh Background --- */
.pastel-mesh-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: linear-gradient(135deg, var(--lavender) 0%, #fff 40%, var(--mint) 70%, var(--peach) 100%);
    background-size: 400% 400%;
    animation: meshFlow 20s ease infinite;
    opacity: 0.6;
}

@keyframes meshFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.wise-page-wrapper { max-width: 1400px; margin: 0 auto; padding: 0 5%; }

/* --- Hero Section --- */
.hero-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    padding: 100px 0;
    align-items: center;
}

.elegant-name {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-dark);
}

.elegant-divider {
    width: 80px; height: 5px;
    background: var(--text-dark);
    margin: 25px 0;
}

.intro-glass-card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    margin-bottom: 35px;
}

/* --- Official Action Chips --- */
.contact-grid-wise {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.wise-chip {
    padding: 18px;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid transparent;
    transition: 0.3s ease;
}

.chip-lavender { background: var(--lavender); }
.chip-mint { background: var(--mint); }
.chip-peach { background: var(--peach); }
.chip-blue { background: var(--sky); }

.wise-chip:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.05); }

.chip-label { display: block; font-size: 0.65rem; font-weight: 800; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.chip-val { font-size: 0.85rem; font-weight: 700; color: var(--text-dark); }

/* --- Profile Area (No dotted lines) --- */
.profile-frame { width: 100%; position: relative; }
.main-photo {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* --- Certificate Vertical Stack --- */
.vault-container { padding: 100px 0; }
.section-title { font-family: 'Playfair Display', serif; font-size: 2.8rem; margin-bottom: 10px; }
.title-accent-line { width: 60px; height: 4px; background: var(--text-dark); margin-bottom: 60px; }

.wise-vertical-stack { display: flex; flex-direction: column; gap: 60px; }

.wise-cert-card {
    background: #fff;
    padding: 45px;
    border-radius: 25px;
    border: 1px solid var(--border-light);
}

/* Ensuring wise gap between text and image */
.cert-info { margin-bottom: 35px; } 
.cert-info h3 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 10px; }
.cert-info p { color: var(--text-muted); font-size: 1rem; }

.image-container-720 {
    width: 100%;
    max-width: 720px;
    height: 500px;
    background: #fafafa;
    border-radius: 15px;
    overflow: hidden;
    margin: 0 auto;
    border: 1px solid var(--border-light);
}

.image-container-720 img { width: 100%; height: 100%; object-fit: contain; }

/* --- OFFICIAL WISE FOOTER --- */
.wise-official-footer {
    padding: 80px 0 50px 0;
    margin-top: 100px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    background: transparent;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.copyright-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1A1A1A; /* Official dark text */
    letter-spacing: 0.5px;
}

.footer-divider {
    width: 40px;
    height: 2px;
    background: #B2F2BB; /* Soft mint accent */
    border-radius: 2px;
}

.professional-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #636E72; /* Muted grey for a wise look */
}

@media (max-width: 1024px) {
    .hero-section { grid-template-columns: 1fr; text-align: center; }
    .elegant-divider { margin: 25px auto; }
}