:root{
  --bg: #0b1020;
  --card: #0f1733;
  --text: #0b1020;
  --muted: #5b647a;
  --light: #f5f7ff;
  --white: #ffffff;
  --accent: #2b6bff;
  --accent2: #22c55e;
  --shadow: 0 10px 30px rgba(0,0,0,0.12);
  --radius: 14px;
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: #111827;
  background: #ffffff;
}

.container{
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* =========================
   HEADER
   ========================= */
.header{
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  background: rgba(10, 14, 26, 0.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 0;
}

.logo-area{
  display:flex;
  align-items:center;
  gap: 10px;
  color: var(--white);
}

.logo{ height: 42px; width:auto; }

.logo-text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.school-name{ font-weight: 800; letter-spacing: 0.5px; }
.school-tagline{ font-size: 12px; opacity: 0.85; }

.nav{
  display:flex;
  align-items:center;
  gap: 18px;
}


.nav a{
  color: rgba(255,255,255,0.9);
  text-decoration:none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 10px;
  transition: 0.2s ease;
}

.nav a:hover{
  background: rgba(255,255,255,0.08);
}

.nav-cta{
  background: rgba(43,107,255,0.95);
  color: white !important;
}

.nav-cta:hover{ background: rgba(43,107,255,1); }

/* mobile */
.menu-btn{
  display:none;
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 18px;
}

/* =========================
   HERO
   ========================= */
.hero{
  height: 95vh;
  background: url("images/hero.webp") center/cover no-repeat;
  background-color: #0b1020; /* instant paint */
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 72px;
}

@media (max-width: 768px){
  .hero{
    height: auto;        /* don’t force 95vh on tall phones */
    min-height: 88vh;    /* still keeps hero big */
    background-position: top center; /* show building/students */
    padding-top: 92px;   /* space for fixed header */
    padding-bottom: 36px;
  }
}

.hero-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(
    120deg,
    rgba(4, 8, 20, 0.85),
    rgba(8, 12, 24, 0.55)
  );
}

.hero-content{
  position:relative;
  color: white;
  text-align:left;
  padding: 28px 0;
}

.hero-badge{
  display:inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 13px;
  margin-bottom: 12px;
}

.hero-content h1{
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1.15;
  max-width: 900px;
}

.hero-content p{
  margin-top: 12px;
  font-size: 16px;
  max-width: 650px;
  color: rgba(255,255,255,0.9);
}

.hero-actions{
  margin-top: 18px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn{
  display:inline-block;
  text-decoration:none;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid transparent;
  transition: 0.2s ease;
  cursor:pointer;
}

.btn.primary{
  background: var(--accent);
  color: white;
  box-shadow: 0 12px 24px rgba(43,107,255,0.25);
}

.btn.primary:hover{ transform: translateY(-1px); }

.btn.ghost{
  background: rgba(255,255,255,0.1);
  color: white;
  border-color: rgba(255,255,255,0.18);
}

.btn.ghost:hover{ background: rgba(255,255,255,0.14); }

.hero-stats{
  margin-top: 26px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 820px;
}

.stat{
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 14px;
}

.stat h3{ font-size: 16px; margin-bottom: 4px; }
.stat p{ font-size: 13px; margin: 0; color: rgba(255,255,255,0.86); }

/* =========================
   GLOBAL SECTIONS + TITLES
   ========================= */
.section,
.section-alt{
  padding: 90px 0;
}

.section-title{
  text-align:center;
  max-width: 780px;
  margin: 0 auto 26px auto;
}

.section-title h2{
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}

.section-title p{
  font-size: 16px;
  line-height: 1.75;
  color: rgba(11,16,32,0.72);
}

/* Light background for all "section-alt" blocks */
.section-alt{
  background:
    radial-gradient(700px 260px at 10% 0%, rgba(43,107,255,0.08), transparent 60%),
    radial-gradient(700px 260px at 90% 20%, rgba(168,85,247,0.06), transparent 60%),
    #f7f9ff;
}

/* Section separators */
.section,
.section-alt,
.about-pro{
  position: relative;
}

.section::before,
.section-alt::before,
.about-pro::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(15,23,51,0.06);
}

/* =========================
   SECTION BACKGROUND SYSTEM
   ========================= */
.about-pro{
  padding: 85px 0;
  background: linear-gradient(180deg, #8aa1eb, #f358d2);
}

#academics{
  background: linear-gradient(180deg, #f4f7ff, #ffffff);
}

#principal{
  background: linear-gradient(180deg, #fff7ed, #ffffff);
}

#admissions{
  background: linear-gradient(180deg, #f0fdf4, #ffffff);
}

#gallery{
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

#news{
  background: linear-gradient(180deg, #faf5ff, #ffffff);
}

#contact{
  background: linear-gradient(180deg, #f5f9ff, #ffffff);
}

/* =========================
   GRIDS + GENERIC CARDS
   ========================= */
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Used in Admissions (base), then themed by #admissions rules */
.feature-card{
  background: rgba(255,255,255,0.92);
  border-radius: 18px;
  padding: 26px 24px;
  border: 1px solid rgba(15,23,51,0.10);
  box-shadow: 0 18px 40px rgba(15,23,51,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(15,23,51,0.18);
}

.feature-card h3{
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.2px;
  margin-bottom: 10px;
}

/* Lists */
.clean-list{
  list-style: none;
  padding-left: 0;
}

.clean-list li{
  margin: 9px 0;
  padding-left: 16px;
  position: relative;
  color: rgba(11,16,32,0.82);
  font-weight: 700;
  font-size: 14.5px;
  line-height: 1.6;
}

.clean-list li::before{
  content:"•";
  position:absolute;
  left:0;
  color: var(--accent);
  font-weight: 900;
}

.clean-steps{
  padding-left: 18px;
  color: rgba(11,16,32,0.82);
  font-weight: 700;
}

.clean-steps li{
  margin: 9px 0;
  font-size: 14.5px;
  line-height: 1.6;
}

/* =========================
   ABOUT PRO (Final)
   ========================= */
.about-pro .section-title h2{
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.3px;
  color: #0b1020;
}

.about-pro .section-title p{
  font-size: 16px;
  line-height: 1.7;
  color: rgba(11, 16, 32, 0.75);
}

.about-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.about-card{
  position: relative;
  border-radius: 18px;
  padding: 26px 24px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow:
    0 18px 40px rgba(15, 23, 51, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.6);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.about-card:hover{
  transform: translateY(-4px);
  box-shadow:
    0 24px 54px rgba(15, 23, 51, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.65);
}

.about-icon{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 700;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(15, 23, 51, 0.12);
  box-shadow: 0 10px 20px rgba(15,23,51,0.12);
}

.about-card h3{
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.2px;
  margin: 14px 0 10px;
  color: #0b1020;
}

.about-card p{
  color: rgba(11,16,32,0.75);
  font-size: 15px;
  line-height: 1.75;
}

.about-line{
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  border-radius: 18px 18px 0 0;
  opacity: 0.95;
}

.about-mission{
  background: linear-gradient(180deg, rgba(43,107,255,0.16), rgba(255,255,255,0.92));
}
.about-mission .about-line{ background: #2b6bff; }
.about-mission .about-icon{ background: rgba(43,107,255,0.10); }

.about-vision{
  background: linear-gradient(180deg, rgba(168,85,247,0.16), rgba(255,255,255,0.92));
}
.about-vision .about-line{ background: #a855f7; }
.about-vision .about-icon{ background: rgba(168,85,247,0.10); }

.about-values{
  background: linear-gradient(180deg, rgba(34,197,94,0.16), rgba(255,255,255,0.92));
}
.about-values .about-line{ background: #22c55e; }
.about-values .about-icon{ background: rgba(34,197,94,0.10); }

.about-list{
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.about-list li{
  margin: 9px 0;
  padding-left: 20px;
  position: relative;
  color: rgba(11,16,32,0.85);
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1.6;
}

.about-list li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
  opacity: 0.9;
}

.about-mission .about-list li::before{ color: #2b6bff; }
.about-vision .about-list li::before{ color: #a855f7; }
.about-values .about-list li::before{ color: #22c55e; }

/* =========================
   ACADEMICS (Pathways + Subjects + Combos)
   ========================= */
.pathways{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 14px;
}

.pathway{
  position: relative;
  border-radius: 18px;
  padding: 26px 24px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15, 23, 51, 0.10);
  box-shadow: 0 18px 40px rgba(15, 23, 51, 0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  overflow: hidden;
}

.pathway:hover{
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(15, 23, 51, 0.18);
}

.pathway::before{
  content:"";
  position:absolute;
  inset: 0 0 auto 0;
  height: 6px;
  border-radius: 18px 18px 0 0;
  opacity: .95;
}

.pathway:nth-child(1)::before{ background:#2b6bff; }
.pathway:nth-child(2)::before{ background:#a855f7; }

.pathway h3{
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.2px;
  margin-bottom: 8px;
}

.pathway-desc{
  font-size: 15px;
  line-height: 1.75;
  color: rgba(11,16,32,0.72);
}

.pathway ul{
  margin-top: 12px;
  padding-left: 18px;
  color: rgba(11,16,32,0.86);
  font-weight: 700;
}

.note{
  margin-top: 22px;
  background: rgba(43,107,255,0.10);
  border: 1px solid rgba(43,107,255,0.22);
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 14.5px;
  color: rgba(11,16,32,0.86);
}

/* Subjects panel + chips */
.subjects-panel{
  margin: 18px 0 22px;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15,23,51,0.10);
  box-shadow: 0 18px 40px rgba(15,23,51,0.12);
}

.subjects-panel h3{
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.2px;
  margin-bottom: 6px;
}

.subjects-panel .mini{
  color: rgba(11,16,32,0.72);
  font-size: 15px;
  margin-bottom: 14px;
}

.subjects-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.subjects-chips span{
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 800;
  background: rgba(43,107,255,0.10);
  border: 1px solid rgba(43,107,255,0.20);
  color: rgba(11,16,32,0.86);
}

.subhead{
  margin-top: 14px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.1px;
  color: rgba(11,16,32,0.88);
}

/* 2-column grid combinations */
.combo-list{
  margin-top: 12px;
  padding-left: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.combo-list li{
  margin: 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(15,23,51,0.10);
  box-shadow: 0 10px 24px rgba(15,23,51,0.10);
  font-weight: 800;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(11,16,32,0.84);
  transition: transform .2s ease, box-shadow .2s ease;
}

.combo-list li:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(15,23,51,0.14);
}

/* =========================
   PRINCIPAL
   ========================= */
.principal-wrap{
  display:grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.principal-card{
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow:
    0 18px 42px rgba(15, 23, 51, 0.14),
    inset 0 1px 0 rgba(255,255,255,0.6);
}

.principal-card h2{
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}

.principal-card .lead{
  font-size: 16px;
  font-weight: 800;
  color: rgba(11,16,32,0.88);
}

.principal-card p{
  font-size: 15px;
  line-height: 1.8;
  color: rgba(11,16,32,0.74);
}

.signature{
  margin-top: 14px;
  color: rgba(11,16,32,0.72);
}

.principal-photo{
  background: white;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 18px 42px rgba(15, 23, 51, 0.14);
}

.principal-photo img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  transform: scale(1.02);
}

/* =========================
   ADMISSIONS (Themed feature-cards)
   ========================= */
#admissions .feature-card::before{
  content:"";
  position:absolute;
  inset: 0 0 auto 0;
  height: 6px;
  border-radius: 18px 18px 0 0;
}

#admissions .feature-card:nth-child(1){
  background: linear-gradient(180deg, rgba(43,107,255,0.10), rgba(255,255,255,0.92));
}
#admissions .feature-card:nth-child(1)::before{ background:#2b6bff; }

#admissions .feature-card:nth-child(2){
  background: linear-gradient(180deg, rgba(168,85,247,0.10), rgba(255,255,255,0.92));
}
#admissions .feature-card:nth-child(2)::before{ background:#a855f7; }

#admissions .feature-card:nth-child(3){
  background: linear-gradient(180deg, rgba(34,197,94,0.10), rgba(255,255,255,0.92));
}
#admissions .feature-card:nth-child(3)::before{ background:#22c55e; }

.cta-strip{
  margin-top: 22px;
  background: rgba(11,16,32,0.92);
  color: white;
  border-radius: 18px;
  padding: 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 44px rgba(15, 23, 51, 0.18);
}

.cta-strip p{ color: rgba(255,255,255,0.85); }

/* =========================
   GALLERY
   ========================= */
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-item{
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 18px 44px rgba(15,23,51,0.12);
  background: white;
  transform: translateZ(0);
}

.gallery-item img{
  width:100%;
  height: 240px;
  object-fit: cover;
  display:block;
  transition: 0.25s ease;
  filter: saturate(1.06) contrast(1.03);
}

.gallery-item:hover img{
  transform: scale(1.06);
}

/* =========================
   NEWS
   ========================= */
.news-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.news-card{
  border-radius: 18px;
  padding: 22px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15,23,51,0.10);
  box-shadow: 0 18px 40px rgba(15,23,51,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
}

.news-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(15,23,51,0.18);
}

.news-card h3{
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.2px;
  margin-bottom: 8px;
}

.news-card p{
  font-size: 15px;
  line-height: 1.75;
  color: rgba(11,16,32,0.72);
}

.pill{
  display:inline-block;
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  border: 1px solid rgba(15,23,51,0.10);
}

/* auto-pill colors per card position */
.news-card:nth-child(1) .pill{
  background: rgba(43,107,255,0.14);
  color: #1e40af;
}
.news-card:nth-child(2) .pill{
  background: rgba(168,85,247,0.14);
  color: #6d28d9;
}
.news-card:nth-child(3) .pill{
  background: rgba(34,197,94,0.14);
  color: #166534;
}

.news-meta{
  margin-top: 12px;
  font-size: 12px;
  color: rgba(11,16,32,0.60);
}

/* =========================
   CONTACT
   ========================= */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items:start;
}

.contact-card,
.contact-form{
  border-radius: 18px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15,23,51,0.10);
  box-shadow: 0 18px 40px rgba(15,23,51,0.12);
  padding: 22px;
}

.contact-card h3,
.contact-form h3{
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.2px;
  margin-bottom: 10px;
}

.contact-card p{
  color: rgba(11,16,32,0.78);
  font-size: 14.8px;
  line-height: 1.75;
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,51,0.14);
  background: rgba(255,255,255,0.85);
  outline: none;
  font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color: rgba(43,107,255,0.65);
  box-shadow: 0 0 0 5px rgba(43,107,255,0.12);
}

.form-note{
  font-size: 12px;
  color: rgba(11,16,32,0.65);
}

/* =========================
   FOOTER
   ========================= */
.footer{
  background: #050814;
  color: rgba(255,255,255,0.92);
  padding: 18px 0;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
}

.credit{ opacity: 0.9; }

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 900px){
  .hero-stats{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .pathways{ grid-template-columns: 1fr; }
  .principal-wrap{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
  .news-grid{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }

  .menu-btn{ display:inline-block; }

  .nav{
    position:absolute;
    top: 62px;
    right: 4%;
    left: 4%;
    background: rgba(10, 14, 26, 0.96);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 14px;
    padding: 12px;
    display:none;
    flex-direction:column;
    gap: 8px;
  }

  .nav.open{ display:flex; }

  .combo-list{
    grid-template-columns: 1fr;
  }

  .subjects-panel{ padding: 18px; }
  .about-grid{ grid-template-columns: 1fr; }
}

/* =========================
   GALLERY LIGHTBOX
   ========================= */

.gallery-item{
  cursor: pointer;
  border: none;           /* because now it's a button */
  padding: 0;
  background: transparent;
  text-align: left;
}

.gallery-item:focus{
  outline: none;
}

.gallery-item:focus-visible{
  outline: 3px solid rgba(43,107,255,0.55);
  outline-offset: 4px;
}

/* =========================
   LIGHTBOX (with Ad area)
   ========================= */
.lightbox{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.lightbox.open{ display: block; }

.lightbox-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}

.lightbox-content{
  position: relative;
  width: min(980px, 92vw);
  margin: 6vh auto;
  background: rgba(255,255,255,0.95);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  max-height: 88vh;
  overflow: auto;
}

.lightbox-close{
  position: sticky;
  top: 0;
  margin-left: auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(15,23,51,0.15);
  background: rgba(255,255,255,0.85);
  cursor: pointer;
  font-size: 18px;
}

.lightbox-figure{ margin: 10px 0 0; }

#lightboxImg{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  max-height: 62vh;
  object-fit: contain;
  background: #0b1020;
}

.lightbox-caption{
  margin-top: 10px;
  font-size: 14px;
  color: rgba(11,16,32,0.75);
}

/* Ad area inside lightbox */
.lightbox-ad{
  margin-top: 14px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(11,16,32,0.03);
  border: 1px solid rgba(15,23,51,0.10);
}

/* Mobile */
@media (max-width: 600px){
  .lightbox-content{
    margin: 4vh auto;
    padding: 14px;
  }
  #lightboxImg{ max-height: 55vh; }
}

.gallery-drive{
  margin-top: 32px;
  padding: 26px;
  border-radius: 18px;
  text-align: center;

  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15,23,51,0.10);
  box-shadow: 0 18px 40px rgba(15,23,51,0.12);
}

.gallery-drive h3{
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 8px;
}

.gallery-drive p{
  font-size: 15px;
  color: rgba(11,16,32,0.75);
  margin-bottom: 16px;
}