:root {
  --color-bg: #ffffff;
  --color-surface: #f4f8fb;
  --color-text: #2d3436;
  --color-muted: #636e72;
  --color-primary: #2196B8;
  --color-primary-dark: #1a6b8a;
  --color-accent: #00A896;
  --color-border: #dce8f0;
  --color-footer-bg: #1a2332;
  
  --font-main: 'Outfit', 'Noto Sans TC', sans-serif;
  --header-h: 90px;
  --container: 1200px;
  --radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  height: var(--header-h);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
}

.site-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.brand__logo {
  height: 60px;
  width: auto;
  display: block;
}

.nav-toggle {
  display: none;
}

.main-nav {
  margin-left: auto;
  margin-right: 2rem;
}

.nav-list {
  display: flex;
  gap: 2rem;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  font-weight: 600;
  font-size: 1.05rem;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-item > a:hover {
  color: var(--color-primary);
}

.chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -4px;
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.dropdown li a:hover {
  background: #f8f9fa;
  color: var(--color-primary);
  padding-left: 25px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
}

.lang-switch a {
  color: var(--color-muted);
}

.lang-switch a[aria-current="true"] {
  color: var(--color-primary);
  font-weight: 700;
}

.lang-switch .sep {
  color: #ddd;
}

/* ----- Hero Slider ----- */
.hero-slider {
  position: relative;
  height: 600px;
  background: #000;
  overflow: hidden;
}

.slider-wrapper {
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-content {
  color: #fff;
  z-index: 2;
}

.hero-text {
  max-width: 600px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease 0.3s;
}

.hero-slide.active .hero-text {
  transform: translateY(0);
  opacity: 1;
}

.hero-subtitle {
  display: block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: var(--color-accent);
  font-weight: 700;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0 0 1.5rem;
  line-height: 1.2;
}

.hero-desc {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn--primary {
  background: var(--color-accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 163, 216, 0.3);
}

.btn--outline {
  border: 2px solid var(--color-primary);
  color: var(--color-primary-dark);
}

.btn--outline:hover {
  background: var(--color-primary);
  color: #fff;
}

.slider-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 15px;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.nav-dot.active {
  background: #fff;
  width: 30px;
  border-radius: 10px;
}

/* ----- Inner Pages Structure ----- */
.inner-banner {
  min-height: 320px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-start;
  color: #1a6b8a;
  position: relative;
  padding: 40px 0;
}

.inner-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,240,248,0.60) 0%, rgba(220,232,242,0.50) 50%, rgba(200,220,240,0.40) 100%);
}

.inner-banner .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 0.88rem;
  margin-bottom: 18px;
  color: #5a8a9e;
  flex-wrap: wrap;
  align-items: center;
}

.breadcrumb a {
  color: var(--color-accent);
}

.breadcrumb a:hover {
  color: var(--color-primary-dark);
}

.breadcrumb span.sep {
  color: #8ab0c0;
}

.inner-banner__subtitle {
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 10px;
}

.inner-banner__title {
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--color-primary-dark);
  line-height: 1.2;
}

.inner-banner__desc {
  font-size: 1rem;
  max-width: 580px;
  margin-bottom: 0;
  color: #4a7a8e;
  line-height: 1.7;
}

/* Two Column Layout */
.inner-container {
  display: flex;
  gap: 50px;
  padding: 80px 0;
}

.sidebar {
  width: 260px;
  flex-shrink: 0;
}

.sidebar-title {
  font-size: 1.5rem;
  color: var(--color-primary-dark);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--color-primary);
}

.sidebar-menu li {
  margin-bottom: 10px;
}

.sidebar-menu li a {
  display: block;
  padding: 12px 20px;
  background: #f0f5fa;
  border-radius: 8px;
  font-weight: 600;
  color: var(--color-muted);
  border: 1px solid transparent;
}

.sidebar-menu li a:hover {
  background: #e4eef6;
  color: var(--color-primary-dark);
  border-color: var(--color-border);
}

.sidebar-menu li a.active {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(33, 150, 184, 0.3);
}

.main-content {
  flex: 1;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  color: var(--color-primary-dark);
  margin: 0 0 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: 2px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--color-muted);
  max-width: 700px;
  margin: 0 auto;
}

/* Grid & Cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.product-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f0f2f5;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-img img {
  transform: scale(1.05);
}

.product-info {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-info h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--color-primary-dark);
}

.link-arrow {
  width: 24px;
  height: 24px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  position: relative;
  transition: var(--transition);
}

.link-arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 45%;
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.product-card:hover .link-arrow {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.product-card:hover .link-arrow::after {
  border-color: #fff;
}

/* Timeline Vertical */
.timeline-v {
  position: relative;
  padding-left: 30px;
}

.timeline-v::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

.timeline-v__item {
  position: relative;
  margin-bottom: 50px;
  padding-left: 20px;
}

.timeline-v__item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 5px;
  width: 14px;
  height: 14px;
  background: var(--color-accent);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px rgba(0, 163, 216, 0.2);
  z-index: 2;
}

.timeline-v__year {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.timeline-v__content h3 {
  font-size: 1.2rem;
  color: var(--color-text);
  margin-bottom: 10px;
}

.timeline-v__content p {
  color: var(--color-muted);
  line-height: 1.7;
}

/* Download Table */
.download-table {
  width: 100%;
  border-collapse: collapse;
}

.download-table th, .download-table td {
  padding: 15px;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
}

.download-table th {
  color: var(--color-primary-dark);
}

.btn-download {
  color: var(--color-accent);
  font-weight: 700;
}

.btn-download--disabled {
  color: var(--color-muted);
  cursor: not-allowed;
  text-decoration: none;
  opacity: 0.8;
}

/* ESG intro + download table */
.section-header--left {
  text-align: left;
}

.esg-intro-block {
  margin-bottom: 28px;
}

.esg-intro-head {
  margin-bottom: 18px;
}

.esg-intro-head .section-title {
  font-size: 2rem;
}

.esg-intro-head .section-desc {
  max-width: none;
  margin: 0;
}

.esg-intro-body {
  background: #f8f9fb;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 20px 24px;
  line-height: 1.9;
  color: #334155;
}

.esg-download-wrap {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 12px;
}

.esg-download-wrap .table-responsive {
  width: 100%;
  margin: 0;
}

.esg-download-table {
  width: 100%;
  table-layout: fixed;
  margin: 0;
}

.esg-download-table thead th {
  background: #f0f7fb;
  color: var(--color-primary-dark);
  font-weight: 700;
  border-bottom: 1px solid #d9e7f1;
  padding: 14px 16px;
}

.esg-download-table tbody td {
  padding: 16px;
  vertical-align: middle;
  border-bottom: 1px solid #e8eef3;
  line-height: 1.6;
}

.esg-download-table tbody tr:last-child td {
  border-bottom: none;
}

.esg-download-table .col-year-title {
  width: 40%;
}

.esg-download-table .col-desc {
  width: 40%;
}

.esg-download-table .col-download {
  width: 20%;
  text-align: center;
}

.esg-download-table .cell-title {
  font-weight: 600;
  color: #0f172a;
}

.esg-download-table .cell-desc {
  color: #475569;
}

.esg-download-table .cell-download {
  text-align: center;
  white-space: nowrap;
}

.governance-download-table .col-no {
  width: 8%;
  text-align: center;
}

.governance-download-table .col-year-title {
  width: 42%;
}

.governance-download-table .col-desc {
  width: 30%;
}

.governance-download-table .col-download {
  width: 20%;
}

.governance-download-table .cell-no {
  text-align: center;
  color: #64748b;
  font-weight: 600;
}

@media (max-width: 768px) {
  .esg-intro-head .section-title {
    font-size: 1.6rem;
  }

  .esg-intro-body {
    padding: 16px;
  }

  .esg-download-table .col-year-title,
  .esg-download-table .col-desc,
  .esg-download-table .col-download {
    width: auto;
  }
}

/* Philosophy Section */
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.philosophy-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.philosophy-content h3 {
  font-size: 2rem;
  color: var(--color-primary-dark);
  margin: 0 0 10px;
}

.philosophy-content .subtitle {
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.philosophy-content .text-body {
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Global Presence */
.global-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.location-item {
  text-align: left;
  padding: 30px;
  background: #f8f9fb;
  border-radius: var(--radius);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.location-item:hover {
  background: #fff;
  box-shadow: var(--shadow);
}

.location-visual {
  margin-bottom: 25px;
}

.flag-icon {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border: 3px solid #fff;
}

.location-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.location-header .location-visual {
  margin-bottom: 0;
  flex-shrink: 0;
}

.location-region {
  margin: 0;
  font-size: 1.1rem;
  color: var(--color-primary-dark);
}

.location-details .comp-name {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}

.location-details p {
  margin: 4px 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.loc-meta {
  font-weight: 600;
  color: var(--color-primary) !important;
  margin-top: 15px !important;
  font-size: 0.8rem !important;
  border-top: 1px solid #ddd;
  padding-top: 10px;
}

/* Honors */
.honors-list {
  display: grid;
  gap: 20px;
}

.honors-list .card {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px;
}

.honor-year {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  flex-shrink: 0;
}

/* Certification */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.cert-card {
  text-align: center;
  padding: 30px;
}

.cert-thumb {
  margin-bottom: 20px;
  cursor: zoom-in;
  padding: 10px;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  border-radius: 4px;
}

.cert-thumb img {
  width: 100%;
  height: 250px;
  object-fit: contain;
}

/* Contact */
.contact-form-box {
  background: #f8f9fb;
  padding: 40px;
  border-radius: 12px;
}

.info-list {
  margin-top: 30px;
}

.info-item {
  margin-bottom: 25px;
}

.info-item h4 {
  color: var(--color-primary);
  margin-bottom: 5px;
}

/* ----- Footer ----- */
.site-footer {
  background: var(--color-footer-bg);
  color: #fff;
  padding-top: 80px;
}

.footer-sitemap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin: 0 0 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-accent);
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #999;
  font-size: 0.95rem;
}

.footer-col ul li a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-bottom {
  background: #111;
  padding: 30px 0;
}

.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  color: #666;
  font-size: 0.85rem;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: #222;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.social-icon:hover {
  background: var(--color-accent);
  color: #fff;
}

/* ----- Home Header Override (Prototype V44) ----- */
body.page-home .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: none;
  box-shadow: none;
  backdrop-filter: none;
}

body.page-home .site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* ----- Responsive ----- */
@media (max-width: 991px) {
  .hero-title, .inner-banner__title {
    font-size: 2.5rem;
  }
  
  .inner-banner {
    min-height: 280px;
    padding: 30px 0;
  }

  .philosophy-grid, .inner-container {
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 30px;
  }
  
  .sidebar {
    width: 100%;
  }
  
  .main-nav {
    display: none;
  }
  
  .nav-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
  }
  
  .nav-toggle__bar {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--color-primary-dark);
    margin: 5px 0;
    transition: var(--transition);
  }
  
  .main-nav.is-open {
    display: block;
    position: absolute;
    top: var(--header-h);
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  .nav-list {
    flex-direction: column;
    gap: 10px;
  }
  
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 20px;
    display: none;
  }
  
  .nav-item:hover .dropdown {
    display: block;
  }
}
/* Section About */
.section-about {
  background: var(--color-white);
  padding: 100px 0;
}

.about-flex {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-visual {
  flex: 1;
  min-width: 300px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 35px;
}

.stat-item .stat-num {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
}

.stat-item .stat-label {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.about-title {
  font-size: 2.5rem;
  margin: 15px 0 25px;
  color: var(--color-primary-dark);
  line-height: 1.2;
}

.about-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 30px;
}

.about-visual img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.eyebrow {
  color: var(--color-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
}
/* Organizational Chart */
.org-container {
  padding: 40px 0;
  overflow-x: auto;
  background: #f9fbfd;
  border-radius: 12px;
  border: 1px solid #eef2f6;
}

.org-tree {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 800px;
}

.org-node {
  background: #fff;
  border: 1px solid #d0d7de;
  border-radius: 6px;
  padding: 12px 20px;
  min-width: 160px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  position: relative;
  z-index: 2;
  font-weight: 500;
  color: var(--color-primary-dark);
}

.org-node--primary {
  background: var(--color-primary);
  color: #fff;
  border: none;
}

.org-node--accent {
  background: #f1f8ff;
  border-color: #0366d6;
  font-size: 0.9rem;
}

/* Connectors */
.org-connector-v {
  width: 2px;
  height: 30px;
  background: #cbd5e0;
}

.org-row {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
}

.org-branch-container {
  display: flex;
  width: 100%;
  justify-content: space-around;
  position: relative;
  padding-top: 30px;
}

.org-branch-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: #cbd5e0;
}

.org-branch-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
}

.org-branch-item::after {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  width: 2px;
  height: 30px;
  background: #cbd5e0;
}

/* Side Committees Style */
.org-side-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 900px;
  justify-content: space-between;
  position: relative;
}

.org-side-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 220px;
}

.org-center-axis {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.org-line-h {
  position: absolute;
  height: 2px;
  background: #cbd5e0;
  top: 50%;
  z-index: 1;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 800px;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {transform:scale(0)}
  to {transform:scale(1)}
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

#lightbox-caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}
