:root {
  --navy: #02072b;
  --navy2: #06154a;
  --blue: #138cff;
  --cyan: #00d5ff;
  --white: #f8fbff;
  --muted: #aac8ff;
  --pink: #ff74ff;
  --glass: rgba(5, 18, 65, 0.70);
  --border: rgba(89, 202, 255, 0.36);
  --shadow: 0 0 28px rgba(0, 213, 255, 0.22), 0 0 80px rgba(19, 140, 255, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background:
   linear-gradient(180deg, #02061f 0%, #04113b 45%, #020624 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .14;
  background-image:
    linear-gradient(rgba(80,190,255,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80,190,255,.18) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 88%);
}

a { color: inherit; }

.cursor-glow {
  position: fixed;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 116, 255, .55);
  box-shadow: 0 0 18px rgba(255,116,255,.9), 0 0 42px rgba(255,116,255,.45);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: screen;
}
.click-ring {
  position: fixed;
  width: 16px;
  height: 16px;
  border: 2px solid var(--pink);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  z-index: 10001;
  box-shadow: 0 0 20px rgba(255,116,255,.9);
}
.click-ring.active { animation: clickRipple .55s ease-out; }
@keyframes clickRipple {
  from { transform: translate(-50%, -50%) scale(.7); opacity: 1; }
  to { transform: translate(-50%, -50%) scale(4); opacity: 0; }
}

.bg-orbs span {
  position: fixed;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .55;
  pointer-events: none;
  animation: floatOrb 8s ease-in-out infinite;
}
.bg-orbs span:nth-child(1) { width: 170px; height: 170px; left: 5%; top: 26%; background: rgba(0,213,255,.18); }
.bg-orbs span:nth-child(2) { width: 70px; height: 70px; left: 35%; top: 18%; background: rgba(255,116,255,.28); animation-delay: 1.2s; }
.bg-orbs span:nth-child(3) { width: 220px; height: 220px; right: 8%; bottom: 14%; background: rgba(19,140,255,.16); animation-delay: 2s; }
@keyframes floatOrb { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-18px);} }

/* Signature logo only. No face/logo bubble here. */
.signature-logo {
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 0 18px;
}
.signature-text {
  font-family: "Brush Script MT", "Segoe Script", "Lucida Handwriting", cursive;
  font-size: clamp(1rem, 1.8vw, 2rem);
  font-weight: 400;
  color: white;
  letter-spacing: 1px;
  text-shadow:
    0 0 12px rgba(0,213,255,.7),
    0 0 28px rgba(0,120,255,.45),
    0 0 42px rgba(255,116,255,.24);
  transition: .3s ease;
  white-space: nowrap;
}
.signature-text:hover {
  transform: scale(1.05);
  text-shadow:
    0 0 18px rgba(255,180,220,.9),
    0 0 40px rgba(0,213,255,.6);
}

.glass-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(96vw, 1560px);
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 18px 10px 10px;
  background: rgba(1, 10, 39, .72);
  border: 1px solid var(--border);
  border-radius: 28px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow), 0 18px 50px rgba(0,0,0,.32);
  z-index: 999;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex: 1;
}
.nav-links > a,
.nav-item > a {
  display: block;
  text-decoration: none;
  font-size: clamp(.82rem, 1.1vw, 1.02rem);
  font-weight: 800;
  color: var(--white);
  padding: 18px 24px;
  border-left: 1px solid rgba(83, 192, 255, .28);
  white-space: nowrap;
  transition: .25s ease;
}
.nav-links > a:hover,
.nav-links > a.active,
.nav-item:hover > a {
  background: linear-gradient(135deg, #187fff, #00bce9);
  border-radius: 20px;
  box-shadow: 0 0 22px rgba(0, 213, 255, .55);
}
.nav-item { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  min-width: 260px;
  background: rgba(2, 13, 52, .92);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 18px;
  padding: 10px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: .25s ease;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.dropdown-menu a {
  display: block;
  padding: 12px 14px;
  text-decoration: none;
  border-radius: 12px;
  color: var(--white);
  font-weight: 700;
}
.dropdown-menu a:hover { background: rgba(0, 213, 255, .16); }

/* Hanging Bengali girl: stays. */
.hanging-hi-girl {
  position: fixed;
  right: 32px;
  top: 130px;
  width: 95px;
  height: 175px;
  z-index: 1000;
  animation: girlSwing 3.2s ease-in-out infinite;
  transform-origin: top center;
  pointer-events: none;
}
.girl-thread {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 46px;
  background: linear-gradient(#fff4b8, #d7a441, #fff2a8);
  box-shadow: 0 0 12px rgba(255, 215, 100, .9);
}
.girl-head {
  position: absolute;
  top: 38px;
  left: 22px;
  width: 52px;
  height: 52px;
  background: #a86a43;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.88);
  box-shadow: 0 0 18px rgba(0, 213, 255, .45);
}
.girl-hair {
  position: absolute;
  top: -9px;
  left: 2px;
  width: 48px;
  height: 32px;
  background: #100817;
  border-radius: 25px 25px 10px 10px;
}
.girl-bangs {
  position: absolute;
  top: 0;
  left: 5px;
  width: 42px;
  height: 16px;
  background: repeating-linear-gradient(90deg, #100817 0 8px, transparent 8px 10px);
  border-radius: 12px;
}
.girl-eye {
  position: absolute;
  top: 25px;
  width: 5px;
  height: 5px;
  background: #050505;
  border-radius: 50%;
}
.girl-eye.left { left: 15px; }
.girl-eye.right { right: 15px; }
.girl-smile {
  position: absolute;
  left: 19px;
  top: 34px;
  width: 13px;
  height: 6px;
  border-bottom: 2px solid #260707;
  border-radius: 0 0 12px 12px;
}
.girl-body {
  position: absolute;
  top: 84px;
  left: 32px;
  width: 32px;
  height: 35px;
  background: linear-gradient(145deg, #1b7cff, #00d5ff);
  border-radius: 15px 15px 10px 10px;
  box-shadow: 0 0 18px rgba(0, 207, 255, .8);
}
.girl-arm { position:absolute; top:110px; width:28px; height:6px; background:#a86a43; border-radius:6px; z-index:2; }
.girl-arm.left { left:18px; transform:rotate(25deg); }
.girl-arm.right { right:18px; transform:rotate(-25deg); }
.bengali-sign {
  position: absolute;
  top: 120px;
  left: 13px;
  width: 70px;
  height: 40px;
  border-radius: 14px;
  background: rgba(255,255,255,.96);
  color: #061c64;
  font-size: 1.35rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px rgba(255,255,255,.65), 0 0 28px rgba(0, 213, 255, .45);
}
@keyframes girlSwing { 0%,100%{ transform:rotate(-2deg);} 50%{ transform:rotate(2deg);} }

#flower-container { position: fixed; inset: 0; pointer-events: none; z-index: 10002; }
.flower {
  position: absolute;
  top: -24px;
  width: 13px;
  height: 13px;
  background: #ff9ecf;
  border-radius: 50% 0 50% 0;
  opacity: .92;
  box-shadow: 0 0 10px rgba(255,158,207,.7);
  animation: fall linear forwards;
}
@keyframes fall {
  from { transform: translateY(-20px) rotate(0deg); }
  to { transform: translateY(110vh) rotate(720deg); }
}

.section {
  width: min(92vw, 1220px);
  margin: 0 auto;
  padding: 120px 0;
  scroll-margin-top: 130px;
}
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 44px;
  padding-top: 90px;
}
.eyebrow {
  color: #86e9ff;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  font-weight: 900;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: .88;
  margin-bottom: 22px;
  text-shadow: 0 0 34px rgba(0,213,255,.38);
}
.hero h2 
{ font-size: clamp(1.4rem, 2vw, 2.5rem); margin-bottom: 8px; 
font-family:"Playfair Display", serif;
}
.tagline 
{ font-size: 1.35rem; color: #d6f7ff; font-weight: 800;
font-family: "cormorant Garamond", serif;
}
.subtagline { color: var(--muted); font-size: 1.1rem; }
.hero-card,
.glass-card {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  backdrop-filter: blur(18px);
}
.hero-card { margin: 28px 0; max-width: 620px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px 20px;
  font-weight: 900;
  margin-right: 12px;
  transition: .25s ease;
}
.btn.primary { background: linear-gradient(135deg, #187fff, #00bce9); box-shadow: 0 0 22px rgba(0,213,255,.42); }
.btn.ghost { background: rgba(255,255,255,.04); }
.btn:hover { transform: translateY(-3px); }
.portrait-panel {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.portrait-frame {
  width: 340px;
  height: 440px;
  padding: 14px;
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.16), rgba(0,213,255,.08));
  border: 1px solid rgba(160,230,255,.55);
  box-shadow:
    0 0 35px rgba(0,213,255,.22),
    0 0 80px rgba(0,120,255,.16);
  overflow: hidden;
  position: relative;
  transform: rotate(2deg);
}

.portrait-frame::before {
  content: "Shantona Mir";
  position: absolute;
  left: 22px;
  bottom: 18px;
  z-index: 3;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 1.7rem;
  color: white;
  text-shadow: 0 0 14px rgba(0,213,255,.9);
}

.portrait-frame img:not([src=""]) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px;
  display: block;
}
.portrait-frame img[src=""] { display: none; }
.portrait-frame img:not([src=""]) { width: 100%; height: 100%; object-fit: cover; position:absolute; inset:0; }
.portrait-empty { text-align: center; color: var(--muted); display:flex; flex-direction:column; gap:16px; font-size:1.1rem; }
.portrait-empty strong { color: white; font-size: 2rem; }

.section-heading { max-width: 860px; margin-bottom: 34px; }
.section-heading h2 { font-size: clamp(1.4rem, 2vw, 2.5rem); margin-bottom: 12px; }
.identity-grid, .cards-grid, .artifact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.cards-grid, .artifact-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.identity-card,
.data-card,
.artifact-card,
.timeline-item {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transition: .25s ease;
}
.identity-card:hover, .data-card:hover, .artifact-card:hover, .timeline-item:hover { transform: translateY(-7px); box-shadow: 0 0 34px rgba(0,213,255,.35); }
.identity-card h3, .data-card h3, .artifact-card h3 { color: #e8fbff; }
.identity-card p, .data-card p, .artifact-card p, .timeline-item p { color: var(--muted); line-height: 1.65; }
.two-column, .contact-layout { display:grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.education-card ul { columns: 2; color: var(--muted); line-height: 1.9; }
.philosophy-layout { display:grid; grid-template-columns: 1fr 300px; gap: 28px; }
.philosophy-content h3 { font-size: 2.4rem; }
.philosophy-content p { color: var(--muted); line-height: 1.8; font-size: 1.08rem; }
.sub-nav { background: rgba(0, 213, 255, .06); border:1px solid var(--border); border-radius:22px; padding:20px; }
.sub-nav button {
  display:block;
  width:100%;
  background: rgba(255,255,255,.06);
  color:white;
  border:1px solid rgba(89,202,255,.25);
  border-radius:14px;
  padding:12px 14px;
  margin:10px 0;
  font-weight:800;
  cursor:pointer;
}
.sub-nav button.active, .sub-nav button:hover { background: linear-gradient(135deg, #187fff, #00bce9); }
.center-card { text-align:center; max-width: 760px; margin:0 auto; }
.timeline { display:grid; gap: 18px; }
.timeline-item { position: relative; padding-left: 32px; }
.timeline-item::before { content:""; position:absolute; left:13px; top:26px; width:8px; height:8px; border-radius:50%; background:var(--cyan); box-shadow:0 0 16px var(--cyan); }
.contact-form label { display:block; margin-bottom: 16px; color: var(--muted); font-weight:800; }
input, textarea {
  width:100%;
  margin-top:8px;
  padding:14px 16px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
  color:white;
  outline:none;
}
textarea { min-height: 150px; resize: vertical; }
.reveal { opacity: 0; transform: translateY(24px); transition: .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .glass-nav { position: sticky; top: 10px; transform:none; left:auto; width:calc(100% - 20px); margin:10px auto; flex-direction:column; align-items:stretch; }
  .nav-links { flex-wrap: wrap; }
  .signature-logo { min-width:auto; }
  .hero, .two-column, .contact-layout, .philosophy-layout { grid-template-columns: 1fr; }
  .identity-grid, .cards-grid, .artifact-grid { grid-template-columns: 1fr; }
  .hanging-hi-girl { right: 8px; transform: scale(.78); }
}
/* FINAL IDENTITY CARDS OVERRIDE */

.identity-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
  margin-top: 34px;
}

.identity-card {
  position: relative;
  min-height: 210px;
  opacity: 0;
  transform: translateY(34px) scale(.88) rotate(-3deg);
  animation: magicCardAppear .85s ease forwards !important;
}

.identity-card:nth-child(1) { animation-delay: .4s !important; }
.identity-card:nth-child(2) { animation-delay: 1.4s !important; }
.identity-card:nth-child(3) { animation-delay: 2.4s !important; }
.identity-card:nth-child(4) { animation-delay: 3.4s !important; }

.identity-card::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -24px;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, #fff4b8, #d6a84f, #fff1a8);
  box-shadow: 0 0 12px rgba(255, 214, 112, .9);
  opacity: 0;
  animation: goldThread .6s ease forwards;
  animation-delay: 4.3s;
}

.identity-card:last-child::after {
  display: none;
}

@keyframes magicCardAppear {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(.82) rotate(-6deg);
    filter: blur(10px);
  }
  60% {
    opacity: 1;
    transform: translateY(-8px) scale(1.04) rotate(1deg);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0);
    filter: blur(0);
  }
}

@keyframes goldThread {
  from {
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
  }
  to {
    opacity: 1;
    transform: scaleX(1);
    transform-origin: left;
  }
}
/* PROFESSIONAL COMPETENCIES DOCUMENT STYLE */

.competency-block {
  background: rgba(5, 18, 65, .58);
  border: 1px solid rgba(120, 220, 255, .35);
  border-radius: 24px;
  padding: 30px;
  margin-bottom: 24px;
  box-shadow:
    0 0 22px rgba(0, 213, 255, .12),
    inset 0 0 20px rgba(255,255,255,.04);
  backdrop-filter: blur(18px);
}

.competency-block h3 {
  color: #ffffff;
  font-size: 1.55rem;
  margin-bottom: 18px;
}

.competency-block ul {
  margin: 0;
  padding-left: 24px;
}

.competency-block li {
  color: #c6dcff;
  line-height: 1.75;
  margin-bottom: 10px;
  font-size: 1.02rem;
}
.competency-line {
  margin: 0 0 10px 0;
  line-height: 1.6;
}
/* CLEANER HERO OVERRIDE */

.hero {
  grid-template-columns: 1fr 0.8fr;
  gap: 20px;
  padding-top: 120px;
}

h1 {
  font-size: clamp(3.4rem, 6vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: -3px;
  margin-bottom: 24px;
}

.hero h2 {
  font-size: clamp(1.6rem, 2.3vw, 2.7rem);
  line-height: 1.25;
  max-width: 650px;
}

.tagline {
  font-size: 1rem;
  line-height: 1.5;
  max-width: 620px;
  color: #dceeff;
}

.subtagline {
  font-size: 0.95rem;
  color: #9fc8ff;
}

.portrait-panel {
  justify-content: flex-end;
}

.portrait-frame {
  width: 300px;
  height: 390px;
  transform: rotate(1deg);
}

.glass-nav {
  width: min(94vw, 1450px);
  min-height: 72px;
}

.nav-links > a,
.nav-item > a {
  padding: 14px 22px;
  font-size: 0.95rem;
}

.hanging-hi-girl {
  transform: scale(0.82);
  top: 115px;
  right: 24px;
}

.bg-orbs span:nth-child(1) {
  opacity: 0.25;
}

.bg-orbs span:nth-child(2) {
  opacity: 0.3;
}

.bg-orbs span:nth-child(3) {
  opacity: 0.2;
}
.logo-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 260px;
}

.sm-logo {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;

  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.18), transparent 22%),
    radial-gradient(circle at center, rgba(0,213,255,.18), rgba(3,9,40,.96) 70%);

  border: 1px solid rgba(0,213,255,.9);
  box-shadow:
      0 0 20px rgba(0,213,255,.8),
      0 0 55px rgba(19,140,255,.45),
      inset 0 0 20px rgba(255,255,255,.12);
}
.sm-logo::before{
    content:"";
    position:absolute;
    inset:8px;
    border-radius:50%;
    border:1px dashed rgba(180,235,255,.55);
    box-shadow:inset 0 0 15px rgba(0,213,255,.3);
}

.sm-logo::after{
    content:"✦ ✧ ✦";
    position:absolute;
    bottom:8px;
    left:50%;
    transform:translateX(-50%);
    font-size:.55rem;
    letter-spacing:5px;
    color:#bfefff;
    text-shadow:0 0 10px cyan;
}

.sm-logo span{
    position:relative;
    z-index:2;
    font-family:"Brush Script MT","Segoe Script",cursive;
    font-size:2.4rem;
    color:white;
    transform:rotate(-8deg);

    text-shadow:
      0 0 10px white,
      0 0 20px #00d5ff,
      0 0 45px #138cff;
}

.logo-name {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  color: white;
  text-shadow: 0 0 14px rgba(0,213,255,.7);
}
.portrait-frame {
  background:
    radial-gradient(circle at 50% 25%, rgba(255,255,255,.22), transparent 28%),
    linear-gradient(135deg, rgba(19,140,255,.28), rgba(0,213,255,.08));
  border: 1px solid rgba(0,213,255,.8);
  box-shadow:
    0 0 25px rgba(0,213,255,.55),
    0 0 70px rgba(19,140,255,.35),
    0 0 120px rgba(0,80,255,.22);
}

.portrait-frame img {
  filter: saturate(1.08) contrast(1.05) brightness(1.04);
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 45%,
    rgba(0, 10, 40, .45) 100%
  );
}
body {
  font-family: "Montserrat", sans-serif;
}

h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  letter-spacing: -5px;
  line-height: 0.88;
  text-transform: uppercase;
}

.hero h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.tagline {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.45rem;
  line-height: 1.45;
}

.subtagline {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.logo-name,
.nav-links a {
  font-family: "Playfair Display", serif;
  font-weight: 600;
}
.blue-word {
  background: linear-gradient(180deg, #ffffff 0%, #bde8ff 45%, #1d74ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
:root {
  --navy: #02072b;
  --navy2: #06154a;
  --blue: #138cff;
  --cyan: #00d5ff;
  --white: #f8fbff;
  --muted: #aac8ff;
  --pink: #ff74ff;
  --glass: rgba(5, 18, 65, 0.70);
  --border: rgba(89, 202, 255, 0.36);
  --shadow: 0 0 28px rgba(0, 213, 255, 0.22), 0 0 80px rgba(19, 140, 255, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background:
   linear-gradient(180deg, #02061f 0%, #04113b 45%, #020624 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .14;
  background-image:
    linear-gradient(rgba(80,190,255,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80,190,255,.18) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 88%);
}

a { color: inherit; }

.cursor-glow {
  position: fixed;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 116, 255, .55);
  box-shadow: 0 0 18px rgba(255,116,255,.9), 0 0 42px rgba(255,116,255,.45);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: screen;
}
.click-ring {
  position: fixed;
  width: 16px;
  height: 16px;
  border: 2px solid var(--pink);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  z-index: 10001;
  box-shadow: 0 0 20px rgba(255,116,255,.9);
}
.click-ring.active { animation: clickRipple .55s ease-out; }
@keyframes clickRipple {
  from { transform: translate(-50%, -50%) scale(.7); opacity: 1; }
  to { transform: translate(-50%, -50%) scale(4); opacity: 0; }
}

.bg-orbs span {
  position: fixed;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .55;
  pointer-events: none;
  animation: floatOrb 8s ease-in-out infinite;
}
.bg-orbs span:nth-child(1) { width: 170px; height: 170px; left: 5%; top: 26%; background: rgba(0,213,255,.18); }
.bg-orbs span:nth-child(2) { width: 70px; height: 70px; left: 35%; top: 18%; background: rgba(255,116,255,.28); animation-delay: 1.2s; }
.bg-orbs span:nth-child(3) { width: 220px; height: 220px; right: 8%; bottom: 14%; background: rgba(19,140,255,.16); animation-delay: 2s; }
@keyframes floatOrb { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-18px);} }

/* Signature logo only. No face/logo bubble here. */
.signature-logo {
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 0 18px;
}
.signature-text {
  font-family: "Brush Script MT", "Segoe Script", "Lucida Handwriting", cursive;
  font-size: clamp(1rem, 1.8vw, 2rem);
  font-weight: 400;
  color: white;
  letter-spacing: 1px;
  text-shadow:
    0 0 12px rgba(0,213,255,.7),
    0 0 28px rgba(0,120,255,.45),
    0 0 42px rgba(255,116,255,.24);
  transition: .3s ease;
  white-space: nowrap;
}
.signature-text:hover {
  transform: scale(1.05);
  text-shadow:
    0 0 18px rgba(255,180,220,.9),
    0 0 40px rgba(0,213,255,.6);
}

.glass-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(96vw, 1560px);
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 18px 10px 10px;
  background: rgba(1, 10, 39, .72);
  border: 1px solid var(--border);
  border-radius: 28px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow), 0 18px 50px rgba(0,0,0,.32);
  z-index: 999;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex: 1;
}
.nav-links > a,
.nav-item > a {
  display: block;
  text-decoration: none;
  font-size: clamp(.82rem, 1.1vw, 1.02rem);
  font-weight: 800;
  color: var(--white);
  padding: 18px 24px;
  border-left: 1px solid rgba(83, 192, 255, .28);
  white-space: nowrap;
  transition: .25s ease;
}
.nav-links > a:hover,
.nav-links > a.active,
.nav-item:hover > a {
  background: linear-gradient(135deg, #187fff, #00bce9);
  border-radius: 20px;
  box-shadow: 0 0 22px rgba(0, 213, 255, .55);
}
.nav-item { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  min-width: 260px;
  background: rgba(2, 13, 52, .92);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 18px;
  padding: 10px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: .25s ease;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.dropdown-menu a {
  display: block;
  padding: 12px 14px;
  text-decoration: none;
  border-radius: 12px;
  color: var(--white);
  font-weight: 700;
}
.dropdown-menu a:hover { background: rgba(0, 213, 255, .16); }

/* Hanging Bengali girl: stays. */
.hanging-hi-girl {
  position: fixed;
  right: 32px;
  top: 130px;
  width: 95px;
  height: 175px;
  z-index: 1000;
  animation: girlSwing 3.2s ease-in-out infinite;
  transform-origin: top center;
  pointer-events: none;
}
.girl-thread {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 46px;
  background: linear-gradient(#fff4b8, #d7a441, #fff2a8);
  box-shadow: 0 0 12px rgba(255, 215, 100, .9);
}
.girl-head {
  position: absolute;
  top: 38px;
  left: 22px;
  width: 52px;
  height: 52px;
  background: #a86a43;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.88);
  box-shadow: 0 0 18px rgba(0, 213, 255, .45);
}
.girl-hair {
  position: absolute;
  top: -9px;
  left: 2px;
  width: 48px;
  height: 32px;
  background: #100817;
  border-radius: 25px 25px 10px 10px;
}
.girl-bangs {
  position: absolute;
  top: 0;
  left: 5px;
  width: 42px;
  height: 16px;
  background: repeating-linear-gradient(90deg, #100817 0 8px, transparent 8px 10px);
  border-radius: 12px;
}
.girl-eye {
  position: absolute;
  top: 25px;
  width: 5px;
  height: 5px;
  background: #050505;
  border-radius: 50%;
}
.girl-eye.left { left: 15px; }
.girl-eye.right { right: 15px; }
.girl-smile {
  position: absolute;
  left: 19px;
  top: 34px;
  width: 13px;
  height: 6px;
  border-bottom: 2px solid #260707;
  border-radius: 0 0 12px 12px;
}
.girl-body {
  position: absolute;
  top: 84px;
  left: 32px;
  width: 32px;
  height: 35px;
  background: linear-gradient(145deg, #1b7cff, #00d5ff);
  border-radius: 15px 15px 10px 10px;
  box-shadow: 0 0 18px rgba(0, 207, 255, .8);
}
.girl-arm { position:absolute; top:110px; width:28px; height:6px; background:#a86a43; border-radius:6px; z-index:2; }
.girl-arm.left { left:18px; transform:rotate(25deg); }
.girl-arm.right { right:18px; transform:rotate(-25deg); }
.bengali-sign {
  position: absolute;
  top: 120px;
  left: 13px;
  width: 70px;
  height: 40px;
  border-radius: 14px;
  background: rgba(255,255,255,.96);
  color: #061c64;
  font-size: 1.35rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px rgba(255,255,255,.65), 0 0 28px rgba(0, 213, 255, .45);
}
@keyframes girlSwing { 0%,100%{ transform:rotate(-2deg);} 50%{ transform:rotate(2deg);} }

#flower-container { position: fixed; inset: 0; pointer-events: none; z-index: 10002; }
.flower {
  position: absolute;
  top: -24px;
  width: 13px;
  height: 13px;
  background: #ff9ecf;
  border-radius: 50% 0 50% 0;
  opacity: .92;
  box-shadow: 0 0 10px rgba(255,158,207,.7);
  animation: fall linear forwards;
}
@keyframes fall {
  from { transform: translateY(-20px) rotate(0deg); }
  to { transform: translateY(110vh) rotate(720deg); }
}

.section {
  width: min(92vw, 1220px);
  margin: 0 auto;
  padding: 120px 0;
  scroll-margin-top: 130px;
}
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 44px;
  padding-top: 90px;
}
.eyebrow {
  color: #86e9ff;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  font-weight: 900;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: .88;
  margin-bottom: 22px;
  text-shadow: 0 0 34px rgba(0,213,255,.38);
}
.hero h2 
{ font-size: clamp(1.4rem, 2vw, 2.5rem); margin-bottom: 8px; 
font-family:"Playfair Display", serif;
}
.tagline 
{ font-size: 1.35rem; color: #d6f7ff; font-weight: 800;
font-family: "cormorant Garamond", serif;
}
.subtagline { color: var(--muted); font-size: 1.1rem; }
.hero-card,
.glass-card {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  backdrop-filter: blur(18px);
}
.hero-card { margin: 28px 0; max-width: 620px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px 20px;
  font-weight: 900;
  margin-right: 12px;
  transition: .25s ease;
}
.btn.primary { background: linear-gradient(135deg, #187fff, #00bce9); box-shadow: 0 0 22px rgba(0,213,255,.42); }
.btn.ghost { background: rgba(255,255,255,.04); }
.btn:hover { transform: translateY(-3px); }
.portrait-panel {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.portrait-frame {
  width: 340px;
  height: 440px;
  padding: 14px;
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.16), rgba(0,213,255,.08));
  border: 1px solid rgba(160,230,255,.55);
  box-shadow:
    0 0 35px rgba(0,213,255,.22),
    0 0 80px rgba(0,120,255,.16);
  overflow: hidden;
  position: relative;
  transform: rotate(2deg);
}

.portrait-frame::before {
  content: "Shantona Mir";
  position: absolute;
  left: 22px;
  bottom: 18px;
  z-index: 3;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 1.7rem;
  color: white;
  text-shadow: 0 0 14px rgba(0,213,255,.9);
}

.portrait-frame img:not([src=""]) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px;
  display: block;
}
.portrait-frame img[src=""] { display: none; }
.portrait-frame img:not([src=""]) { width: 100%; height: 100%; object-fit: cover; position:absolute; inset:0; }
.portrait-empty { text-align: center; color: var(--muted); display:flex; flex-direction:column; gap:16px; font-size:1.1rem; }
.portrait-empty strong { color: white; font-size: 2rem; }

.section-heading { max-width: 860px; margin-bottom: 34px; }
.section-heading h2 { font-size: clamp(1.4rem, 2vw, 2.5rem); margin-bottom: 12px; }
.identity-grid, .cards-grid, .artifact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.cards-grid, .artifact-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.identity-card, .data-card, .artifact-card, .timeline-item {
 .identity-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.identity-card{
    opacity:0;
    transform:translateY(30px) scale(.88);
    animation:magicCardAppear .8s ease forwards;
    position:relative;
}

.identity-card:nth-child(1){animation-delay:.4s;}
.identity-card:nth-child(2){animation-delay:1.4s;}
.identity-card:nth-child(3){animation-delay:2.4s;}
.identity-card:nth-child(4){animation-delay:3.4s;}

.identity-card::after{
    content:"";
    position:absolute;
    top:50%;
    right:-24px;
    width:24px;
    height:2px;
    background:linear-gradient(
        90deg,
        #fff4b8,
        #d6a84f,
        #fff4b8
    );
    opacity:0;
    animation:goldThread .6s forwards;
    animation-delay:4.3s;
}

.identity-card:last-child::after{
    display:none;
}

@keyframes magicCardAppear{
    from{
        opacity:0;
        transform:translateY(40px) scale(.8);
        filter:blur(8px);
    }

    to{
        opacity:1;
        transform:translateY(0) scale(1);
        filter:blur(0);
    }
}

@keyframes goldThread{
    from{
        opacity:0;
        transform:scaleX(0);
    }

    to{
        opacity:1;
        transform:scaleX(1);
    }
} 
  
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transition: .25s ease;
}
.identity-card:hover, .data-card:hover, .artifact-card:hover, .timeline-item:hover { transform: translateY(-7px); box-shadow: 0 0 34px rgba(0,213,255,.35); }
.identity-card h3, .data-card h3, .artifact-card h3 { color: #e8fbff; }
.identity-card p, .data-card p, .artifact-card p, .timeline-item p { color: var(--muted); line-height: 1.65; }
.two-column, .contact-layout { display:grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.education-card ul { columns: 2; color: var(--muted); line-height: 1.9; }
.philosophy-layout { display:grid; grid-template-columns: 1fr 300px; gap: 28px; }
.philosophy-content h3 { font-size: 2.4rem; }
.philosophy-content p { color: var(--muted); line-height: 1.8; font-size: 1.08rem; }
.sub-nav { background: rgba(0, 213, 255, .06); border:1px solid var(--border); border-radius:22px; padding:20px; }
.sub-nav button {
  display:block;
  width:100%;
  background: rgba(255,255,255,.06);
  color:white;
  border:1px solid rgba(89,202,255,.25);
  border-radius:14px;
  padding:12px 14px;
  margin:10px 0;
  font-weight:800;
  cursor:pointer;
}
.sub-nav button.active, .sub-nav button:hover { background: linear-gradient(135deg, #187fff, #00bce9); }
.center-card { text-align:center; max-width: 760px; margin:0 auto; }
.timeline { display:grid; gap: 18px; }
.timeline-item { position: relative; padding-left: 32px; }
.timeline-item::before { content:""; position:absolute; left:13px; top:26px; width:8px; height:8px; border-radius:50%; background:var(--cyan); box-shadow:0 0 16px var(--cyan); }
.contact-form label { display:block; margin-bottom: 16px; color: var(--muted); font-weight:800; }
input, textarea {
  width:100%;
  margin-top:8px;
  padding:14px 16px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
  color:white;
  outline:none;
}
textarea { min-height: 150px; resize: vertical; }
.reveal { opacity: 0; transform: translateY(24px); transition: .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .glass-nav { position: sticky; top: 10px; transform:none; left:auto; width:calc(100% - 20px); margin:10px auto; flex-direction:column; align-items:stretch; }
  .nav-links { flex-wrap: wrap; }
  .signature-logo { min-width:auto; }
  .hero, .two-column, .contact-layout, .philosophy-layout { grid-template-columns: 1fr; }
  .identity-grid, .cards-grid, .artifact-grid { grid-template-columns: 1fr; }
  .hanging-hi-girl { right: 8px; transform: scale(.78); }
}
/* FINAL IDENTITY CARDS OVERRIDE */

.identity-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
  margin-top: 34px;
}

.identity-card {
  position: relative;
  min-height: 210px;
  opacity: 0;
  transform: translateY(34px) scale(.88) rotate(-3deg);
  animation: magicCardAppear .85s ease forwards !important;
}

.identity-card:nth-child(1) { animation-delay: .4s !important; }
.identity-card:nth-child(2) { animation-delay: 1.4s !important; }
.identity-card:nth-child(3) { animation-delay: 2.4s !important; }
.identity-card:nth-child(4) { animation-delay: 3.4s !important; }

.identity-card::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -24px;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, #fff4b8, #d6a84f, #fff1a8);
  box-shadow: 0 0 12px rgba(255, 214, 112, .9);
  opacity: 0;
  animation: goldThread .6s ease forwards;
  animation-delay: 4.3s;
}

.identity-card:last-child::after {
  display: none;
}

@keyframes magicCardAppear {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(.82) rotate(-6deg);
    filter: blur(10px);
  }
  60% {
    opacity: 1;
    transform: translateY(-8px) scale(1.04) rotate(1deg);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0);
    filter: blur(0);
  }
}

@keyframes goldThread {
  from {
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
  }
  to {
    opacity: 1;
    transform: scaleX(1);
    transform-origin: left;
  }
}
/* PROFESSIONAL COMPETENCIES DOCUMENT STYLE */

.competency-block {
  background: rgba(5, 18, 65, .58);
  border: 1px solid rgba(120, 220, 255, .35);
  border-radius: 24px;
  padding: 30px;
  margin-bottom: 24px;
  box-shadow:
    0 0 22px rgba(0, 213, 255, .12),
    inset 0 0 20px rgba(255,255,255,.04);
  backdrop-filter: blur(18px);
}

.competency-block h3 {
  color: #ffffff;
  font-size: 1.55rem;
  margin-bottom: 18px;
}

.competency-block ul {
  margin: 0;
  padding-left: 24px;
}

.competency-block li {
  color: #c6dcff;
  line-height: 1.75;
  margin-bottom: 10px;
  font-size: 1.02rem;
}
.competency-line {
  margin: 0 0 10px 0;
  line-height: 1.6;
}
/* CLEANER HERO OVERRIDE */

.hero {
  grid-template-columns: 1fr 0.8fr;
  gap: 20px;
  padding-top: 120px;
}

h1 {
  font-size: clamp(3.4rem, 6vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: -3px;
  margin-bottom: 24px;
}

.hero h2 {
  font-size: clamp(1.6rem, 2.3vw, 2.7rem);
  line-height: 1.25;
  max-width: 650px;
}

.tagline {
  font-size: 1rem;
  line-height: 1.5;
  max-width: 620px;
  color: #dceeff;
}

.subtagline {
  font-size: 0.95rem;
  color: #9fc8ff;
}

.portrait-panel {
  justify-content: flex-end;
}

.portrait-frame {
  width: 300px;
  height: 390px;
  transform: rotate(1deg);
}

.glass-nav {
  width: min(94vw, 1450px);
  min-height: 72px;
}

.nav-links > a,
.nav-item > a {
  padding: 14px 22px;
  font-size: 0.95rem;
}

.hanging-hi-girl {
  transform: scale(0.82);
  top: 115px;
  right: 24px;
}

.bg-orbs span:nth-child(1) {
  opacity: 0.25;
}

.bg-orbs span:nth-child(2) {
  opacity: 0.3;
}

.bg-orbs span:nth-child(3) {
  opacity: 0.2;
}
.logo-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 260px;
}

.sm-logo {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;

  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.18), transparent 22%),
    radial-gradient(circle at center, rgba(0,213,255,.18), rgba(3,9,40,.96) 70%);

  border: 1px solid rgba(0,213,255,.9);
  box-shadow:
      0 0 20px rgba(0,213,255,.8),
      0 0 55px rgba(19,140,255,.45),
      inset 0 0 20px rgba(255,255,255,.12);
}
.sm-logo::before{
    content:"";
    position:absolute;
    inset:8px;
    border-radius:50%;
    border:1px dashed rgba(180,235,255,.55);
    box-shadow:inset 0 0 15px rgba(0,213,255,.3);
}

.sm-logo::after{
    content:"✦ ✧ ✦";
    position:absolute;
    bottom:8px;
    left:50%;
    transform:translateX(-50%);
    font-size:.55rem;
    letter-spacing:5px;
    color:#bfefff;
    text-shadow:0 0 10px cyan;
}

.sm-logo span{
    position:relative;
    z-index:2;
    font-family:"Brush Script MT","Segoe Script",cursive;
    font-size:2.4rem;
    color:white;
    transform:rotate(-8deg);

    text-shadow:
      0 0 10px white,
      0 0 20px #00d5ff,
      0 0 45px #138cff;
}

.logo-name {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  color: white;
  text-shadow: 0 0 14px rgba(0,213,255,.7);
}
.portrait-frame {
  background:
    radial-gradient(circle at 50% 25%, rgba(255,255,255,.22), transparent 28%),
    linear-gradient(135deg, rgba(19,140,255,.28), rgba(0,213,255,.08));
  border: 1px solid rgba(0,213,255,.8);
  box-shadow:
    0 0 25px rgba(0,213,255,.55),
    0 0 70px rgba(19,140,255,.35),
    0 0 120px rgba(0,80,255,.22);
}

.portrait-frame img {
  filter: saturate(1.08) contrast(1.05) brightness(1.04);
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 45%,
    rgba(0, 10, 40, .45) 100%
  );
}
body {
  font-family: "Montserrat", sans-serif;
}

h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  letter-spacing: -5px;
  line-height: 0.88;
  text-transform: uppercase;
}

.hero h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.tagline {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.45rem;
  line-height: 1.45;
}

.subtagline {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.logo-name,
.nav-links a {
  font-family: "Playfair Display", serif;
  font-weight: 600;
}
.blue-word {
  background: linear-gradient(180deg, #ffffff 0%, #bde8ff 45%, #1d74ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* ABOUT MAGAZINE SECTION */

.about-magazine-layout {
  display: grid;
  grid-template-columns: 320px 1fr 300px;
  gap: 28px;
  align-items: start;
  background: rgba(210, 210, 210, 0.88);
  color: #101010;
  padding: 0 18px 40px 18px;
  border-left: 2px dashed #111;
  border-right: 2px dashed #111;
}

.about-glance,
.about-letter,
.about-portrait-box {
  border: 1px solid rgba(0, 110, 255, 0.45);
  background: rgba(220, 220, 220, 0.65);
}

.about-glance {
  padding: 18px 18px 0 18px;
}

.about-glance h3 {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
  margin-bottom: 25px;
}

.about-glance p {
  font-family: Georgia, serif;
  font-size: 1.02rem;
  line-height: 1.35;
  margin-bottom: 12px;
}

.about-glance strong,
.about-letter strong {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}

.glance-note {
  text-align: center;
  padding: 0 20px;
}

.glance-info {
  margin-top: 28px;
}

.about-star {
  width: 48px;
  height: 48px;
  margin-left: auto;
  margin-top: 16px;
  margin-bottom: 12px;
  border: 1px solid rgba(0, 110, 255, 0.45);
  display: grid;
  place-items: center;
  color: #006dff;
  font-size: 2.2rem;
  line-height: 1;
}

.about-bottom-img {
  width: calc(100% + 36px);
  height: 380px;
  object-fit: cover;
  display: block;
  margin-left: -18px;
  margin-top: 10px;
  background: #62bdf5;
}

.about-letter {
  padding: 0 0 28px 0;
}

.about-letter p {
  font-family: "Montserrat", sans-serif;
  font-size: 1.15rem;
  line-height: 1.45;
  margin-bottom: 18px;
}

.about-portrait-box {
  min-height: 330px;
  padding: 0;
  position: relative;
}

.about-portrait-img {
  width: 100%;
  height: 318px;
  object-fit: cover;
  display: block;
  border-radius: 90px 45px 80px 45px;
}

.image-insert {
  display: inline-block;
  margin: 10px 0;
  padding: 8px 12px;
  background: rgba(0, 110, 255, 0.12);
  border: 1px solid rgba(0, 110, 255, 0.45);
  color: #006dff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.image-insert input {
  display: none;
}

.portrait-insert {
  position: absolute;
  left: 10px;
  bottom: -46px;
}

@media (max-width: 1100px) {
  .about-magazine-layout {
    grid-template-columns: 1fr;
  }

  .about-bottom-img,
  .about-portrait-img {
    height: auto;
  }
}
/* FAIRYTALE FUTURISTIC ABOUT SECTION */

.about-fairytale-section {
  width: min(94vw, 1450px);
  padding-top: 120px;
}

.about-title-wrap {
  text-align: center;
  margin-bottom: 34px;
}

.about-main-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 600;
  color: white;
  text-shadow:
    0 0 12px rgba(255,255,255,.9),
    0 0 30px rgba(0,213,255,.75),
    0 0 70px rgba(19,140,255,.45);
  margin-bottom: 8px;
  position: relative;
}

.about-main-title::before,
.about-main-title::after {
  content: "꧁";
  color: #43cfff;
  font-size: 2.4rem;
  margin: 0 26px;
  text-shadow: 0 0 18px rgba(0,213,255,.9);
}

.about-main-title::after {
  content: "꧂";
}

.about-subtitle {
  font-family: "Montserrat", sans-serif;
  color: #4ddcff;
  letter-spacing: .25em;
  font-size: .9rem;
}

.about-fairytale-layout {
  display: grid;
  grid-template-columns: 360px 1fr 360px;
  gap: 22px;
  padding: 18px;
  border: 1px solid rgba(0, 213, 255, .45);
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 20%, rgba(0,213,255,.15), transparent 28%),
    radial-gradient(circle at 90% 75%, rgba(255,116,255,.11), transparent 25%),
    linear-gradient(145deg, rgba(2,8,39,.92), rgba(3,15,62,.82));
  box-shadow:
    0 0 30px rgba(0,213,255,.25),
    inset 0 0 60px rgba(0,213,255,.06);
}

.about-panel {
  position: relative;
  border: 1px solid rgba(0, 213, 255, .55);
  border-radius: 24px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(5, 20, 70, .78), rgba(2, 8, 35, .9));
  box-shadow:
    0 0 24px rgba(0,213,255,.18),
    inset 0 0 30px rgba(255,255,255,.04);
  overflow: hidden;
}

.about-panel::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 18px;
  border: 1px solid rgba(100, 210, 255, .18);
  pointer-events: none;
}

.about-glance-panel h3,
.about-letter-panel h3 {
  font-family: "Brush Script MT", "Segoe Script", cursive;
  color: #8cecff;
  font-size: 2.5rem;
  font-weight: 400;
  text-shadow: 0 0 14px rgba(0,213,255,.9);
  margin-bottom: 22px;
}

.about-glance-panel h3 {
  text-align: center;
}

.about-glance-panel p,
.about-letter-panel p {
  font-family: "Georgia", serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #f3f8ff;
}

.about-glance-panel span,
.about-glance-panel strong,
.about-letter-panel strong {
  color: #5eeeff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.about-note {
  text-align: center;
  color: #66dcff !important;
  font-style: italic;
  font-size: .95rem !important;
}

.about-line {
  height: 1px;
  margin: 24px 0;
  background: linear-gradient(90deg, transparent, #30d8ff, transparent);
  box-shadow: 0 0 12px rgba(0,213,255,.8);
}

.about-star {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-left: auto;
  margin-top: 18px;
  margin-bottom: 18px;
  border: 1px solid rgba(0,213,255,.7);
  border-radius: 8px;
  color: #44dfff;
  font-size: 2rem;
  text-shadow: 0 0 14px rgba(0,213,255,.9);
}

.about-upload-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 12px 0;
  padding: 11px 18px;
  border: 1px solid rgba(0,213,255,.65);
  border-radius: 10px;
  background: rgba(0, 120, 255, .12);
  color: #63e6ff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 0 16px rgba(0,213,255,.16);
}

.about-upload-btn:hover {
  background: rgba(0, 213, 255, .18);
  box-shadow: 0 0 24px rgba(0,213,255,.35);
}

.about-upload-btn input {
  display: none;
}

.about-bottom-photo-box {
  height: 170px;
  border: 1px dashed rgba(0,213,255,.55);
  border-radius: 16px;
  margin-top: 10px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: rgba(0, 50, 120, .25);
}

.about-bottom-photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.about-bottom-photo-box img[src]:not([src=""]) {
  display: block;
}

.about-bottom-photo-box span {
  color: #60dcff;
  font-family: "Montserrat", sans-serif;
  font-size: .9rem;
}

.about-letter-panel p {
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 18px;
}

.about-signoff {
  font-style: italic;
  color: #78e8ff !important;
}

.about-signoff span {
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 3rem;
  color: white;
  text-shadow:
    0 0 12px rgba(255,255,255,.9),
    0 0 28px rgba(0,213,255,.8);
}
.about-photo-panel {
  min-height: auto !important;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.portrait-fairy-box {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 28px !important;
  border: 1px dashed rgba(0,213,255,.75);
  overflow: hidden;
  position: relative;
  background: rgba(0, 30, 90, .22);
  display: grid;
  place-items: center;
}

.portrait-fairy-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: none;
}

.portrait-fairy-box img[src]:not([src=""]) {
  display: block !important;
}

.portrait-fairy-box img[src]:not([src=""]) + .portrait-placeholder {
  display: none !important;
}

.portrait-placeholder {
  text-align: center;
  color: #41d8ff;
  font-family: "Montserrat", sans-serif;
}

.portrait-btn {
  width: 80%;
  margin: 0 auto;
}

.portrait-btn.hidden {
  display: none !important;
}
.about-upload-btn.hidden {
  display: none !important;
}

/* FAIRYTALE FUTURISTIC ABOUT SECTION */

.about-fairytale-section {
  width: min(94vw, 1450px);
  padding-top: 120px;
}

.about-title-wrap {
  text-align: center;
  margin-bottom: 34px;
}

.about-main-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 600;
  color: white;
  text-shadow:
    0 0 12px rgba(255,255,255,.9),
    0 0 30px rgba(0,213,255,.75),
    0 0 70px rgba(19,140,255,.45);
  margin-bottom: 8px;
  position: relative;
}

.about-main-title::before,
.about-main-title::after {
  content: "꧁";
  color: #43cfff;
  font-size: 2.4rem;
  margin: 0 26px;
  text-shadow: 0 0 18px rgba(0,213,255,.9);
}

.about-main-title::after {
  content: "꧂";
}

.about-subtitle {
  font-family: "Montserrat", sans-serif;
  color: #4ddcff;
  letter-spacing: .25em;
  font-size: .9rem;
}

.about-fairytale-layout {
  display: grid;
  grid-template-columns: 360px 1fr 360px;
  gap: 22px;
  padding: 18px;
  border: 1px solid rgba(0, 213, 255, .45);
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 20%, rgba(0,213,255,.15), transparent 28%),
    radial-gradient(circle at 90% 75%, rgba(255,116,255,.11), transparent 25%),
    linear-gradient(145deg, rgba(2,8,39,.92), rgba(3,15,62,.82));
  box-shadow:
    0 0 30px rgba(0,213,255,.25),
    inset 0 0 60px rgba(0,213,255,.06);
}

.about-panel {
  position: relative;
  border: 1px solid rgba(0, 213, 255, .55);
  border-radius: 24px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(5, 20, 70, .78), rgba(2, 8, 35, .9));
  box-shadow:
    0 0 24px rgba(0,213,255,.18),
    inset 0 0 30px rgba(255,255,255,.04);
  overflow: hidden;
}

.about-panel::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 18px;
  border: 1px solid rgba(100, 210, 255, .18);
  pointer-events: none;
}

.about-glance-panel h3,
.about-letter-panel h3 {
  font-family: "Brush Script MT", "Segoe Script", cursive;
  color: #8cecff;
  font-size: 2.5rem;
  font-weight: 400;
  text-shadow: 0 0 14px rgba(0,213,255,.9);
  margin-bottom: 22px;
}

.about-glance-panel h3 {
  text-align: center;
}

.about-glance-panel p,
.about-letter-panel p {
  font-family: "Georgia", serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #f3f8ff;
}

.about-glance-panel span,
.about-glance-panel strong,
.about-letter-panel strong {
  color: #5eeeff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.about-note {
  text-align: center;
  color: #66dcff !important;
  font-style: italic;
  font-size: .95rem !important;
}

.about-line {
  height: 1px;
  margin: 24px 0;
  background: linear-gradient(90deg, transparent, #30d8ff, transparent);
  box-shadow: 0 0 12px rgba(0,213,255,.8);
}

.about-star {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-left: auto;
  margin-top: 18px;
  margin-bottom: 18px;
  border: 1px solid rgba(0,213,255,.7);
  border-radius: 8px;
  color: #44dfff;
  font-size: 2rem;
  text-shadow: 0 0 14px rgba(0,213,255,.9);
}

.about-upload-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 12px 0;
  padding: 11px 18px;
  border: 1px solid rgba(0,213,255,.65);
  border-radius: 10px;
  background: rgba(0, 120, 255, .12);
  color: #63e6ff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 0 16px rgba(0,213,255,.16);
}

.about-upload-btn:hover {
  background: rgba(0, 213, 255, .18);
  box-shadow: 0 0 24px rgba(0,213,255,.35);
}

.about-upload-btn input {
  display: none;
}

.about-bottom-photo-box {
  height: 170px;
  border: 1px dashed rgba(0,213,255,.55);
  border-radius: 16px;
  margin-top: 10px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: rgba(0, 50, 120, .25);
}

.about-bottom-photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.about-bottom-photo-box img[src]:not([src=""]) {
  display: block;
}

.about-bottom-photo-box span {
  color: #60dcff;
  font-family: "Montserrat", sans-serif;
  font-size: .9rem;
}

.about-letter-panel p {
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 18px;
}

.about-signoff {
  font-style: italic;
  color: #78e8ff !important;
}

.about-signoff span {
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 3rem;
  color: white;
  text-shadow:
    0 0 12px rgba(255,255,255,.9),
    0 0 28px rgba(0,213,255,.8);
}
.about-photo-panel {
  min-height: auto !important;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.portrait-fairy-box {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 28px !important;
  border: 1px dashed rgba(0,213,255,.75);
  overflow: hidden;
  position: relative;
  background: rgba(0, 30, 90, .22);
  display: grid;
  place-items: center;
}

.portrait-fairy-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: none;
}

.portrait-fairy-box img[src]:not([src=""]) {
  display: block !important;
}

.portrait-fairy-box img[src]:not([src=""]) + .portrait-placeholder {
  display: none !important;
}

.portrait-placeholder {
  text-align: center;
  color: #41d8ff;
  font-family: "Montserrat", sans-serif;
}

.portrait-btn {
  width: 80%;
  margin: 0 auto;
}

.portrait-btn.hidden {
  display: none !important;
}
.about-upload-btn.hidden {
  display: none !important;
}
.teaching-main-card {
  position: relative;
  padding: 50px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(0,213,255,.16), transparent 35%),
    linear-gradient(145deg, rgba(6,18,74,.92), rgba(3,9,42,.96));
  border: 1px solid rgba(96,215,255,.35);
  box-shadow:
    0 0 55px rgba(0,213,255,.18),
    inset 0 0 60px rgba(0,170,255,.08);
  overflow: hidden;
}

.philosophy-quote {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-style: italic;
  color: #9ef6ff;
  text-shadow: 0 0 16px rgba(0,255,255,.35);
}

.quote-author {
  color: #7edbff;
  letter-spacing: 2px;
  font-size: .9rem;
  margin-bottom: 28px;
}

.philosophy-title {
  font-size: 2.8rem;
  color: white;
  text-shadow: 0 0 25px rgba(0,213,255,.45);
  margin-bottom: 30px;
}

.philosophy-text {
  color: #dbefff;
  font-size: 1.08rem;
  line-height: 2;
}

.philosophy-text p {
  margin-bottom: 26px;
}

.philosophy-text p:not(:last-child)::after {
  content: "";
  display: block;
  margin-top: 22px;
}

.magic-stars::before,
.magic-stars::after {
  content: "✦";
  position: absolute;
  color: #79ddff;
  font-size: 28px;
  animation: twinkle 4s infinite;
}

.magic-stars::before {
  top: 30px;
  right: 50px;
}

.magic-stars::after {
  bottom: 60px;
  left: 45px;
}

@keyframes twinkle {
  50% {
    opacity: .25;
    transform: scale(.75);
  }
}
.philosophy-text h4 {
  margin: 34px 0 14px;
  color: #8cecff;
  font-size: 1.55rem;
  text-shadow: 0 0 16px rgba(0,213,255,.45);
}

.philosophy-question {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem !important;
  color: #9ef6ff !important;
  font-style: italic;
}
/* FIX TEACHING PHILOSOPHY LAYOUT */

#teaching-philosophy .philosophy-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 300px !important;
  gap: 28px !important;
  align-items: start !important;
}

#teaching-philosophy .teaching-main-card {
  max-width: 100% !important;
  width: 100% !important;
  padding: 42px !important;
  border-radius: 28px !important;
  background:
    radial-gradient(circle at top left, rgba(0,213,255,.16), transparent 35%),
    linear-gradient(145deg, rgba(6,18,74,.92), rgba(3,9,42,.96)) !important;
  border: 1px solid rgba(96,215,255,.35) !important;
  box-shadow:
    0 0 55px rgba(0,213,255,.18),
    inset 0 0 60px rgba(0,170,255,.08) !important;
  overflow: hidden !important;
}

#teaching-philosophy .sub-nav {
  width: 300px !important;
  position: sticky;
  top: 130px;
}

#teaching-philosophy .philosophy-text {
  max-width: 100% !important;
  overflow-wrap: break-word;
}

#teaching-philosophy .philosophy-text p {
  line-height: 1.9;
  margin-bottom: 22px;
}
.sub-tab-link {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(135deg, #187fff, #00bce9);
  color: white;
  border: 1px solid rgba(89,202,255,.25);
  border-radius: 14px;
  padding: 12px 14px;
  margin: 10px 0;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 0 22px rgba(0,213,255,.35);
}
.philosophy-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 5, 25, 0.82);
  backdrop-filter: blur(12px);
  display: none;
  place-items: center;
  z-index: 9999;
  padding: 30px;
}

.philosophy-modal.show {
  display: grid;
}

.philosophy-modal-box {
  width: min(900px, 92vw);
  max-height: 85vh;
  overflow-y: auto;
  padding: 45px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(0,213,255,.18), transparent 35%),
    linear-gradient(145deg, rgba(6,18,74,.96), rgba(3,9,42,.98));
  border: 1px solid rgba(96,215,255,.45);
  box-shadow: 0 0 70px rgba(0,213,255,.35);
}

.modal-close {
  float: right;
  background: transparent;
  color: #8cecff;
  border: none;
  font-size: 2.2rem;
  cursor: pointer;
}

.philosophy-modal-box h2 {
  color: white;
  text-shadow: 0 0 22px rgba(0,213,255,.6);
}

.cute-sticker {
  text-align: center;
  font-size: 3.5rem;
  margin-top: 30px;
}
#teaching-philosophy {
  position: relative;
  overflow: visible;
}

.student-moments-floating {
  position: relative;
  width: min(92vw, 1220px);
  height: 0;
  margin: 0 auto;
  z-index: 20;
  pointer-events: auto;
}

.student-moments-floating figure {
  position: absolute;
  width: 160px;
  padding: 7px 7px 26px;
  margin: 0;
  background: rgba(255,255,255,.92);
  border-radius: 16px;
  box-shadow: 0 0 22px rgba(0,213,255,.45), 0 14px 35px rgba(0,0,0,.35);
  animation: floatMemory 7s ease-in-out infinite;
  pointer-events: auto;
}

.student-moments-floating img {
  width: 100%;
  height: 125px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.student-moments-floating figcaption {
  position: absolute;
  left: 7px;
  right: 7px;
  bottom: 6px;
  text-align: center;
  color: #073066;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: .95rem;
}

.student-moments-floating figure:nth-child(1) {
    top: 140px;
    left: -140px;
}

.student-moments-floating figure:nth-child(2) {
    top: 210px;
    right: -140px;
}

.student-moments-floating figure:nth-child(3) {
    top: 600px;
    left: -130px;
}

.student-moments-floating figure:nth-child(4) {
    top: 700px;
    right: -130px;
}

.student-moments-floating figure:nth-child(5) {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes floatMemory {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -24px; }
}#teaching-philosophy {
  position: relative;
  overflow: visible;
}

.student-moments-floating {
  position: absolute;
  inset: 0;
  z-index: 50;
  pointer-events: auto;
}

.student-moments-floating figure {
  position: absolute;
  width: 180px;
  padding: 12px 12px 40px;
  margin: 0;
  background: rgba(255,255,255,.94);
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(0,213,255,.55), 0 14px 35px rgba(0,0,0,.35);
  animation: floatMemory 7s ease-in-out infinite;
  pointer-events: auto;
}

.student-moments-floating img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.student-moments-floating figcaption {
  position: absolute;
  left: 7px;
  right: 7px;
  bottom: 6px;
  text-align: center;
  color: #073066;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: .95rem;
}

.student-moments-floating figure:nth-child(1) {
    top: 70px;
    left: -230px;
    transform: rotate(-10deg);
}

.student-moments-floating figure:nth-child(2) {
    top: 70px;
    right: -230px;
    transform: rotate(10deg);
    animation-delay: 1s;
}

.student-moments-floating figure:nth-child(3) {
    top: 430px;
    left: -240px;
    transform: rotate(-8deg);
    animation-delay: 2s;
}

.student-moments-floating figure:nth-child(4) {
    top: 430px;
    right: -240px;
    transform: rotate(8deg);
    animation-delay: 3s;
}

.student-moments-floating figure:nth-child(5) {
    bottom: -90px;
    left: 50%;
    transform: translateX(-50%) rotate(3deg);
    animation-delay: 4s;
}

@keyframes floatMemory {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -28px; }
}
/* click/hover: photos run away + come back */

.student-moments-floating figure {
  width: 185px !important;
  padding: 12px 12px 42px !important;
  transition: transform .45s ease, left .45s ease, right .45s ease, top .45s ease !important;
  cursor: pointer;
}

.student-moments-floating img {
  height: 145px !important;
}

.student-moments-floating figure:hover,
.student-moments-floating figure:active {
  z-index: 999 !important;
}

.student-moments-floating figure:nth-child(1):hover,
.student-moments-floating figure:nth-child(1):active {
  transform: translate(-90px, -60px) rotate(-18deg) scale(1.08) !important;
}

.student-moments-floating figure:nth-child(2):hover,
.student-moments-floating figure:nth-child(2):active {
  transform: translate(90px, -60px) rotate(18deg) scale(1.08) !important;
}

.student-moments-floating figure:nth-child(3):hover,
.student-moments-floating figure:nth-child(3):active {
  transform: translate(-95px, 45px) rotate(-16deg) scale(1.08) !important;
}

.student-moments-floating figure:nth-child(4):hover,
.student-moments-floating figure:nth-child(4):active {
  transform: translate(95px, 45px) rotate(16deg) scale(1.08) !important;
}

.student-moments-floating figure:nth-child(5):hover,
.student-moments-floating figure:nth-child(5):active {
  transform: translateX(-50%) translateY(85px) rotate(8deg) scale(1.08) !important;
}
/* FINAL POSITION FIX: keep photos inside frame + stagger them */

.student-moments-floating figure:nth-child(1) {
  top: 70px !important;
  left: -90px !important;
}

.student-moments-floating figure:nth-child(2) {
  top: 70px !important;
  right: -90px !important;
}

.student-moments-floating figure:nth-child(3) {
  top: 620px !important;
  left: -90px !important;
}

.student-moments-floating figure:nth-child(4) {
  top: 620px !important;
  right: -90px !important;
}

.student-moments-floating figure:nth-child(5) {
  bottom: -120px !important;
  left: 50% !important;
}
/* ===========================
   LEARNING JOURNEY
===========================*/

.learning-header{
text-align:center;
margin-bottom:80px;
}

.learning-header h2{

font-size:70px;
color:white;
margin-bottom:5px;

}

.learning-header h3{

font-size:34px;
font-family:"Brush Script MT",cursive;
color:#8cecff;
font-weight:400;

}

.journey-section{

display:grid;
grid-template-columns:340px 1fr;
gap:55px;

align-items:center;

margin-bottom:120px;

}

.journey-section.reverse{

grid-template-columns:1fr 340px;

}

.journey-section.reverse .journey-photo{

order:2;

}

.journey-section.reverse .journey-text{

order:1;

}

.journey-photo{

background:white;

padding:15px;

border-radius:28px;

transform:rotate(-3deg);

box-shadow:

0 0 35px rgba(0,213,255,.35),

0 15px 40px rgba(0,0,0,.35);

}

.journey-section.reverse .journey-photo{

transform:rotate(3deg);

}

.journey-photo img{

width:100%;

height:400px;

object-fit:cover;

border-radius:18px;

display:block;

}

.journey-text h2{

font-size:46px;

margin-bottom:25px;

color:white;

}

.journey-text p{

line-height:2;

font-size:18px;

color:#d7e7ff;

}
/* FAIRYTALE PROFESSIONAL DASHBOARD */

.fairy-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.fairy-dashboard-card {
  min-height: 285px;
  padding: 30px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 15%, rgba(255,255,255,.14), transparent 28%),
    radial-gradient(circle at 85% 90%, rgba(255,116,255,.13), transparent 30%),
    linear-gradient(145deg, rgba(5,18,65,.92), rgba(2,8,38,.96));
  border: 1px solid rgba(89,202,255,.48);
  box-shadow:
    0 0 28px rgba(0,213,255,.24),
    inset 0 0 28px rgba(255,255,255,.04);
  transition: .35s ease;
}

.fairy-dashboard-card::before {
  content: "✦";
  position: absolute;
  top: 18px;
  right: 22px;
  color: #8cecff;
  text-shadow: 0 0 16px rgba(0,213,255,.9);
  opacity: .75;
}

.fairy-dashboard-card:hover {
  transform: translateY(-10px) rotate(-1deg);
  box-shadow:
    0 0 38px rgba(0,213,255,.45),
    0 0 90px rgba(255,116,255,.18);
}

.fairy-card-icon {
  font-size: 2.3rem;
  margin-bottom: 18px;
}

.fairy-dashboard-card h3 {
  font-size: 1.45rem;
  color: white;
  margin-bottom: 14px;
}

.fairy-dashboard-card p {
  color: #b9d4ff;
  line-height: 1.7;
  font-size: .98rem;
}

.fairy-card-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #187fff, #00bce9);
  color: white;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 0 22px rgba(0,213,255,.42);
  transition: .25s ease;
}

.fairy-card-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 34px rgba(0,213,255,.75);
}

@media (max-width: 1100px) {
  .fairy-dashboard-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .fairy-dashboard-grid {
    grid-template-columns: 1fr;
  }
}
/* HAMBURGER SIDE MENU */

.site-menu {
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: 2000;
}

.site-menu .logo-brand {
  min-width: 0;
  margin-bottom: 14px;
}

.site-menu .logo-name {
  display: none !important;
}

.hamburger {
  width: 62px;
  height: 54px;
  border-radius: 18px;
  border: 1px solid rgba(89,202,255,.45);
  background: rgba(2, 13, 52, .86);
  box-shadow: 0 0 24px rgba(0,213,255,.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  padding: 0 14px;
  cursor: pointer;
}

.hamburger span {
  height: 4px;
  width: 100%;
  border-radius: 99px;
  background: white;
  box-shadow: 0 0 12px rgba(0,213,255,.8);
}

.side-menu {
  position: fixed;
  top: 24px;
  left: 110px;
  width: 340px;
  max-height: 88vh;
  overflow-y: auto;
  padding: 24px;
  border-radius: 28px;
  background: rgba(2, 10, 42, .94);
  border: 1px solid rgba(89,202,255,.45);
  box-shadow: 0 0 35px rgba(0,213,255,.35);
  backdrop-filter: blur(18px);
  transform: translateX(-30px);
  opacity: 0;
  pointer-events: none;
  transition: .3s ease;
}

.side-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.side-menu a,
.menu-dropdown-btn {
  width: 100%;
  display: block;
  text-align: left;
  text-decoration: none;
  color: white;
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 14px 16px;
  margin-bottom: 8px;
  border-radius: 16px;
  border: 1px solid rgba(89,202,255,.18);
  background: rgba(255,255,255,.04);
  cursor: pointer;
}

.side-menu a:hover,
.menu-dropdown-btn:hover,
.menu-dropdown-btn.active {
  background: linear-gradient(135deg, #187fff, #00bce9);
  box-shadow: 0 0 22px rgba(0,213,255,.5);
}

.menu-dropdown {
  display: none;
  padding-left: 14px;
  margin-bottom: 12px;
}

.menu-dropdown.open {
  display: block;
}

.menu-dropdown a {
  font-size: 1rem;
  padding: 10px 14px;
  color: #cfe7ff;
}
.side-menu {
  display: block !important;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-30px);
}

.side-menu.open {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateX(0) !important;
}

.menu-dropdown {
  display: none;
}

.menu-dropdown.open {
  display: block !important;
}
.side-menu {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateX(-30px) !important;
}

.side-menu.open {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateX(0) !important;
}

.menu-dropdown {
  display: none !important;
}

.menu-dropdown.open {
  display: block !important;
}
/* TEACHING EVALUATION PLAYGROUND */

.evaluation-playground {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.evaluation-play-card {
  min-height: 230px;
  padding: 28px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.16), transparent 30%),
    linear-gradient(145deg, rgba(5,18,65,.92), rgba(2,8,38,.96));
  border: 1px solid rgba(89,202,255,.48);
  box-shadow: 0 0 30px rgba(0,213,255,.24);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: .3s ease;
}

.evaluation-play-card:hover {
  transform: translateY(-10px) rotate(-1deg);
  box-shadow: 0 0 42px rgba(0,213,255,.45);
}

.evaluation-play-card h3 {
  color: white;
  font-size: 1.45rem;
}

@media(max-width: 1000px) {
  .evaluation-playground {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 650px) {
  .evaluation-playground {
    grid-template-columns: 1fr;
  }
}
.artifact-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #187fff, #00bce9);
  color: white;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 0 22px rgba(0,213,255,.42);
}
/* ==================================
   LIGHT / DARK THEME TOGGLE
================================== */

.theme-toggle {
  width: 62px;
  height: 54px;
  margin-top: 12px;
  padding: 0;
  display: grid;
  place-items: center;

  border: 1px solid rgba(89, 202, 255, 0.5);
  border-radius: 18px;
  background: rgba(2, 13, 52, 0.92);
  color: #ffffff;

  font-family: inherit;
  font-size: 1.45rem;
  line-height: 1;

  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;

  box-shadow:
    0 0 20px rgba(0, 213, 255, 0.38),
    inset 0 0 12px rgba(255, 255, 255, 0.05);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.theme-toggle:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 30px rgba(0, 213, 255, 0.68),
    inset 0 0 12px rgba(255, 255, 255, 0.08);
}

.theme-toggle span {
  display: block;
  transform: translateY(-1px);
}

/* LIGHT MODE */

body.light-mode {
  --white: #102047;
  --muted: #405f87;
  --glass: rgba(255, 255, 255, 0.88);
  --border: rgba(22, 111, 190, 0.28);
  --shadow:
    0 12px 32px rgba(38, 91, 145, 0.14),
    0 0 36px rgba(54, 152, 255, 0.1);

  color: #102047 !important;
  background:
    linear-gradient(
      180deg,
      #f9fcff 0%,
      #eaf4ff 50%,
      #dcecff 100%
    ) !important;
}

body.light-mode::before {
  opacity: 0.1;
}

body.light-mode .theme-toggle,
body.light-mode .hamburger {
  background: rgba(255, 255, 255, 0.94) !important;
  border-color: rgba(22, 111, 190, 0.34) !important;
}

body.light-mode .hamburger span {
  background: #12345c !important;
  box-shadow: 0 0 10px rgba(19, 140, 255, 0.4) !important;
}

body.light-mode .theme-toggle {
  color: #12345c !important;
}

body.light-mode .side-menu {
  background: rgba(247, 251, 255, 0.97) !important;
}

body.light-mode .side-menu a,
body.light-mode .menu-dropdown-btn {
  color: #102047 !important;
  background: rgba(19, 140, 255, 0.06) !important;
}

body.light-mode .side-menu a:hover,
body.light-mode .menu-dropdown-btn:hover {
  color: #ffffff !important;
  background: linear-gradient(135deg, #187fff, #00bce9) !important;
}

body.light-mode .identity-card,
body.light-mode .data-card,
body.light-mode .artifact-card,
body.light-mode .timeline-item,
body.light-mode .evaluation-play-card,
body.light-mode .fairy-dashboard-card,
body.light-mode .about-panel,
body.light-mode .education-card,
body.light-mode .teaching-main-card,
body.light-mode .journey-text {
  color: #102047 !important;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.96),
      rgba(227, 241, 255, 0.92)
    ) !important;
  border-color: rgba(22, 111, 190, 0.25) !important;
}

body.light-mode h1,
body.light-mode h2,
body.light-mode h3,
body.light-mode h4 {
  color: #102047;
}

body.light-mode p,
body.light-mode .artifact-card p,
body.light-mode .identity-card p,
body.light-mode .data-card p,
body.light-mode .timeline-item p,
body.light-mode .philosophy-content p {
  color: #405f87;
}
/* LIGHT MODE TEXT FIXES ONLY */

body.light-mode .eyebrow,
body.light-mode .about-subtitle,
body.light-mode .education-meta,
body.light-mode .education-gpa,
body.light-mode .quote-author,
body.light-mode .philosophy-quote,
body.light-mode .philosophy-question,
body.light-mode .tagline,
body.light-mode .subtagline {
  color: #274d78 !important;
}

body.light-mode .section-heading h2,
body.light-mode .learning-header h2,
body.light-mode .learning-header h3,
body.light-mode .about-main-title,
body.light-mode .education-content h3,
body.light-mode .education-content h4,
body.light-mode .journey-text h2,
body.light-mode .philosophy-text h4 {
  color: #102047 !important;
}

body.light-mode .about-panel p,
body.light-mode .journey-text p,
body.light-mode .education-content p,
body.light-mode .education-content li,
body.light-mode .philosophy-text p,
body.light-mode .contact-info p,
body.light-mode .contact-form label {
  color: #3f5f86 !important;
}

body.light-mode strong,
body.light-mode em {
  color: #163d69;
}

body.light-mode input,
body.light-mode textarea {
  color: #102047 !important;
  background: rgba(255, 255, 255, 0.82) !important;
}

body.light-mode input::placeholder,
body.light-mode textarea::placeholder {
  color: #7088a5 !important;
}

body.light-mode .btn.ghost {
  color: #102047 !important;
  background: rgba(19, 140, 255, 0.08) !important;
}

body.light-mode .btn.primary,
body.light-mode .artifact-btn,
body.light-mode .fairy-card-btn {
  color: #ffffff !important;
}
/* ==================================
   WARM GOLD LIGHT MODE
================================== */

body.light-mode {
  --white: #2d2418;
  --muted: #665840;
  --glass: rgba(255, 244, 210, 0.88);
  --border: rgba(116, 91, 39, 0.34);
  --shadow:
    0 14px 34px rgba(89, 66, 22, 0.18),
    0 0 42px rgba(212, 162, 54, 0.16);

  color: #2d2418 !important;

  background:
    radial-gradient(circle at 15% 15%, rgba(255, 203, 74, 0.34), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(88, 91, 43, 0.2), transparent 30%),
    linear-gradient(
      180deg,
      #f4c04d 0%,
      #d39a2f 30%,
      #a77d36 62%,
      #5d5b34 100%
    ) !important;
}

body.light-mode::before {
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(73, 57, 25, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73, 57, 25, 0.12) 1px, transparent 1px);
}

/* Cards and panels */

body.light-mode .identity-card,
body.light-mode .data-card,
body.light-mode .artifact-card,
body.light-mode .timeline-item,
body.light-mode .evaluation-play-card,
body.light-mode .fairy-dashboard-card,
body.light-mode .about-panel,
body.light-mode .education-card,
body.light-mode .teaching-main-card,
body.light-mode .philosophy-layout,
body.light-mode .journey-text,
body.light-mode .contact-form,
body.light-mode .contact-info {
  background:
    linear-gradient(
      145deg,
      rgba(255, 244, 205, 0.94),
      rgba(224, 188, 105, 0.88)
    ) !important;

  color: #2d2418 !important;
  border-color: rgba(97, 73, 28, 0.35) !important;

  box-shadow:
    0 14px 28px rgba(74, 52, 15, 0.18),
    inset 0 0 20px rgba(255, 255, 255, 0.22) !important;
}

/* Teaching Philosophy visibility fix */

body.light-mode #teaching-philosophy,
body.light-mode #teaching-philosophy .philosophy-text,
body.light-mode #teaching-philosophy .philosophy-content,
body.light-mode #teaching-philosophy .teaching-main-card {
  color: #2d2418 !important;
}

body.light-mode #teaching-philosophy h2,
body.light-mode #teaching-philosophy h3,
body.light-mode #teaching-philosophy h4,
body.light-mode #teaching-philosophy .philosophy-quote {
  color: #2b2114 !important;
}

body.light-mode #teaching-philosophy p,
body.light-mode #teaching-philosophy .quote-author,
body.light-mode #teaching-philosophy .philosophy-question {
  color: #59472e !important;
}

body.light-mode #teaching-philosophy strong,
body.light-mode #teaching-philosophy em {
  color: #3f2f18 !important;
}

/* General text */

body.light-mode .section-heading h2,
body.light-mode .learning-header h2,
body.light-mode .learning-header h3,
body.light-mode .about-main-title,
body.light-mode .journey-text h2,
body.light-mode .education-content h3,
body.light-mode .education-content h4 {
  color: #2d2418 !important;
}

body.light-mode p,
body.light-mode li,
body.light-mode label,
body.light-mode .tagline,
body.light-mode .subtagline,
body.light-mode .eyebrow {
  color: #604d31 !important;
}

/* Menu and controls */

body.light-mode .side-menu {
  background: rgba(66, 61, 35, 0.97) !important;
  border-color: rgba(255, 209, 93, 0.38) !important;
}

body.light-mode .side-menu a,
body.light-mode .menu-dropdown-btn {
  color: #fff3cc !important;
  background: rgba(255, 217, 114, 0.08) !important;
}

body.light-mode .hamburger,
body.light-mode .theme-toggle {
  background:
    linear-gradient(145deg, #544f2e, #252716) !important;

  border-color: rgba(255, 213, 93, 0.48) !important;
  color: #fff1b5 !important;
}

body.light-mode .hamburger span {
  background: #fff1b5 !important;
}

/* Buttons */

body.light-mode .btn.primary,
body.light-mode .artifact-btn,
body.light-mode .fairy-card-btn {
  color: #fff8dc !important;
  background:
    linear-gradient(135deg, #8a681e, #d49b2e) !important;

  box-shadow: 0 0 20px rgba(184, 126, 26, 0.38) !important;
}

body.light-mode .btn.ghost {
  color: #3b2d18 !important;
  background: rgba(255, 243, 198, 0.46) !important;
}

/* Inputs */

body.light-mode input,
body.light-mode textarea {
  color: #2d2418 !important;
  background: rgba(255, 247, 218, 0.88) !important;
  border-color: rgba(92, 68, 26, 0.32) !important;
}

body.light-mode input::placeholder,
body.light-mode textarea::placeholder {
  color: #806b4c !important;
}


/* =====================================================
   HERO PORTRAIT — BREAK OUT OF FRAME
   ===================================================== */

.portrait-panel {
  position: relative;
  overflow: visible !important;
  min-height: 520px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.portrait-frame {
  position: relative !important;
  width: 340px !important;
  height: 390px !important;
  overflow: visible !important;
  margin-top: 100px;

  background:
    linear-gradient(
      145deg,
      rgba(19, 140, 255, 0.25),
      rgba(0, 213, 255, 0.08)
    ) !important;

  border: 1px solid rgba(0, 213, 255, 0.8) !important;
  border-radius: 38px !important;

  box-shadow:
    0 0 25px rgba(0, 213, 255, 0.45),
    0 0 70px rgba(19, 140, 255, 0.28) !important;
}

/* Your transparent PNG */
.portrait-frame #portraitImage {
  position: absolute !important;

  /* Wider and taller than the frame */
  width: 430px !important;
  height: auto !important;

  /* Makes your head/body come outside the top */
  bottom: 0 !important;
  top: auto !important;

  /* Centers you over the frame */
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;

  object-fit: contain !important;
  object-position: center bottom !important;

  border-radius: 0 !important;
  z-index: 5 !important;

  filter:
    drop-shadow(0 0 18px rgba(0, 213, 255, 0.35))
    saturate(1.05)
    contrast(1.03) !important;
}

/* Keep decorative overlay behind your body */
.portrait-frame::after {
  z-index: 1 !important;
}

/* Keep your name visible */
.portrait-frame::before {
  z-index: 10 !important;
}
/* =========================================
   REAL POP-OUT PORTRAIT EFFECT
========================================= */

.portrait-panel {
  position: relative;
  overflow: visible !important;
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.portrait-frame {
  position: relative !important;
  width: 390px !important;
  height: 410px !important;
  margin-top: 100px !important;
  overflow: visible !important;

  /* Background only — border is created separately below */
  border: none !important;
  border-radius: 38px !important;

  background:
    radial-gradient(
      circle at 50% 30%,
      rgba(0, 213, 255, 0.18),
      transparent 45%
    ),
    linear-gradient(
      145deg,
      rgba(19, 140, 255, 0.22),
      rgba(1, 10, 45, 0.88)
    ) !important;

  box-shadow:
    0 0 30px rgba(0, 213, 255, 0.25) !important;
}

/* Hide old placeholder */

.portrait-empty {
  display: none !important;
}

/* YOUR PHOTO */

.portrait-frame #portraitImage {
  display: block !important;
  position: absolute !important;

  width: 390px !important;
  height: auto !important;
  max-width: none !important;

  left: 50% !important;
  bottom: -2px !important;
  top: auto !important;

  transform: translateX(-50%) !important;

  object-fit: contain !important;
  border-radius: 0 !important;

  z-index: 3 !important;

  filter:
    drop-shadow(0 -8px 18px rgba(0, 213, 255, 0.18))
    saturate(1.03)
    contrast(1.03) !important;
}

/* THE FRAME BORDER
   This sits IN FRONT of your portrait */

.portrait-frame::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;

  border: 2px solid rgba(0, 213, 255, 0.85) !important;
  border-radius: 38px !important;

  box-shadow:
    0 0 16px rgba(0, 213, 255, 0.55),
    inset 0 0 16px rgba(0, 213, 255, 0.12) !important;

  z-index: 6 !important;
  pointer-events: none !important;
}

/* Hide the TOP part of the border behind your head.
   This makes your head visually break through it. */

.portrait-frame::before {
  content: "" !important;
  position: absolute !important;

  width: 230px !important;
  height: 20px !important;

  top: -5px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;

  background: #020b2c !important;

  z-index: 7 !important;
}

/* NAME — separate floating label */

.portrait-panel::after {
  content: "Shantona Mir";
  position: absolute;

  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);

  z-index: 10;

  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 1.5rem;
  color: white;
  white-space: nowrap;

  text-shadow:
    0 0 8px white,
    0 0 18px rgba(0, 213, 255, 0.9);
}
/* FIX THE ACTUAL PORTRAIT POP-OUT */

.portrait-frame::before {
  display: none !important;
  content: none !important;
}

.portrait-frame {
  overflow: visible !important;
}

.portrait-frame #portraitImage {
  width: 410px !important;
  height: auto !important;

  left: 50% !important;
  bottom: 0 !important;

  transform:
  translateX(-50%)
  translateY(-55px);

z-index: 5 !important;
}
/* ACTUAL POP-OUT PORTRAIT */

.portrait-panel {
  position: relative;
  overflow: visible !important;
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.portrait-frame {
  position: relative !important;
  width: 390px !important;
  height: 410px !important;
  overflow: visible !important;
  border-radius: 38px !important;
}

.portrait-empty {
  display: none !important;
}

.portrait-frame #portraitImage {
  display: block !important;
  position: absolute !important;

  width: 430px !important;
  height: auto !important;
  max-width: none !important;

  left: 50% !important;
  bottom: -2px !important;
  top: auto !important;

  transform: translateX(-50%) translateY(-72px) !important;

  object-fit: contain !important;
  border-radius: 0 !important;
  z-index: 5 !important;
}

.portrait-frame::after {
  z-index: 6 !important;
  pointer-events: none;
}

.portrait-frame::before {
  content: "Shantona Mir" !important;
  display: block !important;
  z-index: 10 !important;
}
/* REMOVE THE EXTRA NAME/BAR ACROSS THE FACE */

.portrait-frame::before {
  content: none !important;
  display: none !important;
}

/* KEEP ONE NAME AT THE BOTTOM */

.portrait-panel::after {
  content: "Shantona Mir";
  position: absolute;
  left: 50%;
  bottom: 35px;
  transform: translateX(-50%);

  z-index: 20;

  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 1.5rem;
  color: white;
  white-space: nowrap;

  text-shadow:
    0 0 8px white,
    0 0 18px rgba(0, 213, 255, 0.9);
}
.portrait-frame::before {
  content: none !important;
  display: none !important;
}
/* PUT THE FRAME BEHIND THE PORTRAIT */

.portrait-frame {
  border: none !important;
}

.portrait-frame::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;

  border: 2px solid rgba(0, 213, 255, 0.9) !important;
  border-radius: 38px !important;

  box-shadow:
    0 0 16px rgba(0, 213, 255, 0.65),
    inset 0 0 16px rgba(0, 213, 255, 0.12) !important;

  z-index: 1 !important;
  pointer-events: none !important;
}

.portrait-frame #portraitImage {
  z-index: 5 !important;
}

.portrait-frame::before {
  content: none !important;
  display: none !important;
}
.portrait-frame #portraitImage {
  width: 470px !important;
  bottom: 0 !important;

  transform:
    translateX(-50%)
    translateY(0) !important;
}
/* MAKE THE WHOLE PORTRAIT + FRAME SMALLER */

.portrait-frame {
  width: 330px !important;
  height: 350px !important;
}

.portrait-frame #portraitImage {
  width: 380px !important;
  height: auto !important;

  left: 50% !important;
  bottom: 0 !important;

  transform:
    translateX(-50%)
    translateY(0) !important;
}
.site-footer {
  text-align: center;
  padding: 40px 20px 25px;
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-top: 1px solid rgba(89, 202, 255, 0.15);
  margin-top: 60px;
}

.site-footer p {
  margin: 0;
}