<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Global Responsive Reset */
html {
  box-sizing: border-box;
  font-size: 16px;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}


body,
html {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #212121;
  color: #212121;
  line-height: 1.6;
  overflow: hidden;
  overflow-x: hidden;
}

body.menu-active {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
  height: 100% !important;
  background-color: rgba(0, 0, 0, 0.8);
  transition: background-color 0.5s ease;
}

#content {
  transition: opacity 1s ease;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #212121;
  min-height: 100vh;
}

header {
  position: relative;
  background: #212121;
  color: #ff9933;
  padding: 10px 20px;
  border-bottom: 2px solid #ff9933;
  text-align: center;
  flex-wrap: wrap;
}

header nav {
  position: absolute;
  top: 10px;
  left: 20px;
}

header .logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

header .logo img {
  height: 15vw;
  max-height: 150px;
  margin-right: 10px;
  display: block;
}

header nav a,
nav a {
  text-decoration: none;
  margin: 0 10px;
  color: #000;
  font-weight: bold;
}

header nav a:hover,
nav a:hover {
  color: #ff9933;
}

#menu-button {
  background: none;
  border: none;
  font-size: clamp(20px, 6vw, 32px);
  color: #ff9933;
  cursor: pointer;
  padding: 50px 15px;
  line-height: -1;
}

#fullpage-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  color: #ff9933;
  z-index: 9999;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease, right 0.4s ease;
  height: 100vh !important;
  width: 100vw !important;
  overflow: hidden !important;
  padding: 0;
}

#fullpage-menu.active,
#fullpage-menu.show {
  display: flex;
  pointer-events: auto;
  opacity: 1;
  right: 0;
}

#menu-close {
  position: absolute !important;
  top: 2.5rem;
  left: 3.5rem;
  z-index: 10001 !important;
  font-size: 2.5rem;
  background: transparent;
  border: none;
  color: #ff9933;
  cursor: pointer;
  line-height: 1;
  display: block;
}

#fullpage-menu ul {
  list-style: none;
  padding: 30px;
  margin: 0;
  margin-top: 100px;
  width: 100%;
  text-align: left;
}

#fullpage-menu ul li {
  margin: 1vh 0;
  font-size: clamp(14px, 4vw, 20px);
}

#fullpage-menu ul li a:hover {
  color: #ff9933;
}

.left-menu li a {
  color: white;
  font-size: clamp(32px, 8vw, 46px);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s;
  display: inline-block;
  max-width: 90vw;
  word-break: break-word;
}

.right-menu li a {
  color: rgb(235, 231, 231);
  font-size: clamp(26px, 6vw, 38px);
  font-family: 'Roboto', sans-serif;
  text-decoration: none;
  font-weight: 100;
  transition: color 0.3s;
  display: inline-block;
  max-width: 90vw;
  word-break: break-word;
}

.menu-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  gap: 0;
  justify-content: space-between;
  max-height: 100vh;
  overflow: hidden;
  flex-wrap: wrap;
}

.menu-section,
.contact-section {
  flex: 1 1 50%;
  max-width: none;
  height: 100vh;
  border-radius: 0;
  box-shadow: none;
  padding: 60px 40px;
  overflow-y: auto;
}

.menu-section {
  background: #000;
}

.contact-section {
  background: #666666;
  box-sizing: border-box;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  word-break: break-word;
  text-align: center;
  padding: 30px 40px;
}

#fullpage-menu h2 {
  font-size: 4vw;
  margin-bottom: 10px;
  color: #ff9933;
}

.menu-contact-button {
  position: relative;
  display: inline-block;
  margin: 20px auto 0;
  padding: 10px 28px;
  border-radius: 999px;
  border: 4px solid #ff9933;
  font-family: 'Segoe UI', sans-serif;
  background-color: transparent;
  color: white;
  font-size: clamp(20px, 5vw, 30px);
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  letter-spacing: 1px;
  overflow: hidden;
  z-index: 0;
}

.menu-contact-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ff9933;
  z-index: -1;
  /* ✅ This ensures it stays behind */
  transition: opacity 0.3s ease;
  opacity: 0;
  border-radius: 999px;
}

.menu-contact-button:hover::before {
  opacity: 1;
}

.menu-contact-button:hover {
  color: white;
  /* ✅ Force white text */
}

#fullpage-menu .menu-contact-button:hover,
#fullpage-menu .menu-contact-button:focus,
#fullpage-menu .menu-contact-button:active {
  color: #ffffff !important;
  /* force white text */
}


#contact-float-btn {
  position: fixed;
  bottom: 20px;
  right: 30px;
  background-color: #ff9933;
  color: white;
  border: none;
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 28px;
  /* font-weight: bold; */
  cursor: pointer;
  z-index: 10000;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  white-space: nowrap;
}

#contact-float-btn:hover {
  background-color: #ff9933;
  transform: scale(1.3);
}

.footer-section {
  background-color: #0000;
  padding: 0px 40px;
  color: #ff9933;
  font-family: 'Segoe UI', sans-serif;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-bottom: 0;
  border-top: 2px solid #ff9933;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  text-transform: uppercase;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

/* .footer-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
} */

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
  flex: 1;
  min-width: 200px;
  max-width: 400px;
}


.left-links a,
.right-links a {
  text-decoration: none;
  color: #f5f5f5;
  font-size: 18px;
  letter-spacing: 2px;
  display: inline-block;
  transition: 0.3s;
}

.left-links a:hover,
.right-links a:hover {
  color: #ff9933;
}

.right-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 50px;
}

.right-links img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.right-links {
  display: flex;
  flex-direction: row;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: flex-start;
  /* changed from flex-end */
  align-items: center;
}

.center-logo {
  align-items: center;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  /* Tighter space between line &amp; image */
  padding: 0;
  margin: 0;
  /* Removes outer vertical spacing */
  line-height: 1;
  /* Ensures no extra space from font line-height */
}


.center-logo .line {
  width: 2px;
  height: 100px;
  background-color: #ff9933;
}

.logo-image {
  width: 250px;
  height: auto;
  max-height: 250px;
  object-fit: contain;
}


.footer {
  margin-top: 5px;
  color: #fff;
  text-align: center;
  font-size: 1em;
}

.menu-section,
.contact-section {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.7s ease, opacity 0.7s ease;
}

#fullpage-menu.animating-in .menu-section {
  transform: translateY(-100%);
  opacity: 0;
}

#fullpage-menu.active.animating-in .menu-section {
  transform: translateY(0);
  opacity: 1;
}

#fullpage-menu.animating-in .contact-section {
  transform: translateY(100%);
  opacity: 0;
}

#fullpage-menu.active.animating-in .contact-section {
  transform: translateY(0);
  opacity: 1;
}

#fullpage-menu.closing .menu-section {
  transform: translateY(-100%);
  opacity: 0;
}

#fullpage-menu.closing .contact-section {
  transform: translateY(100%);
  opacity: 0;
}

@media (max-width: 1024px) {
  #menu-button {
    padding: 30px 10px;
    font-size: 5vw;
  }

  header .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
  }

  header .logo img {
    max-height: 120px;
    height: 12vw;
    margin: 0 auto;
  }

  .menu-section,
  .contact-section {
    padding: 40px 30px;
  }

  .left-menu li a {
    font-size: clamp(24px, 5vw, 32px);
  }

  .right-menu li a {
    font-size: clamp(16px, 4vw, 26px);
  }

  .menu-contact-button {
    font-size: clamp(18px, 4.5vw, 28px);
    padding: 10px 22px;
  }

  .footer-grid {
    gap: 30px;
  }

  .logo-image {
    width: 200px;
  }

  .center-logo .line {
    height: 80px;
  }

  #contact-float-btn {
    font-size: 34px;
    padding: 10px 18px;
  }

  .footer-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 10px !important;
    text-align: left !important;
  }

  .footer-column {
    flex: 1 1 45% !important;
    max-width: 45% !important;
    min-width: 0 !important;
    padding: 0 5px;
    align-items: center !important;
    text-align: center !important;
  }

  .left-links a,
  .right-links a {
    font-size: 20px !important;
    letter-spacing: 1px !important;
  }

  .footer-column.right-links {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    flex: 1 1 45% !important;
    max-width: 45% !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
  }


  .right-links {
    display: flex !important;
    flex-wrap: wrap !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    gap: 8px 4px !important;
    padding: 2px !important;
    max-width: 100% !important;
  }

  .right-links img {
    width: 45px !important;
    height: 45px !important;
  }

  .logo-image {
    width: 200px !important;
  }

  .center-logo .line {
    height: 80px !important;
  }

  .footer {
    font-size: 0.8em !important;
  }
}

@media (max-width: 768px) {
  header {
    padding: 16px 10px;
  }

  header .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
  }

  header .logo img {
    height: 14vw;
    max-height: 100px;
    margin: 0 auto;
  }

  #menu-button {
    font-size: 6vw;
    padding: 20px 8px;
  }

  .menu-container {
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    height: 100vh !important;
    overflow: hidden !important;
  }

  #fullpage-menu ul {
    margin-top: 20px;
    padding: 10px;
  }

  .menu-section,
  .contact-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding: 20px;
    height: 100%;
    flex: 1 1 50% !important;
    max-height: 100vh !important;
    overflow-y: hidden !important;
  }

  .contact-section {
    overflow: hidden;
    justify-content: flex-start !important;
    padding-top: 10px !important;
    margin-top: 0 !important;
  }

  
  .contact-section a {
    font-size: 1.5rem;
  }

  #fullpage-menu {
    overflow-y: auto !important;
  }

  #fullpage-menu h2 {
    font-size: 5vw;
  }

  .left-menu li a {
    font-size: clamp(20px, 4vw, 36px);
  }

  .right-menu li a {
    font-size: clamp(12px, 3vw, 22px);
  }

  .menu-contact-button {
    font-size: clamp(12px, 3vw, 14px);
    padding: 8px 14px;
  }

  .footer-section {
    padding: 0px;
  }

  .left-links a,
  .right-links a {
    font-size: 12px;
  }

  .logo-image {
    width: 160px;
  }

  .left-links {
    gap: 6px;
  }

  .footer {
    font-size: 0.9em;
  }

  #contact-float-btn {
    font-size: 22px;
    padding: 10px 18px;
  }

  .footer-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 10px !important;
    text-align: left !important;
  }

  .footer-column {
    flex: 1 1 45% !important;
    max-width: 45% !important;
    min-width: 0 !important;
    padding: 0 5px;
    align-items: center !important;
    text-align: center !important;
  }

  .left-links a,
  .right-links a {
    font-size: 10px !important;
    letter-spacing: 1px !important;
  }

  .footer-column.right-links {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    flex: 1 1 45% !important;
    max-width: 45% !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
  }


  .right-links {
    display: flex !important;
    flex-wrap: wrap !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    gap: 8px 4px !important;
    padding: 2px !important;
    max-width: 100% !important;
  }

  .right-links img {
    width: 45px !important;
    height: 45px !important;
  }

  .logo-image {
    width: 180px !important;
  }

  .center-logo .line {
    height: 50px !important;
  }

  .footer {
    font-size: 0.7em !important;
  }
}

@media (max-width: 480px) {
  header .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 100%;
  }

  header .logo img {
    max-height: 80px;
    height: 16vw;
    margin: 0 auto;
  }

  #menu-button {
    padding: 15px 8px;
    font-size: 7vw;
  }

  .left-menu li a {
    font-size: clamp(24px, 5vw, 32px);
  }

  .right-menu li a {
    font-size: clamp(14px, 5vw, 20px);
  }

  .menu-contact-button {
    font-size: clamp(12px, 4vw, 18px);
    padding: 6px 12px;
  }

  .left-links a,
  .right-links a {
    font-size: 10px;
  }

  #contact-float-btn {
    font-size: 22px;
    padding: 10px 16px;
  }

  .footer-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 5px !important;
    text-align: left !important;
  }

  .footer-column {
    flex: 1 1 45% !important;
    max-width: 45% !important;
    min-width: 0 !important;
    padding: 0 2px;
    align-items: center !important;
    text-align: center !important;
  }

  .left-links a,
  .right-links a {
    font-size: 8px !important;
    letter-spacing: 1px !important;
  }

  .footer-column.right-links {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    flex: 1 1 45% !important;
    max-width: 45% !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  .right-links {
    display: flex !important;
    flex-wrap: wrap !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    gap: 8px 4px !important;
    padding: 2px !important;
    max-width: 100% !important;
  }

  .right-links img {
    width: 20px !important;
    height: 20px !important;
  }

  .logo-image {
    width: 140px !important;
  }

  .center-logo .line {
    height: 60px !important;
  }

  .footer {
    font-size: 0.7em !important;
  }
}

@media (max-width: 360px) {

  .left-menu li a {
    font-size: clamp(18px, 4.5vw, 22px);
  }

  .right-menu li a {
    font-size: clamp(12px, 4.5vw, 18px);
  }


  .menu-contact-button {
    font-size: 14px;
    padding: 6px 10px;
  }

  .logo-image {
    width: 120px;
  }

  .right-links img {
    width: 24px;
    height: 24px;
  }

  #contact-float-btn {
    font-size: 22px;
    padding: 10px 16px;
  }

  .footer-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 10px !important;
    text-align: left !important;
  }

  .footer-column {
    flex: 1 1 45% !important;
    max-width: 45% !important;
    min-width: 0 !important;
    padding: 0 5px;
    align-items: center !important;
    text-align: center !important;
  }

  .left-links a,
  .right-links a {
    font-size: 8px !important;
    letter-spacing: 1px !important;
  }

  .footer-column.right-links {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    flex: 1 1 45% !important;
    max-width: 45% !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
  }


  .right-links {
    display: flex !important;
    flex-wrap: wrap !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    gap: 8px 4px !important;
    padding: 2px !important;
    max-width: 100% !important;
  }

  .right-links img {
    width: 20px !important;
    height: 20px !important;
  }

  .logo-image {
    width: 150px !important;
  }

  .center-logo .line {
    height: 50px !important;
  }

  .footer {
    font-size: 0.7em !important;
  }
}


@media print {
  body {
    display: none !important;
  }
}</pre></body></html>