@font-face {
  font-family: oswald;
  src: url(fonts/static/Oswald-Regular.ttf);
}
body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  font-family: oswald;
  background: #162143;
  scroll-behavior: smooth;
}

/* Fixed Header Styles */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  padding: 20px 40px;
  background: transparent;
  padding-bottom: 30px;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1800px;
  margin: 0 auto;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand-text {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
}

.brand-text .subtitle {
  display: block;
  font-size: 0.9rem;
  color: #b0b8d1;
  font-weight: normal;
}

.header-right {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.menu-button {
  display: inline-block;
  padding: 8px 20px;
  background: #22305a;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
}

.contact-info {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.4;
  text-align: right;
}

.contact-info .datetime {
  display: block;
  font-size: 0.9rem;
  color: #b0b8d1;
}

/* Footer Styles */
.main-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 40px;
  background: transparent;
  display: none !important;
}

.footer-content {
  display: flex;
  justify-content: end;
  align-items: center;
  max-width: 1800px;
  margin: 0 auto;
  gap: 28px;
}

.footer-left,
.footer-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo {
  object-fit: contain;
}

.footer-text {
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.2;
  opacity: 0.8;
}

.footer-text .subtext {
  display: block;
  color: #b0b8d1;
  font-size: 0.8rem;
  text-align: center;
}

/* Scroll Container Styles */
.scroll-container {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;

  /* Hide scrollbar for Chrome, Safari and Opera */
  &::-webkit-scrollbar {
    display: none;
  }

  /* Hide scrollbar for IE, Edge and Firefox */
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Section Styles */
.section {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  position: relative;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: 20px;
  box-sizing: border-box;
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
  overflow: hidden;
}

.section::before {
  content: "";
  position: absolute;
  top: 80px;
  /*left: 80px;
  right: 80px;*/
  left: 150px;
  right: 120px;
  bottom: 43px;
  /*background: #1a2954 ; rgba(187, 187, 187, 0.3);*/
  z-index: -1;
  /*opacity: 0;*/
  transition: opacity 0.8s ease-in-out;
  border-radius: 30px;
}

.section.transitioning::before {
  opacity: 1;
}

.section:not(.active) {
  /*transform: translateZ(-100px) scale(0.9);*/
  /*opacity: 0.5;*/
  pointer-events: none;
}

.section.active {
  transform: translateZ(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

/* Sidebar Styles */
.sidebar {
  position: fixed;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 888888;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-item {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.sidebar-item:hover {
  background: rgba(255, 255, 255, 0.3);
}

.sidebar-item i {
  font-size: 20px;
  transition: all 0.3s ease;
}

/* Active state styles */
.sidebar-item.active {
  background: rgba(255, 255, 255, 0.3);
}

.sidebar-item.active i {
  font-size: 1.5em;
  font-weight: bold;
  transform: scale(1.2);
  filter: brightness(1.2);
}

/* Left Bullets Navigation */
.bullets-nav {
  position: fixed;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.bullet {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom:12px
}

.bullet.active {
  width: 14px;
  height: 14px;
  background: rgba(140, 126, 102, 1);
}

.bullet.active::before {
  width: 7px;
  height: 7px;
  content: "";
  position: absolute;
  background: rgba(228, 176, 86, 1);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

/* Section-specific styles */
#section1 {
  background: #162143;
  z-index: 5;
}

#section2 {
  background: #162143;
  z-index: 4;
}

#section3 {
  background: #162143;
  z-index: 3;
}

#section4 {
  background: #162143;
  z-index: 2;
}

#section5 {
  background: #162143;
  z-index: 1;
}
.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.self-justify-left {
  justify-self: flex-start;
}

.self-justify-right {
  justify-self: flex-end;
}
.w-80 {
  width: 80%;
}

.mt-4 {
  margin-top: 16px;
}

.mt-5 {
  margin-top: 20px;
}

.mt-6 {
  margin-top: 24px;
}

.mt-7 {
  margin-top: 28px;
}

.w-64 {
  width: 64% !important;
}

.w-70 {
  /*width: 78.4% !important;*/
  width: 70% !important;
  text-align:justify;
}

.map-embed-container {
  background: #17213a;
  border-radius: 8px;
  padding: 16px;
  width: 80%;
  max-width: 90vw;
  box-sizing: border-box;
}

.info-phone-clock {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.phone-box {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.9rem;
  color: #fff;
  font-weight: 400;
}

.icon-phone {
}

.phone-number {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 2px;
}

.clock-box,
.clock-box-tablet-screen {
  display: flex;
  align-items: center;
  /*gap: 12px;*/
  background: #1a2547;
  border-radius: 8px;
  /*padding: 6px 18px;*/
}

.icon-clock {
  width: 22px;
  height: 22px;
  filter: brightness(0) saturate(100%) invert(62%) sepia(62%) saturate(400%)
    hue-rotate(10deg) brightness(90%) contrast(90%);
}

.clock-time,
.clock-date {
  color: #fff;
  font-size: 12px;
  /*margin-left: 6px;*/
  font-weight: 400;
}

.text-center {
  text-align: center !important;
}

.mr-8 {
  margin-right: 8px !important;
}

.d-none {
  display: none !important;
}
.mb-2 {
  margin-bottom: 8px !important;
}
