@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Ubuntu:wght@400;700&display=swap');

/* Cross-fade between pages (modern browsers: Chrome/Edge/Safari) */
@view-transition {
  navigation: auto;
}

/* Fallback fade-in for browsers without view transitions */
@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

:root {
  --primary: #0B91D9;
  --primary-dark: #055a8a;
  --secondary: #2d3748;
  --text-main: #1a202c;
  --text-muted: #4a5568;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --content-max: 1280px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px; /* offset for sticky nav */
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--white);
  color: var(--text-main);
  line-height: 1.6;
  animation: pageFadeIn 0.28s ease-out;
}
@media (prefers-reduced-motion: reduce) {
  body { animation: none; }
}

/* ===== Scroll fade-in animation ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .fade-in { opacity: 1; transform: none; transition: none; }
}

.leadership-page {
  width: 100%;
  background: var(--white);
  min-height: 100vh;
  position: relative;
}

html, body {
  overflow-x: hidden;
}

/* ===== Header (matches home page style, full-width) ===== */
.top-bar {
    display: none;
}

.header-main {
    padding: 22px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    max-width: var(--content-max);
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}

.logo img {
    height: 68px;
    display: block;
}

.contact-info {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-info h4 {
    color: var(--text-muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.contact-info p {
    color: var(--primary);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
}

.contact-info .email-link {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    margin-top: 2px;
}
.contact-info .email-link a {
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: none;
}
.contact-info .email-link a:hover {
    text-decoration: underline;
}

/* ===== Navigation (full-width blue bar like home, sticky on scroll) ===== */
.nav-container {
    background: var(--primary);
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.nav-container ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: var(--content-max);
    margin: 0 auto;
}

/* Hamburger button (hidden on desktop) */
.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    width: 44px;
    height: 44px;
    padding: 0;
    position: absolute;
    top: 4px;
    right: 12px;
    z-index: 5;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: white;
    margin: 5px auto;
    border-radius: 2px;
    transition: 0.3s;
}
.nav-container.open .nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.nav-container.open .nav-toggle span:nth-child(2) {
    opacity: 0;
}
.nav-container.open .nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-container li {
    position: relative;
}

.nav-container li:not(:first-child)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.32);
}

.nav-container li a {
    display: block;
    padding: 20px 22px 18px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
    font-size: 12.5px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.25s ease;
}

.nav-container li a::after {
    content: '';
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 12px;
    height: 2px;
    background: white;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.nav-container li a:hover {
    color: white;
}

.nav-container li a:hover::after,
.nav-container li a.active::after {
    transform: scaleX(1);
}

.nav-container li a.active {
    color: white;
}

/* ===== Hero Section (full-width) ===== */
.hero-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 90px 40px;
  text-align: center;
  position: relative;
  width: 100%;
}

.hero-section .hero-content {
    max-width: var(--content-max);
    margin: 0 auto;
}

.hero-section h1 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-section .title-tag {
  font-size: 1.4rem;
  font-weight: 300;
  opacity: 0.95;
  margin-bottom: 2rem;
  display: block;
}

.linkedin-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  color: var(--white);
  text-decoration: none;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  font-weight: 600;
  font-size: 1rem;
}

.linkedin-badge:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ===== Main Content (centered with inner max-width) ===== */
.content-area {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 60px 60px;
}

.content-area section {
    margin-bottom: 80px;
}

.section-title {
    color: var(--primary);
    font-family: 'Ubuntu', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.section-title::after {
    content: '';
    height: 2px;
    flex: 1;
    background: #edf2f7;
    margin-left: 20px;
}

.bio-paragraph {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    text-align: justify;
    line-height: 1.8;
}

/* ===== History / Card Grid ===== */
.history-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.history-item {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid var(--primary);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.history-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: #fff;
}

.history-item h3 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 5px;
}

.history-item .company {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.05rem;
    display: block;
    margin-bottom: 12px;
}

.history-item .date {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 6px;
}

.history-item p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* ===== Education Highlight ===== */
.education-box {
    background: linear-gradient(to right, #f1f7fd, #ffffff);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.edu-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.edu-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: block;
}

.edu-meta {
    font-size: 1rem;
    font-style: italic;
    color: var(--primary);
    margin-top: 16px;
}

/* ===== Footer (full-width) ===== */
.footer-main {
    background: #232a34;
    padding: 60px 60px 30px;
    color: #cbd5e0;
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 100px;
    margin: 0 auto 40px;
    max-width: var(--content-max);
}

.footer-about h5, .footer-contact h5 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    font-family: 'Ubuntu', sans-serif;
}

.footer-about p, .footer-contact p {
    line-height: 1.8;
    font-size: 0.95rem;
}

.copyright {
    border-top: 1px solid #3d4653;
    padding-top: 25px;
    text-align: center;
    font-size: 14px;
    max-width: var(--content-max);
    margin: 0 auto;
}

/* ===== Stats Strip ===== */
.stats-strip {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    padding: 50px 40px;
    width: 100%;
}
.stats-strip-inner {
    max-width: var(--content-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    text-align: center;
}
.stats-strip .stat-num {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
    display: block;
}
.stats-strip .stat-text {
    font-size: 0.95rem;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

/* ===== CTA Banner ===== */
.cta-banner {
    background: linear-gradient(135deg, #f1f7fd 0%, #e8f1f9 100%);
    padding: 60px 40px;
    text-align: center;
    border-top: 1px solid #d6e4ef;
}
.cta-banner-inner {
    max-width: var(--content-max);
    margin: 0 auto;
}
.cta-banner h3 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
}
.cta-banner p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 28px;
}
.cta-banner .cta-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    font-family: 'Ubuntu', sans-serif;
}
.cta-btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(11, 145, 217, 0.35);
}
.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(11, 145, 217, 0.45);
}
.cta-btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary-dark);
    background: white;
}
.cta-btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* ===== Service Card SVG Icon ===== */
.service-card .service-icon-svg {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #e6f4fc 0%, #c9e6f8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    transition: var(--transition);
}
.service-card:hover .service-icon-svg {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    transform: scale(1.08);
}
.service-card .service-icon-svg svg {
    width: 32px;
    height: 32px;
}

@media (max-width: 768px) {
    .stats-strip { padding: 35px 20px; }
    .stats-strip .stat-num { font-size: 2.2rem; }
    .cta-banner { padding: 40px 20px; }
    .cta-banner h3 { font-size: 1.5rem; }
    .cta-banner p { font-size: 1rem; }
}

/* ===== Coming Soon Page ===== */
.coming-soon-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
}

.coming-soon-content {
    max-width: 640px;
}

.coming-soon-badge {
    display: inline-block;
    background: rgba(11, 145, 217, 0.12);
    color: var(--primary-dark);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.coming-soon-content h1 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.coming-soon-content .subtitle {
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 16px;
}

.coming-soon-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 36px;
}

.return-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 16px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 14px rgba(11, 145, 217, 0.35);
    transition: var(--transition);
}

.return-home-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(11, 145, 217, 0.45);
}

.return-home-btn::before {
    content: '\2190';
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .coming-soon-content h1 { font-size: 2.5rem; }
    .coming-soon-content .subtitle { font-size: 1.1rem; }
    .coming-soon-content p { font-size: 1rem; }
    .coming-soon-section { padding: 50px 20px; }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .header-main { padding: 20px 30px; }
    .content-area { padding: 50px 30px; }
    .footer-main { padding: 50px 30px 25px; }
    .footer-grid { gap: 50px; }
}

@media (max-width: 768px) {
    .header-main {
        padding: 14px 20px;
        justify-content: center;
        text-align: center;
    }
    /* Hide header contact info on mobile */
    .contact-info { display: none; }
    /* Smaller logo on mobile */
    .logo img { height: 42px; }

    /* Hamburger menu replaces inline nav */
    .nav-container { position: sticky; min-height: 52px; }
    .nav-toggle { display: block; }
    .nav-container ul {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 0;
    }
    .nav-container.open ul { display: flex; }
    .nav-container li {
        width: 100%;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }
    .nav-container li a {
        padding: 16px 22px;
        text-align: center;
        font-size: 12.5px;
    }
    /* Hide animated underline + vertical separators on mobile dropdown */
    .nav-container li a::after { display: none; }
    .nav-container li:not(:first-child)::before { display: none; }
    .nav-container li a:hover { background: rgba(0, 0, 0, 0.12); }
    .nav-container li a.active {
        background: rgba(0, 0, 0, 0.18);
        box-shadow: inset 4px 0 0 white;
    }

    .hero-section { padding: 60px 20px; }
    .hero-section h1 { font-size: 2.2rem; }
    .hero-section .title-tag { font-size: 1.1rem; }

    .content-area { padding: 40px 20px; }
    .section-title { font-size: 1.6rem; }
    .bio-paragraph { font-size: 1rem; }

    .footer-main { padding: 40px 20px 25px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .education-box { padding: 25px; }
}

@media (max-width: 480px) {
    .hero-section h1 { font-size: 1.8rem; }
    .section-title { font-size: 1.3rem; }
    .history-item { padding: 22px; }
}
