:root {
  --black: #111111;
  --yellow: #f5c400;
  --white: #ffffff;
  --offwhite: #f8f8f8;
  --grey: #6a6a6a;
  --border: #e3e3e3;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; background: var(--white); color: var(--black); line-height: 1.65; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1150px, calc(100% - 32px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 1000; box-shadow: 0 8px 24px rgba(0,0,0,.14); }
.topbar { background: var(--black); color: var(--white); border-bottom: 3px solid var(--yellow); }
.topbar-inner, .footer-grid, .hero-grid, .grid { display: grid; gap: 24px; }
.topbar-inner { grid-template-columns: 1.4fr 1fr; align-items: center; padding: 16px 0; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand strong { display: block; font-size: 1.1rem; }
.brand span { display: block; font-size: .9rem; color: #d8d8d8; }
.logo-circle { width: 58px; height: 58px; border-radius: 50%; background: var(--yellow); color: var(--black); display: grid; place-items: center; font-weight: 700; }
.logo-image { width: 64px; height: 64px; object-fit: contain; background: #fff; padding: 4px; border-radius: 10px; }
.top-links { display: flex; justify-content: flex-end; gap: 18px; flex-wrap: wrap; }
.top-links a { color: var(--white); font-weight: 700; }
.main-nav { background: var(--yellow); }
.nav-shell { position: relative; }
.nav-inner { display: flex; justify-content: center; align-items: center; gap: 28px; padding: 14px 0; width: 100%; }
.main-nav a { font-weight: 700; text-align: center; }
.main-nav a.active { text-decoration: underline; }
.mobile-nav-toggle { display: none; align-items: center; gap: 10px; background: transparent; border: 0; font: inherit; font-weight: 700; color: var(--black); padding: 12px 0; cursor: pointer; }
.mobile-nav-toggle span { display: block; width: 24px; height: 3px; background: var(--black); border-radius: 999px; transition: transform .25s ease, opacity .25s ease; }
.mobile-nav-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mobile-nav-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-nav-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.hero { background: linear-gradient(135deg, #111 0%, #232323 100%); color: var(--white); padding: 0 0 60px; }
.hero-slider { position: relative; overflow: hidden; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); background: #000; }
.hero-slider-track { display: flex; animation: heroSlide 18s infinite; }
.hero-slide { flex: 0 0 33.3333%; min-height: 360px; display: flex; align-items: center; background-size: cover; background-position: center; background-repeat: no-repeat; background-image:
    linear-gradient(90deg, rgba(17,17,17,.88), rgba(17,17,17,.55)),
    radial-gradient(circle at top right, rgba(245,196,0,.28), transparent 30%),
    linear-gradient(135deg, #0f0f0f 0%, #1f1f1f 100%); }
.hero-slide-inner { padding: 64px 0 70px; }
.hero-slide h2 { max-width: 760px; font-size: clamp(2rem, 4vw, 3.1rem); margin-bottom: 12px; }
.hero-slide p { max-width: 700px; font-size: 1.08rem; color: #f0f0f0; margin-bottom: 22px; }
.hero-slider-dots { position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%); display: flex; gap: 10px; }
.hero-slider-dots span { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,.36); animation: heroDots 18s infinite; }
.hero-slider-dots span:nth-child(2) { animation-delay: 6s; }
.hero-slider-dots span:nth-child(3) { animation-delay: 12s; }
.hero-grid { grid-template-columns: 1.4fr .9fr; align-items: start; margin-top: 36px; }
.hero-card, .highlight-card, .panel, .card, .gallery-card, .record-card { background: var(--white); color: var(--black); border-radius: 18px; padding: 28px; box-shadow: 0 10px 30px rgba(0,0,0,.08); }
.hero-card { background: rgba(255,255,255,.08); color: var(--white); border: 1px solid rgba(255,255,255,.12); }
.hero-card p { color: #f5f5f5; }
.highlight-card { border-top: 6px solid var(--yellow); }
.tag { display: inline-block; background: var(--yellow); color: var(--black); padding: 6px 10px; border-radius: 999px; font-weight: 700; font-size: .85rem; margin-bottom: 14px; }
h1, h2, h3, h4 { line-height: 1.2; margin-top: 0; }
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: 2rem; }
h3 { font-size: 1.2rem; }
.section { padding: 56px 0; }
.page-banner { background: var(--black); color: var(--white); padding: 44px 0; }
.light { background: var(--offwhite); }
.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.card { border-top: 5px solid var(--yellow); }
.service-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card { display: flex; flex-direction: column; justify-content: space-between; min-height: 100%; }
.section-heading { margin-bottom: 24px; max-width: 820px; }
.content-area { background: var(--white); border-radius: 18px; padding: 34px; box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.services-content { margin-top: 26px; }
.btn { display: inline-block; padding: 12px 18px; border-radius: 999px; font-weight: 700; border: 2px solid transparent; cursor: pointer; }
.btn-primary { background: var(--yellow); color: var(--black); }
.btn-secondary { background: transparent; color: inherit; border-color: currentColor; }
.hero-actions, .button-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.text-link { font-weight: 700; }
.accent-panel { border-left: 6px solid var(--yellow); }
.footer { background: var(--black); color: var(--white); padding: 36px 0; }
.footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
.footer a { color: var(--yellow); }
ul { padding-left: 20px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.gallery-card img { width: 100%; height: 240px; object-fit: cover; border-radius: 12px; margin-bottom: 12px; background: #ddd; }
.public-form, .admin-form { display: grid; gap: 16px; }
.admin-body { background: #f2f2f2; }
.admin-login-card { width: min(440px, calc(100% - 32px)); margin: 8vh auto; background: #fff; padding: 32px; border-radius: 18px; box-shadow: 0 12px 35px rgba(0,0,0,.1); }
.admin-wrap { min-height: 100vh; }
.admin-shell { display: grid; grid-template-columns: 250px 1fr; min-height: 100vh; }
.admin-sidebar { background: var(--black); color: var(--white); padding: 24px; }
.admin-sidebar a { display: block; padding: 10px 0; color: var(--white); }
.admin-main { padding: 32px; }
.admin-form { background: #fff; padding: 24px; border-radius: 18px; box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.admin-form.compact { grid-template-columns: 1.2fr 1fr auto; align-items: end; }
.admin-panel-block { margin-bottom: 24px; }
.slide-editor { border: 1px solid var(--border); border-radius: 16px; padding: 18px; margin-bottom: 18px; background: #fffdf3; }
.form-split { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.banner-preview img { width: 100%; max-width: 260px; height: 140px; object-fit: cover; border-radius: 14px; border: 1px solid var(--border); }
.checkbox-line { display: flex; align-items: center; gap: 10px; font-weight: 400; }
label { display: grid; gap: 8px; font-weight: 700; }
input, textarea, select { width: 100%; padding: 12px 14px; border-radius: 12px; border: 1px solid #cfcfcf; font: inherit; background: #fff; }
.alert { padding: 14px 16px; border-radius: 12px; margin-bottom: 16px; }
.alert.success { background: #e9f7e9; color: #205d20; }
.alert.error { background: #fdeaea; color: #7b1f1f; }
.small-text { font-size: .92rem; color: var(--grey); }
.logo-preview img { width: 120px; height: auto; background: #fff; border-radius: 12px; padding: 8px; border: 1px solid var(--border); }
.feature-image { width: 100%; max-height: 380px; object-fit: cover; border-radius: 16px; margin-bottom: 20px; }
.callout-box { background: #fff7d1; border-left: 5px solid var(--yellow); border-radius: 14px; padding: 18px; margin-top: 24px; }
.records { display: grid; gap: 18px; }
.record-card { border-top: 5px solid var(--yellow); }
@keyframes heroSlide {
  0%, 28% { transform: translateX(0%); }
  33%, 61% { transform: translateX(-33.3333%); }
  66%, 94% { transform: translateX(-66.6666%); }
  100% { transform: translateX(0%); }
}
@keyframes heroDots {
  0%, 28% { opacity: 1; background: var(--yellow); transform: scale(1.1); }
  33%, 100% { opacity: .45; background: rgba(255,255,255,.42); transform: scale(1); }
}
@media (max-width: 980px) {
  .topbar-inner, .hero-grid, .two-col, .footer-grid, .admin-shell, .cards, .gallery-grid, .service-cards { grid-template-columns: 1fr; }
  .top-links { justify-content: flex-start; }
  .form-split { grid-template-columns: 1fr; }
  .hero-slide { min-height: 300px; }
  .hero-slide-inner { padding: 52px 0 62px; }
  .hero-grid { margin-top: 24px; }
  .admin-form.compact { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .topbar-inner { grid-template-columns: 1fr; }
  .mobile-nav-toggle { display: inline-flex; }
  .nav-inner {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--yellow);
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    box-shadow: 0 16px 30px rgba(0,0,0,.12);
    transition: max-height .35s ease, padding .35s ease;
  }
  .nav-inner.open { max-height: 420px; padding: 10px 0; }
  .nav-inner a { width: 100%; padding: 14px 16px; border-top: 1px solid rgba(0,0,0,.08); }
  .hero-slider-track { width: 300%; }
  .hero-slide h2 { font-size: 1.8rem; }
  .hero-slide p { font-size: 1rem; }
}


.breadcrumb{display:flex;flex-wrap:wrap;gap:.5rem;align-items:center;margin-bottom:1rem;font-size:.95rem;color:#f2c300}
.breadcrumb a{color:#f2c300;text-decoration:none}
.breadcrumb a:hover{text-decoration:underline}
.breadcrumb span{color:#fff}
.breadcrumb-sep{color:rgba(255,255,255,.7)}
