/* Reset & base */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #111;
  background: #fff;
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}

/* ---------- Top navigation (sticky) ---------- */
#menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 10vh;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  z-index: 1000;
  transition: transform 0.28s ease, opacity 0.28s ease;
  padding: 0 16px;
}
#menu.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
#menu #brand {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
  color: #fff;
  padding: 8px 12px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1;
  z-index: 1100;
  user-select: none;
  border: 0;


font-family: sans-serif ;

}
#menu #initials{
font-family: sans-serif;


}


#menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.75rem;
  align-items: center;
}
#menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: color 180ms ease, transform 180ms ease;
}
#menu a:hover,
#menu a:focus {
  color: #1e6fe6;
  transform: translateY(-1px);
}
#menu a.active,
#menu a[aria-current="page"] {
  color: #1e6fe6;
  font-weight: 700;
}
#menu #menu-cta-wrap {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1100;
}
.menu-cta,
.hero-cta {
  display: inline-block;
  background: linear-gradient(#0067ff, #1b4277);
  color: #fff;
  border: 0;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(19,96,200,0.14);
  transition: transform 140ms ease, box-shadow 140ms ease, filter 140ms ease;
  -webkit-tap-highlight-color: transparent;
}
.menu-cta {
  padding: 8px 16px;
  font-size: 13px;
}
.menu-cta:hover,
.hero-cta:hover {
  filter: brightness(1.03);
  box-shadow: 0 12px 26px rgba(19,96,200,0.16);
}
.menu-cta:active,
.hero-cta:active {
  transform: translateY(1px) scale(0.99);
}

/* ---------- Page layout / sections ---------- */
body {
  padding-top: 10vh;
}
.section {
  width: 100%;
  overflow: hidden;
}
.section:not(.half) {
  height: 100vh;
}
.section.half {
  height: 50vh;
  display: flex;
}

/* ---------- Hero (section1) ---------- */
.hero {
  position: relative;
  background: url('assets/images/bg_01.jpg') center/cover no-repeat;
  background-position: center -75px;
  color: #fff;
  display: block;
  min-height: 60vh;
}
.hero-text {
  position: absolute;
  top: 40%;
  left: 5%;
  transform: translateY(-10%);
  color: #fff;
  max-width: 60ch;
  padding-bottom: 1rem;
}
.hero-text h1 {
  margin: 0 0 0.65rem 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
}
.hero-text p {
  margin: 0 0 1rem 0;
  font-size: 1rem;
  opacity: 0.95;
}
.hero-cta-wrap {
  margin-top: 0.5rem;
}
.hero-cta {
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(19,96,200,0.16);
}

/* ---------- Section 2 ---------- */
.dark-grey {
  display: flex;
  background: #000;
  color: #fff;
}
.dark-grey .side {
  flex: 1;
  padding: 2rem;
}
.img-wrapper {
  width: 100%;
  overflow: hidden;
}
#section2-img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.25);
  transform-origin: center center;
  transition: transform 0.18s linear;
}
#section2 p {
  font-size: 1.25rem;
  line-height: 1.5;
}

/* ---------- Section 3: fixed background ---------- */
#section3 {
  position: relative;
  background: url("assets/images/bg_02.jpg") no-repeat center center fixed;
  background-size: cover;
  height: 50vh;
  overflow: hidden;
  color: #fff;
  padding: 5rem;
}
#section3 .big-heading {
  margin-top: 2.5rem;
}
#section3 .grid-2x3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
  margin-top: 1rem;
  row-gap: 10rem;
}
#section3 .grid-2x3 > div {
  background: #222;
  padding: 2rem;
  border-radius: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-origin: center center;
  padding-bottom: 5rem;
  
    border-style: solid;
    border-width: thin;
}
#section3 .grid-2x3 > div:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

/* ---------- Section 4 (FAQ) ---------- */
#section4 {
  position: relative;
  z-index: 1;
  background-color: #000;
  display: flex;
  flex-wrap: wrap;
}
#section4 .left-col {
  flex: 0 0 15%;
  max-width: 15%;
  padding: 2rem;
  box-sizing: border-box;
}
#section4 .right-col {
  flex: 0 0 85%;
  max-width: 85%;
  padding: 2rem;
  box-sizing: border-box;
  font-size: 1.5rem;
}
#section4 .question {
  cursor: pointer;
  position: relative;
  padding: 0.5rem 1rem;
  background: #000;
  color: #fff;
  font-weight: bold;
}
#section4 .question::after {
  content: '+';
  position: absolute;
  right: 1rem;
  transition: transform 0.2s;
}
#section4 .answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: #000;
  color: #ddd;
  padding: 0 1rem;
}
#section4 .part.active .answer {
  padding: 0.5rem 1rem;
  max-height: 200px;
}
#section4 .part.active .question::after {
  content: '–';
}
#section4 p {
  font-size: 2.5rem;
  margin-top:0rem;
  margin-left: 1rem;
  
}




/* ---------- New Section 5 (transparent half-page) ---------- */
#section5.transparent {
  background: transparent !important;
  position: relative;
  z-index: 1;
  color: inherit;
}
#section5.transparent .placeholder {
  padding: 2rem;
}

/* ---------- Section 6 (Contact Us) ---------- */
#section6 {
  background: #1f1f1f;
  color: #ffffff;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}
#section6 .three-col {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
#section6 .three-col .cell.blank {
  display: none;
}
#section6 .three-col .cell.large-text {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 1rem;
}
#section6 .three-col .cell.small-text {
  flex: 0 0 75%;
  max-width: 75%;
  padding: 1rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  #section3 .grid-2x3 {
    grid-template-columns: repeat(2, 1fr);
  }
  #menu ul {
    gap: 1rem;
  }
}
@media (max-width: 520px) {
  #menu {
    height: 8vh;
    min-height: 48px;
    padding: 0 10px;
  }
  body {
    padding-top: 8vh;
  }
  #menu #brand {
    left: 8px;
    font-size: 0.95rem;
    padding: 6px 10px;
  }
  #menu ul {
    gap: 0.8rem;
    font-size: 14px;
  }
  .menu-cta {
    padding: 6px 12px;
    font-size: 13px;
  }
  .hero {
    min-height: 60vh;
    display: block;
    padding-bottom: 1.5rem;
  }
  .hero-text {
    position: static;
    transform: none;
    top: auto;
    left: auto;
    padding: 1.25rem;
    max-width: 100%;
  }
}
