:root {
  --page-bg: #f4f4f4;
  --surface: #ffffff;
  --ink: #1f1f1f;
  --muted: #666666;
  --line: rgba(0, 0, 0, 0.08);
  --brand: #1fa2e1;
  --brand-deep: #1489c2;
  --brand-dark: #0f4264;
  --shadow-soft: 0 18px 44px rgba(11, 39, 58, 0.08);
}

html {
  scroll-behavior: smooth;
}

body.public-site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  background: var(--page-bg);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

body.public-site-shell.nav-open {
  overflow: hidden;
}

.public-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(9, 35, 55, 0.08);
  box-shadow: 0 10px 24px rgba(8, 30, 46, 0.06);
  backdrop-filter: blur(16px);
}

.public-header-inner,
.public-main,
.public-footer-inner {
  width: min(1600px, calc(100% - 72px));
  margin: 0 auto;
}

.public-header-inner {
  position: relative;
  min-height: 118px;
  padding: 0 44px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 32px;
}

.public-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  justify-self: start;
}

.public-brand-logo {
  width: min(100%, 260px);
  height: auto;
  display: block;
}

.public-nav-toggle,
.public-nav-backdrop {
  display: none;
}

.public-nav-toggle {
  appearance: none;
  border: 1px solid rgba(15, 66, 100, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(242, 248, 251, 0.96));
  box-shadow: 0 14px 30px rgba(8, 30, 46, 0.08);
}

.public-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #15364f;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.public-nav-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.public-nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.public-nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.public-nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  gap: 6px;
  flex-wrap: nowrap;
  padding: 8px 12px;
  margin-right: 18px;
  border: 1px solid rgba(15, 66, 100, 0.07);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 40px rgba(11, 39, 58, 0.07);
  backdrop-filter: blur(10px);
}

.public-nav::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.45) 0%, rgba(31, 162, 225, 0.04) 100%);
  pointer-events: none;
}

.public-nav a {
  position: relative;
  z-index: 1;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  color: #223444;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.24s ease, background-color 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
}

.public-nav a:first-child {
  color: var(--brand-deep);
  background: linear-gradient(180deg, rgba(31, 162, 225, 0.14) 0%, rgba(31, 162, 225, 0.07) 100%);
  box-shadow: inset 0 0 0 1px rgba(31, 162, 225, 0.08);
}

.public-nav a:first-child::after,
.public-nav a:hover::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 7px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1fa2e1 0%, #0f4264 100%);
}

.public-nav a:hover {
  color: var(--brand-deep);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 20px rgba(15, 66, 100, 0.08);
  transform: translateY(-1px);
}

.public-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1;
  border: 0;
  background: rgba(4, 16, 26, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.public-nav-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.public-main {
  flex: 1;
  width: min(1780px, 100%);
}

.banner-slider {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  background: linear-gradient(135deg, #08121a 0%, #103d5f 48%, #1c7aa8 100%);
}

.hero-slide {
  position: relative;
  min-height: 760px;
  display: none;
}

.hero-slide.is-active {
  display: block;
}

.hero-slide .hero-eyebrow,
.hero-slide .hero-copy h1,
.hero-slide .hero-summary,
.hero-slide .hero-primary-link,
.hero-slide .hero-secondary-link,
.hero-slide .hero-feature-item {
  opacity: 0;
}

.hero-backdrop,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-backdrop {
  background-position: center;
  background-size: cover;
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.04) brightness(0.82);
  transition: transform 5.4s ease, filter 0.5s ease;
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(31, 162, 225, 0.24), transparent 30%),
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.12), transparent 24%),
    linear-gradient(135deg, rgba(8, 21, 31, 0.1), rgba(8, 21, 31, 0.34));
}

.hero-slide.is-active .hero-backdrop {
  transform: scale(1.01);
}

.hero-backdrop-one {
  background-image:
    linear-gradient(120deg, rgba(3, 18, 29, 0.2), rgba(3, 18, 29, 0.4)),
    url("/AdminLteTemplate/dist/img/boxed-bg.jpg");
  background-position: center center;
}

.hero-backdrop-two {
  background-image:
    linear-gradient(120deg, rgba(5, 28, 41, 0.16), rgba(5, 28, 41, 0.38)),
    url("/AdminLteTemplate/dist/img/photo3.jpg");
  background-position: center 35%;
}

.hero-backdrop-three {
  background-image:
    linear-gradient(120deg, rgba(7, 24, 37, 0.16), rgba(7, 24, 37, 0.42)),
    url("/AdminLteTemplate/dist/img/photo4.jpg");
  background-position: center 30%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 13, 20, 0.82) 0%, rgba(9, 27, 39, 0.72) 36%, rgba(16, 61, 95, 0.4) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(4, 17, 27, 0.28) 100%);
}

.hero-slide-inner {
  position: relative;
  z-index: 1;
  width: min(1520px, calc(100% - 90px));
  min-height: 760px;
  margin: 0 auto;
  padding: 24px 0 70px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(460px, 0.95fr);
  align-items: center;
  gap: 44px;
}

.hero-copy {
  max-width: 760px;
  color: #ffffff;
}

.hero-eyebrow,
.section-label {
  margin: 0;
  color: var(--brand);
  font-family: "Outfit", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 14px 0 0;
  color: #21adee;
  font-family: "League Spartan", "Outfit", sans-serif;
  font-size: 44px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  max-width: 780px;
}

.hero-summary {
  max-width: 720px;
  margin: 18px 0 0;
  color: #ffffff;
  font-size: clamp(1.34rem, 2.15vw, 1.9rem);
  line-height: 1.55;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero-button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-primary-link,
.hero-secondary-link {
  min-height: 62px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 1rem;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero-primary-link {
  margin-top: 30px;
  background: #2fa8df;
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.hero-secondary-link {
  margin-top: 30px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.hero-primary-link:hover,
.hero-secondary-link:hover,
.banner-arrow:hover,
.banner-dot:hover {
  transform: translateY(-1px);
}

.hero-feature-stack {
  display: grid;
  gap: 18px;
}

.hero-feature-item {
  min-height: 56px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: stretch;
  box-shadow: 0 10px 24px rgba(8, 30, 46, 0.14);
}

.hero-feature-item span {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
}

.hero-feature-item span::before {
  content: "\2713";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #3a3a3a;
  font-size: 1.55rem;
  font-weight: 700;
}

.hero-feature-item span::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-left: 12px solid transparent;
  border-top: 12px solid rgba(31, 162, 225, 0.85);
}

.hero-feature-item strong {
  padding: 0 20px;
  display: flex;
  align-items: center;
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.08rem;
  font-weight: 700;
  background: linear-gradient(90deg, rgba(31, 162, 225, 0.88), rgba(36, 164, 221, 0.88));
}

.hero-slide.is-active.is-animating .hero-eyebrow {
  animation: heroFadeUp 0.45s ease forwards;
}

.hero-slide.is-active.is-animating .hero-copy h1 {
  animation: heroFadeUp 0.6s ease forwards;
  animation-delay: 0.08s;
}

.hero-slide.is-active.is-animating .hero-summary {
  animation: heroFadeUp 0.6s ease forwards;
  animation-delay: 0.18s;
}

.hero-slide.is-active.is-animating .hero-primary-link,
.hero-slide.is-active.is-animating .hero-secondary-link {
  animation: heroFadeUp 0.55s ease forwards;
  animation-delay: 0.28s;
}

.hero-slide.is-active.is-animating .hero-feature-item {
  animation: featureBlockIn 0.55s ease forwards;
}

.hero-slide.is-active.is-animating .hero-feature-item:nth-child(1) {
  animation-delay: 0.12s;
}

.hero-slide.is-active.is-animating .hero-feature-item:nth-child(2) {
  animation-delay: 0.2s;
}

.hero-slide.is-active.is-animating .hero-feature-item:nth-child(3) {
  animation-delay: 0.28s;
}

.hero-slide.is-active.is-animating .hero-feature-item:nth-child(4) {
  animation-delay: 0.36s;
}

.hero-slide.is-active.is-animating .hero-feature-item:nth-child(5) {
  animation-delay: 0.44s;
}

.hero-slide.is-active.is-animating .hero-feature-item:nth-child(6) {
  animation-delay: 0.52s;
}

.hero-slide.is-active.is-animating .hero-feature-item:nth-child(7) {
  animation-delay: 0.6s;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes featureBlockIn {
  from {
    opacity: 0;
    transform: translateX(36px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.banner-slider-controls {
  position: absolute;
  left: 50%;
  right: 0;
  bottom: 24px;
  z-index: 2;
  width: min(1520px, calc(100% - 90px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.banner-slider-dots,
.banner-slider-arrows {
  display: flex;
  align-items: center;
  gap: 12px;
}

.banner-dot,
.banner-arrow {
  border: 0;
  cursor: pointer;
}

.banner-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.banner-dot.is-active {
  background: #ffffff;
}

.banner-arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 1.1rem;
}

.section-shell {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

.feature-summary,
.modules-section,
.gallery-section,
.support-grid,
.contact-banner {
  margin-top: 42px;
}

.section-heading {
  max-width: 920px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.support-panel h2,
.contact-banner h2 {
  margin: 12px 0 0;
  color: #232323;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 3.1vw, 3.25rem);
  line-height: 1.08;
}

.section-heading p:last-child,
.summary-card p,
.module-card p,
.support-panel p,
.contact-banner p {
  color: var(--muted);
  line-height: 1.8;
}

.feature-summary-grid,
.modules-grid,
.gallery-grid,
.support-grid {
  display: grid;
  gap: 18px;
}

.feature-summary-grid {
  margin-top: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.summary-card,
.module-card,
.gallery-card,
.support-panel {
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.summary-card strong,
.gallery-card strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 1.18rem;
}

.summary-card p,
.gallery-card span,
.gallery-card strong,
.module-card p,
.support-panel p {
  margin: 10px 0 0;
}

.modules-grid {
  margin-top: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.module-card h3 {
  margin: 0;
  color: var(--brand-dark);
  font-family: "Outfit", sans-serif;
  font-size: 1.3rem;
}

.gallery-grid {
  margin-top: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(17, 54, 80, 0.08) 0%, rgba(12, 59, 89, 0.78) 100%),
    linear-gradient(135deg, rgba(31, 162, 225, 0.5), rgba(15, 66, 100, 0.9));
}

.gallery-card span {
  font-family: "Outfit", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.gallery-card strong {
  font-size: 1.35rem;
}

.support-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.support-panel {
  min-height: 250px;
}

.contact-banner {
  margin-bottom: 46px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: linear-gradient(135deg, #103d5f, #1fa2e1);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.contact-banner h2,
.contact-banner p,
.contact-banner .section-label {
  color: #ffffff;
}

.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-banner .hero-primary-link,
.contact-banner .hero-secondary-link {
  margin-top: 0;
}

.public-footer {
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.public-footer-inner {
  min-height: 88px;
  padding: 18px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.public-footer-inner strong,
.public-footer-inner small {
  display: block;
}

.public-footer-inner small {
  color: var(--muted);
  margin-top: 10px;
}

.public-footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.public-footer-logo {
  width: min(100%, 200px);
  height: auto;
  display: block;
}

@media (max-width: 1320px) {
  .hero-slide-inner {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 72px;
    padding-bottom: 88px;
  }

  .hero-feature-stack {
    max-width: 860px;
  }

  .feature-summary-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .public-header-inner,
  .public-footer-inner {
    width: min(calc(100% - 24px), 1600px);
    padding-left: 20px;
    padding-right: 20px;
  }

  .public-header-inner {
    min-height: auto;
    padding-top: 18px;
    padding-bottom: 18px;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
  }

  .public-brand {
    min-width: 0;
  }

  .public-brand-logo {
    width: min(100%, 220px);
  }

  .public-nav-toggle {
    position: relative;
    z-index: 4;
    width: 54px;
    height: 54px;
    padding: 0;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
  }

  .public-nav-backdrop {
    display: block;
  }

  .public-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    margin-right: 0;
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
  }

  .public-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .public-nav a {
    width: 100%;
    min-height: 52px;
    justify-content: flex-start;
    padding: 0 18px;
    background: rgba(255, 255, 255, 0.74);
  }

  .public-nav a:first-child::after,
  .public-nav a:hover::after {
    left: 18px;
    right: auto;
    width: 52px;
    bottom: 9px;
  }

  .modules-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .contact-actions {
    width: 100%;
  }

  .public-brand-logo,
  .public-footer-logo {
    width: min(100%, 176px);
  }

  .hero-primary-link,
  .hero-secondary-link {
    width: 100%;
    justify-content: center;
  }

  .banner-slider,
  .hero-slide,
  .hero-slide-inner {
    min-height: auto;
  }

  .hero-slide-inner {
    width: min(100%, calc(100% - 28px));
    padding: 30px 0 88px;
  }

  .hero-copy h1 {
    font-size: clamp(2.15rem, 8vw, 3rem);
  }

  .hero-summary {
    font-size: 1.02rem;
    line-height: 1.7;
  }

  .hero-button-row {
    width: 100%;
  }

  .hero-feature-item {
    min-height: 54px;
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .hero-feature-item strong {
    padding: 0 16px;
    font-size: 0.98rem;
  }

  .banner-slider-controls {
    width: min(100%, calc(100% - 28px));
    bottom: 18px;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 14px;
  }

  .feature-summary-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section-shell {
    width: min(100%, calc(100% - 28px));
  }

  .contact-banner,
  .public-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}





