css:root {
            --bg: #ffffff;
            --text: #111116;
            --muted: #5f6670;
            --border: #dcdde5;
            --primary: #2d34ff;
            --accent: #0b57d0;
            --accent-rail: #1627ff;
            --danger: #e14b4b;
            --shadow: 0 .5px 1px rgba(0, 0, 0, .08), 0 10px 24px rgba(0, 0, 0, .06);
        }

        * {
            box-sizing: border-box
        }

        html:focus-within {
            scroll-behavior: smooth
        }

        body {
            margin: 0;
            font-family: Inter, system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
            color: var(--text);
            background: var(--bg);
            line-height: 1.6;
        }

        img {
            max-width: 100%;
            display: block
        }

        a {
            color: inherit;
            text-decoration: none
        }

        .container {
            width: min(1120px, 92%);
            margin-inline: auto
        }

        .section {
            padding: 56px 0
        }

        .section-title {
            font-size: clamp(22px, 2.4vw, 28px);
            margin: 0 0 16px;
            font-weight: 800;
        }

        .section-title.center {
            text-align: center
        }

        /* Decorative left rail (blue strip like the image) */
        .left-rail {
            position: fixed;
            inset: auto auto 0 0;
            top: 0;
            width: 6px;
            height: 100vh;
            background: var(--accent-rail);
            z-index: 0;
        }

        .tick {
            display: block;
            height: 10px;
            position: relative
        }

        .tick::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 120px;
            height: 4px;
            background: var(--accent-rail);
        }

        /* Header */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 20;
            background: rgba(255, 255, 255, .88);
            -webkit-backdrop-filter: blur(8px) saturate(160%);
            backdrop-filter: blur(8px) saturate(160%);
            border-bottom: 1px solid var(--border);
        }

        .nav-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0
        }

        .brand {
            font-size: 27px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #101014;
            display: flex;
            flex-direction: row;
            align-items: center;
            border-left: 4px solid black ;
            padding-left: 5px;
        }

        .brand-dot {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 2px solid #000;
            display: inline-block
        }

        .nav .menu {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            align-items: center;
            gap: 26px
        }

        .nav .menu a {
            padding: 8px 4px;
            color: #222
        }

        .nav .menu a:hover {
            
            border-bottom: 3px solid black;
        }


        .nav .menu a:hover {
            color: var(--primary)
        }

        .btn {
            display: inline-block;
            border: 2px solid #101014;
            background: #fff;
            color: #101014;
            
            padding: 10px 16px;
            font-weight: 700;
            box-shadow: var(--shadow);
        }

        .btn:hover {
            transform: translateY(-1px)
        }

        .btn.btn-outline {
            background: #fff
        }

        .btn.border-btn {
            background: #fff;
            border: 2px solid #111;
            color: #111;
            font-weight: 800;
        }

        .btn-sm {
            padding: 8px 10px;
            font-size: 14px;
            font-weight: 700
        }

        .resume-btn {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            gap: 2px;
            background: #fff;
            border: 2px solid #111;
            padding: 8px 14px;
            
        }

        .resume-btn .big {
            font-weight: 800
        }

        .resume-btn .small {
            color: blue;
            font-size: 12px;
            opacity: .85
        }

        /* Hamburger */
        .hamburger {
            display: none;
            position: relative;
            width: 38px;
            height: 36px;
            border: 1px solid var(--border);
            border-radius: 8px;
            background: #fff;
        }

        .hamburger span {
            position: absolute;
            left: 8px;
            right: 8px;
            height: 2px;
            background: #0d0d14;
            top: 10px;
        }

        .hamburger span:nth-child(2) {
            top: 17px
        }

        .hamburger span:nth-child(3) {
            top: 24px
        }

        @media (max-width: 960px) {
            .hamburger {
                display: inline-block
            }

            .nav {
                position: fixed;
                inset: 60px 0 auto 0;
                transform: translateY(-130%);
                background: #fff;
                transition: .25s ease;
                border-bottom: 1px solid var(--border);
            }

            .nav.open {
                transform: translateY(0)
            }

            .nav .menu {
                flex-direction: column;
                align-items: flex-start;
                gap: 14px;
                padding: 14px 4%
            }

            body.menu-open {
                overflow: hidden
            }
        }

        /* Grid helpers */
        .grid-2 {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 28px
        }

        .gap-xl {
            gap: 28px
        }

        @media (max-width: 900px) {
            .grid-2 {
                grid-template-columns: 1fr
            }
        }

        /* HERO */
        .hero .video-wrap {
            border: 1px solid var(--border);
            border-radius: 8px;
            overflow: hidden;
            background: #e8e8eb;
            aspect-ratio: 16/9;
            position: relative;
            box-shadow: var(--shadow);
        }

        .video {
            width: 100%;
            height: 100%
        }

        .video-overlay {
            position: absolute;
            inset: 0;
            display: grid;
            place-items: center;
            text-align: center;
            color: #23232a;
            font-weight: 700;
            font-size: 18px;
            letter-spacing: .2px;
            opacity: .55;
            pointer-events: none;
        }

        .hero-copy h1 {
            margin: 0 0 8px;
            font-size: clamp(22px, 2.4vw, 26px);
            font-weight: 700
        }

        .hero-copy p {
            color: var(--muted);
            margin: 0 0 14px
        }

        /* ACADEMICS */
        .academics .edu-list {
            display: grid;
            gap: 26px
        }

        .edu-card {
            border: 1px solid #cfd1d9;
            border-radius: 12px;
            padding: 16px 16px 12px;
            background: #fff;
            box-shadow: var(--shadow);
            max-width: 520px;
        }

        .edu-card.offset {
            margin-left: 110px
        }

        @media (max-width: 700px) {
            .edu-card.offset {
                margin-left: 0
            }
        }

        .edu-card h3 {
            margin: .2rem 0 .6rem;
            font-size: 19px
        }

        .meta-line {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
            margin-bottom: 6px
        }

        .pill {
            display: inline-block;
            padding: 6px 10px;
            border-radius: 999px;
            font-weight: 700;
            font-size: 12px;
            background: #f1f2f5;
            color: #222;
        }

        .pill.dark {
            background: #2b2d34;
            color: #fff
        }

        .pill.danger {
            background: var(--danger);
            color: #ff3636;
            border: 1px solid #ff3636;
        }

        .dot {
            color: #2d2f39
        }

        .org {
            color: #333
        }

        .label {
            font-weight: 700;
            font-size: 13px;
            margin: 6px 0
        }

        .desc {
            margin: 4px 0 6px;
            color: #4a5059
        }

        .transcript {
            display: inline-block;
            color: #0b57d0;
            font-weight: 700;
            font-size: 13px;
            background-color: white;
            border: none;
        }

        .transcript:hover {
            text-decoration: underline
        }

        .goals {
            border: 1px solid #cfd1d9;
            border-radius: 12px;
            padding: 20px;
            background: #fff;
            box-shadow: var(--shadow);
        }

        .goals-title {
            margin: 6px 0 6px;
            font-family: 'Merriweather', serif;
            font-weight: 900;
            font-size: clamp(26px, 2.8vw, 34px);
            text-align: center;
        }

        .goals-quote {
            color: #2a2e35;
            margin: 10px 0 18px;
            padding: 0 8px
        }

        .quote-mark {
            color: #18c772;
            font-size: 20px;
            margin-right: 8px
        }

        /* Achievements image */
        .hero-image {
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
            background: #ffffff;
            box-shadow: var(--shadow)
        }

        .hero-image img {
            width: 100%;
            height: auto
        }

        .hero-image figcaption {
            text-align: center;
            color: #2f2f34;
            padding: 8px 10px;
            font-size: 14px;
            opacity: .75
        }
        
        .hero-image p{
            text-align: center;
        }


        .hero-image p a{
            color: Blue;
            text-decoration: underline;
        }

        /* TABS */
        .tabs {
            display: flex;
            gap: 10px;
            border-bottom: 1px solid var(--border);
            margin-bottom: 16px;
            flex-wrap: wrap
        }

        .tab {
            background: #fff;
            border: 1px solid var(--border);
            border-bottom: none;
            padding: 8px 12px;
            border-top-left-radius: 8px;
            border-top-right-radius: 8px;
            font-weight: 700;
            color: #2a2a30;
        }

        .tab.active {
            background: #f7f8ff;
            color: var(--primary);
            border-color: #cfd4ff
        }

        /* PROJECT CARDS GRID */
        .project-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }


     
        @media (max-width: 990px) {
            .project-grid {
                grid-template-columns: repeat(2, 1fr)
            }
        }

        @media (max-width: 620px) {
            .project-grid {
                grid-template-columns: 1fr
            }
        }

        .card {
            border: 1px solid var(--border);
            border-radius: 12px;
            background: #fff;
            padding: 12px;
            box-shadow: var(--shadow);
        }

        .card h3 {
            margin: 8px 0 6px;
            font-size: 18px
        }

        .card p {
            margin: 0 0 10px;
            color: #585f69
        }

        .card img {
            width: 100%;
            height: auto;
            border-radius: 8px
        }

        /* Pagination */
        .pagination {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 18px
        }

        .page-btn {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            border: 1px solid var(--border);
            background: #fff;
            font-weight: 800;
            cursor: pointer;
        }

        .page-btn:disabled {
            opacity: .4;
            cursor: not-allowed
        }

        .page-numbers {
            display: flex;
            gap: 6px;
            flex-wrap: wrap
        }

        .page {
            min-width: 36px;
            height: 36px;
            display: grid;
            place-items: center;
            border: 1px solid var(--border);
            border-radius: 8px;
            cursor: pointer;
            background: #fff;
            font-weight: 700;
        }

        .page.active {
            background: #2f42ff;
            color: #fff;
            border-color: #2f42ff
        }


        

        /* CONTACT */
        .contact .contact-form {
            border: 1px solid var(--border);
            padding: 18px;
            border-radius: 12px;
            background: #fff;
            box-shadow: var(--shadow);
        }

        .field {
            display: flex;
            flex-direction: column;
            gap: 6px;
            margin-bottom: 14px
        }

        label {
            font-weight: 700;
            font-size: 14px
        }

        input,
        textarea {
            width: 100%;
            padding: 12px 12px;
            border: 1px solid #d9d9df;
            border-radius: 8px;
            font: inherit;
            background: #f3f3f3;
        }

        input:focus,
        textarea:focus {
            outline: 2px solid #c8d2ff;
            border-color: #a4b3ff;
            background: #fff
        }

        .actions {
            margin-top: 6px
        }

        /* Footer */
        .site-footer {
            background-color: #f3f3f3;
            border-top: 1px solid var(--border);
            padding: 26px 0 48px;
            text-align: center;
            color: #3a3a42;
        }

        /* Scroll anchoring offset for sticky header */
        section,
        .section-title {
            scroll-margin-top: 80px
        }




        /*Featured One  Css*/

        
/* ---------- Design tokens (tweak if you like) ---------- */
:root {
  --fm-text: #111116;
  --fm-accent: #2c2c2c;          /* deep maroon like the image */
  --fm-panel-bg: #ffffff;
  --btn-border: #111116;
  --fm-border: #dcdde5;
  --fm-overlay: rgba(179, 170, 170, 0.35);
  --fm-blur: 5px;
  --fm-font-serif: Inter, system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --fm-font-sans: Inter, system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif;




}

/* Utility */
.fm-visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}

/* ---------- Overlay ---------- */
.fm-overlay {
  position: fixed;
  inset: 0;
  z-index: 9990;
  display: none;          /* toggled with .is-open */
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 3vw, 24px);
  background: var(--fm-overlay);
  -webkit-backdrop-filter: blur(var(--fm-blur));
  backdrop-filter: blur(var(--fm-blur));
}
.fm-overlay.is-open { display: flex; }

/* ---------- Panel ---------- */
.fm-panel {
  position: relative;
  width: min(1100px, 92vw);
  height: min(86vh, 900px);
  background: var(--fm-panel-bg);
  border: 1px solid var(--fm-border);
  box-shadow: 0 18px 60px rgba(0,0,0,.15);
  overflow: hidden;
  color: var(--fm-text);
  font-family: var(--fm-font-sans);
  padding: 20px;
  padding-top: 25px;
}

.fm-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  background: transparent;
  border: none;
  color: var(--fm-text);
  font-size: 48px;
  line-height: 1;
  cursor: pointer;
}

.fm-scroll {
  height: 100%;
  overflow: auto;
  padding: clamp(18px, 2.4vw, 28px);
}

/* ---------- List view ---------- */
.fm-items {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
}

/* each item is a two-column block similar to the mock */
.fm-item {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(16px, 2.4vw, 32px);
  align-items: start;
}
.fm-item.right-img {
  grid-template-columns: 1fr 1.15fr;
}
.fm-item.right-img .fm-media { order: 2; }
.fm-item.right-img .fm-copy  { order: 1; }

.fm-title {
  font-family: var(--fm-font-serif);
  font-weight: 700;
  font-size: clamp(18px, 1.25rem + .2vw, 22px);
  margin: 0 0 8px 0;
  display: flex;
  align-items: center;
  line-height: 1.3;
}
.fm-num {
  display: inline-grid;
  place-items: center;
  width: 36px; height: 36px;
  border: 2px solid var(--btn-border);
  border-radius: 999px;
  margin-right: 10px;
  font-family: var(--fm-font-serif);
  font-weight: 700;
  font-size: 15px;
}

.fm-media {
  border: 1px solid var(--fm-border);
  background: #f6f6f6;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.fm-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.fm-copy p {
  margin: 0 0 14px 0;
  line-height: 1.5;
  color: #2b2b2b;
}

.fm-btn {
  display: inline-block;
  user-select: none;
  cursor: pointer;
  font-family: var(--fm-font-serif);
  font-weight: 700;
  color: var(--fm-accent);
  background: #fff;
  padding: 10px 24px;
  border: 2px solid var(--fm-accent);            /* maroon inner border */
  outline: 2px solid var(--btn-border);           /* thin black outline like in the image */
  outline-offset: -2px;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.fm-btn:hover,
.fm-btn:focus-visible {
  background: var(--fm-accent);
  color: #fff;
}

/* ---------- Detail view ---------- */
.fm-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 2px 0 16px 0;
  padding: 6px 10px;
  border: 1px solid var(--fm-accent);
  color: var(--fm-accent);
  background: transparent;
  cursor: pointer;
  font-family: var(--fm-font-sans);
}
.fm-back:hover,
.fm-back:focus-visible {
  background: rgba(90,27,43,.06);
}

.fm-article-title {
  font-family: var(--fm-font-serif);
  font-weight: 700;
  font-size: clamp(20px, 1.35rem + .2vw, 26px);
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.fm-hero {
  border: 1px solid var(--fm-border);
  margin: 10px 0 16px 0;
  aspect-ratio: 16 / 9;
  background: #f6f6f6;
  overflow: hidden;
}
.fm-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }

.fm-article-body p {
  margin: 0 0 14px 0;
  line-height: 1.65;
  color: #2b2b2b;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .fm-item,
  .fm-item.right-img {
    grid-template-columns: 1fr;
  }
  .fm-item.right-img .fm-media { order: 1; }
  .fm-item.right-img .fm-copy  { order: 2; }
}




/* ---------- Side bar css ---------- */
/* Unique, conflict-safe prefix: xv- */
/* Colors and sizing tuned to your mockup */
:root {
  --xv-rail-bg: rgba(255, 255, 255, 0.78); /* semi-transparent */
  --xv-rail-border: #dcdde5;
  --xv-button-bg: #ffffffa8;
  --xv-button-border: #dcdde5;
  --xv-icon-color: #414141;  /* grey icons, not brand colors */
  --xv-icon-hover: #111111;  /* darker on hover/focus */
  --xv-rail-shadow: 0 2px 8px rgba(0,0,0,0.06);
  --xv-rail-left: clamp(10px, 4vw, 48px); /* distance from left edge */
  --xv-rail-gap: 12px;                     /* gap between buttons */
  --xv-btn-size: 40px;                     /* inner square size */
  --xv-rail-padding: 10px;                 /* padding inside rail */
  --xv-radius: 4px;                        /* subtle corner radius */
}

/* The vertical rail */
.xv-social-bar {
  position: fixed;
  left: var(--xv-rail-left);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: var(--xv-rail-gap);
  padding: var(--xv-rail-padding) 8px;
  background: var(--xv-rail-bg);
  border: 1px solid var(--xv-rail-border);
  border-radius: var(--xv-radius);
  box-shadow: var(--xv-rail-shadow);
  z-index: 1200;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  padding-top: 20px;
  padding-bottom: 20px;


}

/* Each icon button */
.xv-social-link {
  width: var(--xv-btn-size);
  height: var(--xv-btn-size);
  display: grid;
  place-items: center;
  background: var(--xv-button-bg);
  border: 1px solid var(--xv-button-border);
  border-radius: var(--xv-radius);
  color: var(--xv-icon-color);
  text-decoration: none;
  transition: color .18s ease, box-shadow .18s ease, transform .12s ease;
  outline: none;
}

.xv-social-link:focus-visible,
.xv-social-link:hover {
  color: var(--xv-icon-hover);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.05) inset;
  transform: translateY(-1px);
}

.xv-social-icon {
  width: 20px;
  height: 20px;
  display: block;
}

/* Small screens: turn into a bottom bar */
@media (max-width: 700px) {
  .xv-social-bar {
    top: auto;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: row;
    padding: 8px;
    gap: 10px;
    border-radius: 8px;
  }
}


/* Unique Story Modal styles (sm- prefix) */
:root {




  --sm-text: #111116;
  --sm-border: #dcdde5;
  --sm-panel-bg: #ffffff;
  --sm-overlay: rgba(255, 255, 255, 0.34); /* transparent overlay */
  --sm-blur: 10px;                         /* blurred background */
  --sm-serif: Georgia, "Times New Roman", serif;
  --sm-sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;
}

/* Overlay with blur */
.sm-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(10px, 3vw, 28px);
  background: var(--sm-overlay);
  -webkit-backdrop-filter: blur(var(--sm-blur));
  backdrop-filter: blur(var(--sm-blur));
  z-index: 9995;
}
.sm-overlay.is-open { display: flex; }

/* Panel */
.sm-panel {
  position: relative;
  width: min(980px, 94vw);
  height: min(90vh, 1100px);
  background: var(--sm-panel-bg);
  color: var(--sm-text);
  border: 2px solid var(--sm-border);
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
  overflow: hidden;
  font-family: var(--sm-sans);
}

/* Close button (top-right X) */
.sm-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 70px; height: 70px;
  background: transparent;
  border: none;
  color: var(--sm-text);
  font-size: 48px;
  line-height: 1;
  cursor: pointer;
}
.sm-close:hover,
.sm-close:focus-visible { opacity: 0.8; }

/* Inner scroll area */
.sm-scroll {
  height: 100%;
  overflow: auto;
  padding: clamp(18px, 2.4vw, 30px);
}

/* Story content */
.sm-title {
  margin: 6px 0 18px;
  text-align: center;
  font-family: var(--sm-serif);
  font-size: clamp(22px, 1.5rem + .4vw, 30px);
  font-weight: 700;
  line-height: 1.3;
}

.sm-article { padding: 6px 6px 10px; }
.sm-block { margin: clamp(16px, 2.6vw, 26px) 0; }

/* Text paragraphs */
.sm-block--text p,
.sm-col--text p {
  margin: 0 0 12px 0;
  line-height: 1.6;
  color: #2b2b2b;
}

/* Media box with thin black border and fixed ratios */
.sm-media {
  width: 90%;
  border: 1px solid var(--sm-border);
  background: #f7f7f7;
  overflow: hidden;
  aspect-ratio: 16 / 9; /* default ratio if none provided */
}
.sm-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Optional ratios (choose with data-sm-ratio) */
.sm-media[data-sm-ratio="16x9"] { aspect-ratio: 16 / 9; }
.sm-media[data-sm-ratio="4x3"]  { aspect-ratio: 4 / 3; }
.sm-media[data-sm-ratio="3x2"]  { aspect-ratio: 3 / 2; }
.sm-media[data-sm-ratio="1x1"]  { aspect-ratio: 1 / 1; }

/* Side-by-side blocks (Image Right / Image Left) */
.sm-block--side {
  display: grid;
  grid-template-columns: 1.1fr 1fr; /* text a little wider like the mock */
  gap: clamp(16px, 2.6vw, 28px);
  align-items: start;
}
.sm-block--right-img .sm-media { order: 2; } /* image appears on the right */
.sm-block--right-img .sm-col--text { order: 1; }

.sm-block--left-img .sm-media { order: 1; }  /* image appears on the left */
.sm-block--left-img .sm-col--text { order: 2; }

/* Full-width image block */
.sm-block--full-img .sm-media {
  aspect-ratio: 16 / 9;
}

/* Responsive: single column on small screens */
@media (max-width: 860px) {
  .sm-block--side {
    grid-template-columns: 1fr;
  }
  .sm-block--right-img .sm-media,
  .sm-block--left-img .sm-media {
    order: 1;           /* image first on mobile */
  }
  .sm-block--right-img .sm-col--text,
  .sm-block--left-img .sm-col--text {
    order: 2;
  }
}


/*details page*/

:root{
  --pm-overlay-bg: rgba(255,255,255,0.6); /* translucent white, like your mock */
  --pm-border: #d9d9d9;
  --pm-text: #111;
  --pm-muted: #666;
  --pm-shadow: 0 30px 60px rgba(0,0,0,0.15);
  --pm-radius: 6px;
}

body.pm-lock { overflow: hidden; }

.pm{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}
.pm.is-open{ display: block; }
.pm[aria-hidden="true"]{ display: none; }

/* Blurred translucent backdrop */
.pm::before{
  content: "";
  position: absolute;
  inset: 0;
  background: var(--pm-overlay-bg);
  backdrop-filter: blur(8px);
}

/* Dialog (white panel) */
.pm-dialog{
  position: relative;
  background: #fff;
  border: 1px solid var(--pm-border);
  box-shadow: var(--pm-shadow);
  border-radius: var(--pm-radius);
  width: min(1024px, 92vw);
  max-height: calc(100vh - 2rem);
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

/* Header with centered title and close "X" */
.pm-header{
  position: sticky; /* stays visible while body scrolls */
  top: 0;
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 1rem 3rem 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.pm-title{
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.2;
  letter-spacing: .2px;
  color: var(--pm-text);
  font-weight: 600;
}
.pm-close{
  position: absolute;
  right: .5rem;
  top: .35rem;
  border: none;
  background: transparent;
  color: #000;
  font-size: 3rem;
  line-height: 1;
  padding: .25rem .5rem;
  cursor: pointer;
}

/* Scrollable body content */
.pm-body{
  padding: 1.2rem 1.5rem 1.5rem;
  overflow-y: auto;
}

/* Main image in a light frame like your mock */
.pm-main-image-wrap{
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius);
  
  
}
.pm-main-image{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Extra content (paragraphs + sub images) in the given order */
.pm-content{ margin-top: 1.25rem; }

.pm-paragraph{
  color: var(--pm-muted);
  line-height: 1.7;
  margin: 1.1rem 0;
  text-align: justify;
}

/* Sub images styled similar to the main block */
.pm-figure{
  margin: 1.5rem 0;
  border: 1px solid var(--pm-border);
  background: #fafafa;
  border-radius: var(--pm-radius);
  padding: .5rem;
}
.pm-figure img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 4px;
}
.pm-figure figcaption{ display:none; }

/* Optional: make .btn-info look clickable if you want a baseline style */

.btn-info:hover{ background: #0284c7; }



/*My personals statemet*/

#statement_title{
  text-align: center;
  color: #3f3f3f;
}

.my_statement{
  
  padding-left: 100px;
  padding-right: 100px;
}