@import url('./fonts.googleapis.com/css2af96.css');

:root {
  --ink: #0f0f0f;
  --maroon: #1d54ab;
  --muted: #555;
  --accent: #2e72ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  background-color: #fff;
}

body.menu-open {
  overflow: hidden;
}

.heading-bt{
    font-family: "Exo 2", sans-serif;
    font-size: clamp(32px, 6vw, 70px);
    font-optical-sizing: auto;
    font-weight: medium;
    /* text-transform: uppercase; */
    font-style: normal;
    line-height: 1.1;
}

.toptext{
 
  font-family: "Exo 2", sans-serif;
  font-size: 6rem;
  font-optical-sizing: auto;
  font-weight: medium;
  text-transform: uppercase;
  font-style: normal;

}

.bottomtext{
 
  font-family: "Exo 2", sans-serif;
  font-size: 2rem;
  font-optical-sizing: auto;
  font-weight: normal;
  color: #4a73c9;
  text-transform: uppercase;
  font-style: normal;

}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-hidden {
  transform: translateY(-100%);
  box-shadow: none;
}

.header-inner {
  max-width: 1600px;
  margin: 0 auto;
  height: 106px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  width: 86px;
  height: 50px;
}

.brand-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
  letter-spacing: 0.12em;
}

.brand-name {
  font-size: 28px;
  font-weight: 700;
}

.brand-subtitle {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.45em;
  margin-top: 4px;
}

.primary-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
    letter-spacing: 0.10em;
    font-weight: lighter;
  padding-bottom: 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.social-links-footer{
     display: flex;
  align-items: center;
  gap: 18px;
}

.social-link {
  width: 26px;
  height: 26px;
  color: var(--ink);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.social-link svg {
  width: 100%;
  height: 100%;
}

.nav-toggle {
  width: 48px;
  height: 48px;
  border: none;
  background: none;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 28px;
  background: var(--ink);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: 24px 32px 40px;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

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

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-close {
  width: 48px;
  height: 48px;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
}

.nav-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 2px;
  background: var(--maroon);
}

.nav-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    letter-spacing: 0.3em;
    margin: 200px 0;
}

.mobile-link {
  text-decoration: none;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  color: var(--maroon);
}

.mobile-social {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: auto;
}

.mobile-social .social-link {
  color: var(--maroon);
  width: 28px;
  height: 28px;
}

.media-slider-section {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 32px; */
}

.media-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.media-frame {
  width: 100%;
  height: 100%;
  /* border-radius: 18px; */
  overflow: hidden;
  position: relative;
}

.media-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.media-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-slide.active {
  opacity: 1;
}

.media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 33, 81, 0.65) 0%, rgba(0, 33, 81, 0.15) 40%, rgba(0, 33, 81, 0.05) 100%);
}

.media-caption {
  position: absolute;
  bottom: 40px;
  left: 40px;
  color: #fff;
  font-size: 42px;
  font-weight: 600;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.invest-section {
  background: #d9e3f5;
  padding: 80px min(8vw, 120px);
}

.invest-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
  align-items: center;
}

.invest-text h2 {
  margin: 0 0 20px;
  font-size: clamp(32px, 4vw, 44px);
  letter-spacing: 0.02em;
  color: var(--maroon);
  font-weight: 700;
}

.invest-text h3 {
  margin: 0 0 30px;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 500;
  color: var(--maroon);
}

.mobile-logo img{
    width: 150px;
}


.invest-text ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.invest-text li {
  position: relative;
  padding-left: 24px;
  font-size: 18px;
  color: var(--maroon);
  line-height: 1.6;
}

.invest-text{
    padding: 0 40px;
}


 .media-caption {
    font-family: "Exo 2", sans-serif;
    font-size: 42px;
    left: 24px;
    bottom: 24px;
    font-style: italic;
  }

.invest-text li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--maroon);
}

.invest-media {
  display: flex;
  justify-content: flex-end;
}

.invest-photo-frame {
  /* background: #c9d7ef; */
  padding: 18px;
  border-radius: 44px 0 44px 0;
  /* box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08); */
  max-width: 580px;
  width: 100%;
}

.invest-photo-frame img {
  width: 100%;
  display: block;
  border-radius: 34px 0 34px 0;
}

.infrastructure-section {
  background: #d9e3f5;
  /* padding: 70px min(8vw, 120px) 90px; */
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.sitemap-width {
width: 100%;
height: auto;
align-items: center;
display: flex;
justify-content: center;
}

.sitemap-width img{
width: 85%;
height: auto;
}

/* .sitemap-width{display: flex; justify-content: center; margin-top: 40px; margin-bottom: 40px;} */

.infra-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.infra-photo {
  background: #c9d7ef;
  /* border-radius: 24px; */
  overflow: hidden;
  min-height: 160px;
}

.infra-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.infra-copy {
  /* max-width: 1000px; */
  padding: 0% 5% 5% 5%;
}

.infra-copy h2 {
  margin: 0 0 24px;
  font-size: clamp(30px, 4vw, 40px);
  color: var(--maroon);
  font-weight: 700;
}

.infra-copy p {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: var(--maroon);
}

.safety-section {
  background: #f8f9fd;
  padding: 80px min(10vw, 140px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.safety-heading h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 600;
  color: #2c6dd5;
}

.safety-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 40px;
  align-items: center;
}

.safety-media {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}


.safety-photo img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.safety-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 18px;
  color: #171717;
  line-height: 1.6;
}

.safety-list li {
  position: relative;
  padding-left: 20px;
}

.safety-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2c6dd5;
  position: absolute;
  left: 0;
  top: 0.8em;
}

.prebook-section {
  background: #0f5ad7;
  padding: 90px min(8vw, 120px);
  color: #fff;
}

.prebook-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.prebook-graphic {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.graphic-placeholder {
  position: relative;
  border: 1px dashed rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  min-height: 260px;
  overflow: hidden;
}

.graphic-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.prebook-heading {
  font-size: clamp(32px, 6vw, 70px);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  display: flex;
  flex-direction: column;
}

.prebook-heading p {
  font-size: 18px;
  letter-spacing: 0.05em;
  margin-top: 12px;
  font-weight: 400;
}

.prebook-form-card {
  background: #dde6fa;
  border-radius: 40px;
  padding: 32px;
  border: 3px solid #3773ff;
  color: #161616;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.prebook-form-card h2 {
  margin: 0;
  font-size: 24px;
  letter-spacing: 0.12em;
}

.prebook-form-card .prebook-sub {
  margin: 6px 0 24px;
  color: #4a4a4a;
}

#prebookForm {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-row label span {
  font-weight: 400;
  font-size: 14px;
  color: #757575;
}

.input-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.prebook-form-card input[type="text"],
.prebook-form-card input[type="email"],
.prebook-form-card input[type="tel"] {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 2px solid #8a6e78;
  background: transparent;
  font-size: 16px;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  letter-spacing: 0.15em;
  color: #111;
}

.checkbox input {
  width: 16px;
  height: 16px;
  border: 2px solid #8a6e78;
}

.prebook-btn {
  background: #020202;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 14px 0;
  letter-spacing: 0.12em;
  font-size: 18px;
  cursor: pointer;
  margin-top: 10px;
}

#prebookForm.is-loading {
  opacity: 0.6;
  pointer-events: none;
}

.site-footer {
  background: #d7e0f2;
  padding: 40px min(8vw, 120px);
  color: var(--ink);
  position: relative;
}

.footer-top-line,
.footer-bottom-line {
  border-top: 2px solid #4a73c9;
  width: 100%;
  margin-bottom: 24px;
}

.footer-bottom-line {
  margin-top: 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-brand {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.footer-logo {
  width: 160px;
  height: 70px;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-title {
  margin: 0 0 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--maroon);
}

.footer-address address {
  margin: 0;
  font-style: normal;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  line-height: 1.8;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-col {
  min-width: 180px;
}

.footer-heading {
  margin: 0 0 12px;
  color: var(--maroon);
  letter-spacing: 0.16em;
  font-weight: 600;
}

.footer-col a {
  display: block;
  color: var(--ink);
  text-decoration: underline;
  margin-bottom: 8px;
}

.footer-social {
  display: flex;
  gap: 24px;
  font-size: 20px;
  font-weight: 600;
}

.footer-note {
  text-align: center;
  letter-spacing: 0.24em;
  color: var(--maroon);
  margin-top: 18px;
}

.shine-effect::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 120%;
  height: 300%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.18) 20%, transparent 40%);
  transform: rotate(25deg);
  animation: shine 6s infinite ease-in-out;
}

@keyframes shine {
  0% {
    transform: translateX(-150%) rotate(25deg);
  }
  100% {
    transform: translateX(150%) rotate(25deg);
  }
}

@media (max-width: 1200px) {
  .brand-subtitle {
    letter-spacing: 0.35em;
  }

  .nav-link {
    letter-spacing: 0.22em;
  }
}

@media (max-width: 1024px) {
  .primary-nav,
  .social-links {
    display: none;
  }

  .social-links-footer{
     display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
}

  .toptext{
    font-size: 4rem;
  }

  .invest-text {
    padding: 0 0px;
}

.mobile-marg {
    padding: 0 20px;
}

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
 
.sitemap-width {
width: 100%;
height: auto;
align-items: center;
display: flex;
justify-content: center;
}

.sitemap-width img{
width: 100%;
height: auto;
}
  .header-inner {
    height: 84px;
    padding: 0 20px;
  }

  .brand-mark {
    width: 70px;
    height: 42px;
  }

  .media-slider-section {
    padding: 0px;
  }

  .media-caption {
    font-family: "Exo 2", sans-serif;
    font-size: 42px;
    left: 24px;
    bottom: 24px;
    font-style: italic;
  }

  .invest-section {
    padding: 60px 20px;
  }

  .invest-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .invest-media {
    justify-content: flex-start;
  }

  .invest-photo-frame {
    max-width: 320px;
  }

  .infrastructure-section {
    padding: 50px 0px 70px;
  }

  .infra-photo {
    min-height: 140px;
  }

  .safety-section {
    padding: 60px 20px;
  }

  .safety-layout {
    grid-template-columns: 1fr;
  }

  .prebook-section {
    padding: 60px 20px;
  }

  .prebook-form-card {
    border-radius: 30px;
  }

  .site-footer {
    padding: 30px 20px;
  }

  .footer-columns {
    flex-direction: column;
    gap: 20px;
  }
}
